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.227.46.105
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 : index.js
'use strict' const Farm = require('./farm') let farms = [] // keep record of farms so we can end() them if required function farm (options, path, methods) { if (typeof options == 'string') { methods = path path = options options = {} } let f = new Farm(options, path) , api = f.setup(methods) farms.push({ farm: f, api: api }) // return the public API return api } function end (api, callback) { for (let i = 0; i < farms.length; i++) if (farms[i] && farms[i].api === api) return farms[i].farm.end(callback) process.nextTick(callback.bind(null, new Error('Worker farm not found!'))) } module.exports = farm module.exports.end = end
Close