Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.106
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
text-hex /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.09
KB
-rw-r--r--
2026-02-18 13:02
README.md
197
B
-rw-r--r--
2026-02-18 13:02
index.js
477
B
-rw-r--r--
2026-02-18 13:02
package.json
1.42
KB
-rw-r--r--
2026-02-18 13:02
test.js
291
B
-rw-r--r--
2026-02-18 13:02
Save
Rename
'use strict'; /*** * Convert string to hex color. * * @param {String} str Text to hash and convert to hex. * @returns {String} * @api public */ module.exports = function hex(str) { for ( var i = 0, hash = 0; i < str.length; hash = str.charCodeAt(i++) + ((hash << 5) - hash) ); var color = Math.floor( Math.abs( (Math.sin(hash) * 10000) % 1 * 16777216 ) ).toString(16); return '#' + Array(6 - color.length + 1).join('0') + color; };