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 /
localtunnel /
Delete
Unzip
Name
Size
Permission
Date
Action
bin
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
lib
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
node_modules
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.eslintrc.js
431
B
-rw-rw-r--
2022-08-30 11:49
.travis.yml
72
B
-rw-rw-r--
2022-08-30 11:49
CHANGELOG.md
1.66
KB
-rw-rw-r--
2022-08-30 11:49
LICENSE
1.05
KB
-rw-rw-r--
2022-08-30 11:49
README.md
4.32
KB
-rw-rw-r--
2022-08-30 11:49
localtunnel.js
498
B
-rw-rw-r--
2022-08-30 11:49
localtunnel.spec.js
3.66
KB
-rw-rw-r--
2022-08-30 11:49
package.json
779
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
const Tunnel = require('./lib/Tunnel'); module.exports = function localtunnel(arg1, arg2, arg3) { const options = typeof arg1 === 'object' ? arg1 : { ...arg2, port: arg1 }; const callback = typeof arg1 === 'object' ? arg2 : arg3; const client = new Tunnel(options); if (callback) { client.open(err => (err ? callback(err) : callback(null, client))); return client; } return new Promise((resolve, reject) => client.open(err => (err ? reject(err) : resolve(client))) ); };