Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.17.71.93
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
node_modules /
uuid /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
bytesToUuid.js
747
B
-rw-r--r--
2021-03-10 14:36
md5-browser.js
6.66
KB
-rw-r--r--
2021-03-10 14:36
md5.js
576
B
-rw-r--r--
2021-03-10 14:36
rng-browser.js
1.28
KB
-rw-r--r--
2021-03-10 14:36
rng.js
246
B
-rw-r--r--
2021-03-10 14:36
sha1-browser.js
2.28
KB
-rw-r--r--
2021-03-10 14:36
sha1.js
579
B
-rw-r--r--
2021-03-10 14:36
v35.js
1.58
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
'use strict'; var crypto = require('crypto'); function sha1(bytes) { if (typeof Buffer.from === 'function') { // Modern Buffer API if (Array.isArray(bytes)) { bytes = Buffer.from(bytes); } else if (typeof bytes === 'string') { bytes = Buffer.from(bytes, 'utf8'); } } else { // Pre-v4 Buffer API if (Array.isArray(bytes)) { bytes = new Buffer(bytes); } else if (typeof bytes === 'string') { bytes = new Buffer(bytes, 'utf8'); } } return crypto.createHash('sha1').update(bytes).digest(); } module.exports = sha1;