Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
ebg13 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
1.12
KB
-rwxr-xr-x
2026-02-18 13:02
Save
Rename
#!/usr/bin/env node const rot13 = require('../index'); const keys = require('../keys/index'); const argv = require('minimist')(process.argv.slice(2)); const chalk = require('chalk'); const cowsay = require('cowsay'); if (argv['generate-keys']) { const seed = argv.seed; console.log(keys.generate(seed)); process.exit(); } if (!argv._.length) { const usageMessage = ` Usage: ebg13 [--generate-keys] [--seed seed] [--key key] message1 [message2 [...]] --generate-keys - Generages a pair of assymetric keys to be used for encoding/deconding --seed seed - uses the seed as the private key and calculates a public key from it --key key - [optional] encoding/decoding key (it defaults to 13) message1, message2, ... - a list of at least one message to be encoded/decoded A non empty list og messages is required for encoding/decoding but is not necessary when generating keys. `; console.log(cowsay.say({ text: usageMessage, })); process.exit(-1); } const key = argv.key || 13; const encodedMessages = argv._.map(message => rot13(message, key)); encodedMessages.forEach(message => console.log(chalk.yellow(message)));