Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
softmedya.net /
node_modules /
nanoid /
async /
Delete
Unzip
Name
Size
Permission
Date
Action
index.browser.cjs
2.63
KB
-rw-r--r--
2025-10-09 13:40
index.browser.js
984
B
-rw-r--r--
2025-10-09 13:40
index.cjs
2.8
KB
-rw-r--r--
2025-10-09 13:40
index.d.ts
1.47
KB
-rw-r--r--
2025-10-09 13:40
index.js
982
B
-rw-r--r--
2025-10-09 13:40
index.native.js
820
B
-rw-r--r--
2025-10-09 13:40
package.json
233
B
-rw-r--r--
2025-10-09 13:40
Save
Rename
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 | 0 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 |= 0))) 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 }