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 : 13.59.91.46
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 /
.bin /
Delete
Unzip
Name
Size
Permission
Date
Action
acorn
62
B
-rwxrwxr-x
2022-08-30 11:49
atob
122
B
-rwxrwxr-x
2022-08-30 11:49
autoprefixer
554
B
-rwxrwxr-x
2022-08-30 11:49
babylon
341
B
-rwxrwxr-x
2022-08-30 11:49
browser-sync
7.19
KB
-rwxrwxr-x
2022-08-30 11:49
browserslist
4.06
KB
-rwxrwxr-x
2022-08-30 11:49
color-support
127
B
-rwxrwxr-x
2022-08-30 11:49
cssbeautify
2.47
KB
-rwxrwxr-x
2022-08-30 11:49
csso
292
B
-rwxrwxr-x
2022-08-30 11:49
dev-ip
896
B
-rwxrwxr-x
2022-08-30 11:49
errno
440
B
-rwxrwxr-x
2022-08-30 11:49
esparse
4.83
KB
-rwxrwxr-x
2022-08-30 11:49
esvalidate
7.56
KB
-rwxrwxr-x
2022-08-30 11:49
gulp
44
B
-rwxrwxr-x
2022-08-30 11:49
handlebars
4.14
KB
-rwxrwxr-x
2022-08-30 11:49
is-docker
105
B
-rwxrwxr-x
2022-08-30 11:49
js-yaml
2.66
KB
-rwxrwxr-x
2022-08-30 11:49
jsesc
3.74
KB
-rwxrwxr-x
2022-08-30 11:49
json5
3.51
KB
-rwxrwxr-x
2022-08-30 11:49
loose-envify
356
B
-rwxrwxr-x
2022-08-30 11:49
lt
2.73
KB
-rwxrwxr-x
2022-08-30 11:49
marked
4.16
KB
-rwxrwxr-x
2022-08-30 11:49
mime
149
B
-rwxrwxr-x
2022-08-30 11:49
mkdirp
731
B
-rwxrwxr-x
2022-08-30 11:49
nanoid
1.1
KB
-rwxrwxr-x
2022-08-30 11:49
node-which
985
B
-rwxrwxr-x
2022-08-30 11:49
nopt
1.51
KB
-rwxrwxr-x
2022-08-30 11:49
panini
1.26
KB
-rwxrwxr-x
2022-08-30 11:49
parser
328
B
-rwxrwxr-x
2022-08-30 11:49
regjsparser
1.74
KB
-rwxrwxr-x
2022-08-30 11:49
resolve
1.44
KB
-rwxrwxr-x
2022-08-30 11:49
rimraf
1.83
KB
-rwxrwxr-x
2022-08-30 11:49
sass
196
B
-rwxrwxr-x
2022-08-30 11:49
semver
4.61
KB
-rwxrwxr-x
2022-08-30 11:49
svgo
55
B
-rwxrwxr-x
2022-08-30 11:49
terser
444
B
-rwxrwxr-x
2022-08-30 11:49
throttleproxy
2.16
KB
-rwxrwxr-x
2022-08-30 11:49
uglifyjs
22.92
KB
-rwxrwxr-x
2022-08-30 11:49
uuid
44
B
-rwxrwxr-x
2022-08-30 11:49
webpack
3.81
KB
-rwxrwxr-x
2022-08-30 11:49
Save
Rename
#!/usr/bin/env node /* eslint-disable no-console */ const openurl = require('openurl'); const yargs = require('yargs'); const localtunnel = require('../localtunnel'); const { version } = require('../package'); const { argv } = yargs .usage('Usage: lt --port [num] <options>') .env(true) .option('p', { alias: 'port', describe: 'Internal HTTP server port', }) .option('h', { alias: 'host', describe: 'Upstream server providing forwarding', default: 'https://localtunnel.me', }) .option('s', { alias: 'subdomain', describe: 'Request this subdomain', }) .option('l', { alias: 'local-host', describe: 'Tunnel traffic to this host instead of localhost, override Host header to this host', }) .option('local-https', { describe: 'Tunnel traffic to a local HTTPS server', }) .option('local-cert', { describe: 'Path to certificate PEM file for local HTTPS server', }) .option('local-key', { describe: 'Path to certificate key file for local HTTPS server', }) .option('local-ca', { describe: 'Path to certificate authority file for self-signed certificates', }) .option('allow-invalid-cert', { describe: 'Disable certificate checks for your local HTTPS server (ignore cert/key/ca options)', }) .options('o', { alias: 'open', describe: 'Opens the tunnel URL in your browser', }) .option('print-requests', { describe: 'Print basic request info', }) .require('port') .boolean('local-https') .boolean('allow-invalid-cert') .boolean('print-requests') .help('help', 'Show this help and exit') .version(version); if (typeof argv.port !== 'number') { yargs.showHelp(); console.error('\nInvalid argument: `port` must be a number'); process.exit(1); } (async () => { const tunnel = await localtunnel({ port: argv.port, host: argv.host, subdomain: argv.subdomain, local_host: argv.localHost, local_https: argv.localHttps, local_cert: argv.localCert, local_key: argv.localKey, local_ca: argv.localCa, allow_invalid_cert: argv.allowInvalidCert, }).catch(err => { throw err; }); tunnel.on('error', err => { throw err; }); console.log('your url is: %s', tunnel.url); /** * `cachedUrl` is set when using a proxy server that support resource caching. * This URL generally remains available after the tunnel itself has closed. * @see https://github.com/localtunnel/localtunnel/pull/319#discussion_r319846289 */ if (tunnel.cachedUrl) { console.log('your cachedUrl is: %s', tunnel.cachedUrl); } if (argv.open) { openurl.open(tunnel.url); } if (argv['print-requests']) { tunnel.on('request', info => { console.log(new Date().toString(), info.method, info.path); }); } })();