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.22.241.15
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 /
npm-registry-fetch /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
auth.js
4.16
KB
-rw-r--r--
check-response.js
3.19
KB
-rw-r--r--
clean-url.js
555
B
-rw-r--r--
default-opts.js
386
B
-rw-r--r--
errors.js
2.23
KB
-rw-r--r--
index.js
6.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : clean-url.js
const { URL } = require('url') const replace = '***' const tokenRegex = /\bnpm_[a-zA-Z0-9]{36}\b/g const guidRegex = /\b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\b/g const cleanUrl = (str) => { if (typeof str !== 'string' || !str) { return str } try { const url = new URL(str) if (url.password) { str = str.replace(url.password, replace) } } catch { // ignore errors } return str .replace(tokenRegex, `npm_${replace}`) .replace(guidRegex, `npm_${replace}`) } module.exports = cleanUrl
Close