Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.128.223
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
sha.js /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.travis.yml
215
B
-rw-r--r--
2021-02-04 21:24
LICENSE
2.5
KB
-rw-r--r--
2021-02-04 21:24
README.md
1.73
KB
-rw-r--r--
2021-02-04 21:24
bin.js
991
B
-rwxr-xr-x
2021-02-04 21:24
hash.js
1.84
KB
-rw-r--r--
2021-02-04 21:24
index.js
468
B
-rw-r--r--
2021-02-04 21:24
package.json
1.7
KB
-rw-r--r--
2021-02-04 21:24
sha.js
1.87
KB
-rw-r--r--
2021-02-04 21:24
sha1.js
1.98
KB
-rw-r--r--
2021-02-04 21:24
sha224.js
1.07
KB
-rw-r--r--
2021-02-04 21:24
sha256.js
3.2
KB
-rw-r--r--
2021-02-04 21:24
sha384.js
1.14
KB
-rw-r--r--
2021-02-04 21:24
sha512.js
7.01
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
#! /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() }