Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
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
/
home /
syrihapj /
public_html /
node_modules /
sha.js /
[ HOME SHELL ]
Name
Size
Permission
Action
test
[ DIR ]
dr-xr-xr-x
.travis.yml
215
B
-rw-r--r--
LICENSE
2.5
KB
-rw-r--r--
README.md
1.73
KB
-rw-r--r--
bin.js
991
B
-rw-r--r--
hash.js
1.84
KB
-rw-r--r--
index.js
468
B
-rw-r--r--
package.json
833
B
-rw-r--r--
sha.js
1.87
KB
-rw-r--r--
sha1.js
1.98
KB
-rw-r--r--
sha224.js
1.07
KB
-rw-r--r--
sha256.js
3.2
KB
-rw-r--r--
sha384.js
1.14
KB
-rw-r--r--
sha512.js
7.01
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bin.js
#! /usr/bin/env node var createHash = require('./browserify') var argv = process.argv.slice(2) function pipe (algorithm, s) { var start = Date.now() var hash = createHash(algorithm || 'sha1') s.on('data', function (data) { hash.update(data) }) s.on('end', function () { if (process.env.DEBUG) { return console.log(hash.digest('hex'), Date.now() - start) } console.log(hash.digest('hex')) }) } function usage () { console.error('sha.js [algorithm=sha1] [filename] # hash filename with algorithm') console.error('input | sha.js [algorithm=sha1] # hash stdin with algorithm') console.error('sha.js --help # display this message') } if (!process.stdin.isTTY) { pipe(argv[0], process.stdin) } else if (argv.length) { if (/--help|-h/.test(argv[0])) { usage() } else { var filename = argv.pop() var algorithm = argv.pop() pipe(algorithm, require('fs').createReadStream(filename)) } } else { usage() }
Close