Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.159.135
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
node_modules /
npm /
node_modules /
read /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
read.js
1.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : read.js
const readline = require('readline') const Mute = require('mute-stream') module.exports = async function read ({ default: def = '', input = process.stdin, output = process.stdout, completer, prompt = '', silent, timeout, edit, terminal, replace, }) { if (typeof def !== 'undefined' && typeof def !== 'string' && typeof def !== 'number') { throw new Error('default value must be string or number') } let editDef = false prompt = prompt.trim() + ' ' terminal = !!(terminal || output.isTTY) if (def) { if (silent) { prompt += '(<default hidden>) ' } else if (edit) { editDef = true } else { prompt += '(' + def + ') ' } } const m = new Mute({ replace, prompt }) m.pipe(output, { end: false }) output = m return new Promise((resolve, reject) => { const rl = readline.createInterface({ input, output, terminal, silent: true, completer }) const timer = timeout && setTimeout(() => onError(new Error('timed out')), timeout) output.unmute() rl.setPrompt(prompt) rl.prompt() if (silent) { output.mute() } else if (editDef) { rl.line = def rl.cursor = def.length rl._refreshLine() } const done = () => { rl.close() clearTimeout(timer) output.mute() output.end() } const onError = (er) => { done() reject(er) } rl.on('error', onError) rl.on('line', (line) => { if (silent && terminal) { output.unmute() } done() // truncate the \n at the end. const res = line.replace(/\r?\n?$/, '') || def || '' return resolve(res) }) rl.on('SIGINT', () => { rl.close() onError(new Error('canceled')) }) }) }
Close