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.22.62
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
lib /
doctor /
Delete
Unzip
Name
Size
Permission
Date
Action
check-files-permission.js
1.93
KB
-rw-r--r--
2022-01-10 12:20
check-ping.js
407
B
-rw-r--r--
2022-01-10 12:20
get-git-path.js
300
B
-rw-r--r--
2022-01-10 12:20
get-latest-nodejs-version.js
800
B
-rw-r--r--
2022-01-10 12:20
get-latest-npm-version.js
444
B
-rw-r--r--
2022-01-10 12:20
verify-cached-files.js
929
B
-rw-r--r--
2022-01-10 12:20
Save
Rename
var log = require('npmlog') var ping = require('../ping.js') function checkPing (cb) { var tracker = log.newItem('checkPing', 1) tracker.info('checkPing', 'Pinging registry') ping({}, true, (err, pong) => { if (err && err.code && err.code.match(/^E\d{3}$/)) { return cb(null, [err.code.substr(1), 'failed']) } else { cb(null, [200, 'ok']) } }) } module.exports = checkPing