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 /
nanoid /
async /
[ HOME SHELL ]
Name
Size
Permission
Action
index.browser.cjs
983
B
-rw-rw-r--
index.browser.js
973
B
-rw-rw-r--
index.cjs
993
B
-rw-rw-r--
index.d.ts
1.47
KB
-rw-rw-r--
index.js
976
B
-rw-rw-r--
index.native.js
814
B
-rw-rw-r--
package.json
233
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.browser.cjs
let random = async bytes => crypto.getRandomValues(new Uint8Array(bytes)) let customAlphabet = (alphabet, defaultSize = 21) => { let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1 let step = -~((1.6 * mask * defaultSize) / alphabet.length) return async (size = defaultSize) => { let id = '' while (true) { let bytes = crypto.getRandomValues(new Uint8Array(step)) let i = step while (i--) { id += alphabet[bytes[i] & mask] || '' if (id.length === size) return id } } } } let nanoid = async (size = 21) => { let id = '' let bytes = crypto.getRandomValues(new Uint8Array(size)) while (size--) { let byte = bytes[size] & 63 if (byte < 36) { id += byte.toString(36) } else if (byte < 62) { id += (byte - 26).toString(36).toUpperCase() } else if (byte < 63) { id += '_' } else { id += '-' } } return id } module.exports = { nanoid, customAlphabet, random }
Close