Skip to content

x-spy/rotaeno-decrypt-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rotaeno Decrypt Server

Rotaeno Decrypt Server is an API server decrypting Rotaeno local storage data.

Announcement

This server is only used for Local File decryption to serve Bots.

  • No communication with official server.
  • No modification of any purchase content.

Installation

  1. Clone the Repository:
    git clone https://github.com/x-spy/rotaeno-decrypt-server.git
    cd rotaeno-decrypt-server
    
  2. Install Dependencies
    npm install
    
  3. Configuration
  • Redis
    const redisClient = createClient({
        username: 'default', // Redis Username
        password: '***', // Redis Password
        socket: {
            // Redis Host Info
            host: '***',
            port: 11451,
        },
    });
  • TLS
    // Private Key File
    const privateKey = fs.readFileSync(
        path.join(__dirname, '../cert', 'server.key'),
        'utf8'
    );
    
    // Certificate File
    const certificate = fs.readFileSync(
        path.join(__dirname, '../cert', 'server.crt'),
        'utf8'
    );

Run

  npm run server

About

Rotaeno local storage decrypt API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors