Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.116.81.41
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
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--
2021-03-10 14:36
check-ping.js
407
B
-rw-r--r--
2021-03-10 14:36
get-git-path.js
300
B
-rw-r--r--
2021-03-10 14:36
get-latest-nodejs-version.js
800
B
-rw-r--r--
2021-03-10 14:36
get-latest-npm-version.js
444
B
-rw-r--r--
2021-03-10 14:36
verify-cached-files.js
929
B
-rw-r--r--
2021-03-10 14:36
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