Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.223.239.65
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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