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 /
hash-sum /
Delete
Unzip
Name
Size
Permission
Date
Action
.editorconfig
207
B
-rw-r--r--
2015-07-14 17:13
.jshintignore
13
B
-rw-r--r--
2015-07-14 17:13
.jshintrc
345
B
-rw-r--r--
2015-07-14 17:13
.npmignore
27
B
-rw-r--r--
2015-07-14 17:13
changelog.markdown
186
B
-rw-r--r--
2015-07-14 19:09
hash-sum.js
1.21
KB
-rw-r--r--
2015-07-14 19:06
license
1.06
KB
-rw-r--r--
2015-07-14 17:13
package.json
1.29
KB
-rw-r--r--
2021-02-04 21:24
readme.md
1.49
KB
-rw-r--r--
2015-07-14 19:10
test.js
1.22
KB
-rw-r--r--
2015-07-14 19:08
Save
Rename
'use strict'; var _ = require('lodash'); var test = require('tape'); var sum = require('./'); test('creates unique hashes', function (t) { var results = []; sub([0,1,2,3]); sub({url:12}); sub({headers:12}); sub({headers:122}); sub({headers:'122'}); sub({headers:{accept:'text/plain'}}); sub({payload:[0,1,2,3],headers:[{a:'b'}]}); sub({a:function () {}}); sub({b:function () {}}); sub({b:function (a) {}}); sub(function () {}); sub(function (a) {}); sub(function (b) {}); sub(function (a) { return a;}); sub(function (a) {return a;}); sub(''); sub('null'); sub('false'); sub('true'); sub('0'); sub('1'); sub('void 0'); sub('undefined'); sub(null); sub(false); sub(true); sub(0); sub(1); sub(void 0); sub({}); sub({a:{},b:{}}); sub([]); sub(new Date()); sub(global, 'global'); t.equal(results.length, _.uniq(results).length); t.end(); function sub (value, name) { var hash = sum(value); results.push(hash); console.log('%s from:', hash, name || value); } }); test('hashes clash if same properties', function (t) { equals({a:'1'},{a:'1'}); equals({a:'1',b:1},{b:1,a:'1'}); t.end(); function equals (a, b) { t.equal(sum(a), sum(b)); } });