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.140.201.179
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 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({ module: forkModule }) // return a send() function for this child return { send : child.send.bind(child) , child : child } } module.exports = fork