Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.67.34
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
worker-farm /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
child
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
farm.js
9.18
KB
-rw-r--r--
2018-03-09 03:11
fork.js
889
B
-rw-r--r--
2018-03-09 03:11
index.js
680
B
-rw-r--r--
2018-03-09 03:11
Save
Rename
'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, 'Worker farm not found!')) } module.exports = farm module.exports.end = end