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 /
node-gyp /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
fixtures
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
docker.sh
6.48
KB
-rwxr-xr-x
1985-10-26 08:15
process-exec-sync.js
3.05
KB
-rw-r--r--
1985-10-26 08:15
simple-proxy.js
643
B
-rw-r--r--
1985-10-26 08:15
test-addon.js
3.35
KB
-rw-r--r--
1985-10-26 08:15
test-configure-python.js
1.94
KB
-rw-r--r--
1985-10-26 08:15
test-download.js
2.51
KB
-rw-r--r--
1985-10-26 08:15
test-find-accessible-sync.js
2.52
KB
-rw-r--r--
1985-10-26 08:15
test-find-node-directory.js
4.29
KB
-rw-r--r--
1985-10-26 08:15
test-find-python.js
8.53
KB
-rw-r--r--
1985-10-26 08:15
test-install.js
705
B
-rw-r--r--
1985-10-26 08:15
test-options.js
713
B
-rw-r--r--
1985-10-26 08:15
test-process-release.js
21.11
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
var http = require('http') , https = require('https') , server = http.createServer(handler) , port = +process.argv[2] , prefix = process.argv[3] , upstream = process.argv[4] , calls = 0 server.listen(port) function handler (req, res) { if (req.url.indexOf(prefix) != 0) throw new Error('request url [' + req.url + '] does not start with [' + prefix + ']') var upstreamUrl = upstream + req.url.substring(prefix.length) console.log(req.url + ' -> ' + upstreamUrl) https.get(upstreamUrl, function (ures) { ures.on('end', function () { if (++calls == 2) server.close() }) ures.pipe(res) }) }