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.1
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 /
quiz1 /
node_modules /
nanoid /
async /
[ HOME SHELL ]
Name
Size
Permission
Action
index.browser.cjs
983
B
-rw-rw-rw-
index.browser.js
973
B
-rw-rw-rw-
index.cjs
993
B
-rw-rw-rw-
index.d.ts
1.47
KB
-rw-rw-rw-
index.js
976
B
-rw-rw-rw-
index.native.js
814
B
-rw-rw-rw-
package.json
233
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.browser.js
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 } export { nanoid, customAlphabet, random }
Close