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.2
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 /
sms-core-ui-code /
app /
helpers /
[ HOME SHELL ]
Name
Size
Permission
Action
Date.json
2.81
MB
-rwxrwxr-x
ajax.tsx
3.73
KB
-rwxrwxr-x
constant.tsx
240
B
-rw-rw-r--
helper.tsx
8.92
KB
-rw-rw-r--
storage.tsx
4.11
KB
-rwxrwxr-x
url.tsx
1.5
KB
-rwxrwxr-x
utils.tsx
923
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : utils.tsx
const utils = { /** * Generates a random string. * @param length The result length * @returns A random string */ randomString(length: number) { let result = ''; const possible = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; for (let i = 0; i < length; i++) { result += possible.charAt( Math.floor(Math.random() * possible.length), ); } return result; }, /** * Deplays to execute a promise like ajax call. * @param seconds The delay seconds * @param promise The promise to delay * @returns A promise */ delay(seconds: number, ...promises: Promise<any>[]): Promise<any[]> { return Promise.all([ ...promises, new Promise(presolve => setTimeout(presolve, seconds * 1000)), ]); }, }; export default utils;
Close