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 : 18.217.230.80
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 /
opn /
Delete
Unzip
Name
Size
Permission
Date
Action
node_modules
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
index.js
1.82
KB
-rw-rw-r--
2022-08-30 11:49
license
1.08
KB
-rw-rw-r--
2022-08-30 11:49
package.json
817
B
-rw-rw-r--
2022-08-30 11:49
readme.md
2.18
KB
-rw-rw-r--
2022-08-30 11:49
xdg-open
24.46
KB
-rwxrwxr-x
2022-08-30 11:49
Save
Rename
'use strict'; const path = require('path'); const childProcess = require('child_process'); const isWsl = require('is-wsl'); module.exports = (target, opts) => { if (typeof target !== 'string') { return Promise.reject(new Error('Expected a `target`')); } opts = Object.assign({wait: true}, opts); let cmd; let appArgs = []; let args = []; const cpOpts = {}; if (Array.isArray(opts.app)) { appArgs = opts.app.slice(1); opts.app = opts.app[0]; } if (process.platform === 'darwin') { cmd = 'open'; if (opts.wait) { args.push('-W'); } if (opts.app) { args.push('-a', opts.app); } } else if (process.platform === 'win32' || isWsl) { cmd = 'cmd' + (isWsl ? '.exe' : ''); args.push('/c', 'start', '""', '/b'); target = target.replace(/&/g, '^&'); if (opts.wait) { args.push('/wait'); } if (opts.app) { args.push(opts.app); } if (appArgs.length > 0) { args = args.concat(appArgs); } } else { if (opts.app) { cmd = opts.app; } else { cmd = process.platform === 'android' ? 'xdg-open' : path.join(__dirname, 'xdg-open'); } if (appArgs.length > 0) { args = args.concat(appArgs); } if (!opts.wait) { // `xdg-open` will block the process unless // stdio is ignored and it's detached from the parent // even if it's unref'd cpOpts.stdio = 'ignore'; cpOpts.detached = true; } } args.push(target); if (process.platform === 'darwin' && appArgs.length > 0) { args.push('--args'); args = args.concat(appArgs); } const cp = childProcess.spawn(cmd, args, cpOpts); if (opts.wait) { return new Promise((resolve, reject) => { cp.once('error', reject); cp.once('close', code => { if (code > 0) { reject(new Error('Exited with code ' + code)); return; } resolve(cp); }); }); } cp.unref(); return Promise.resolve(cp); };