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 /
edu-lms /
app /
helpers /
[ HOME SHELL ]
Name
Size
Permission
Action
ajax.tsx
4.22
KB
-rw-r--r--
helper.tsx
4.07
KB
-rw-r--r--
storage.tsx
4.11
KB
-rw-r--r--
url.tsx
1.57
KB
-rw-r--r--
utils.tsx
923
B
-rw-r--r--
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