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 /
randomfill /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
319
B
-rw-r--r--
2017-07-27 18:16
.zuul.yml
9
B
-rw-r--r--
2017-07-27 18:16
LICENSE
1.05
KB
-rw-r--r--
2017-07-27 18:16
README.md
459
B
-rw-r--r--
2018-02-16 13:03
browser.js
2.93
KB
-rw-r--r--
2017-10-18 15:54
index.js
266
B
-rw-r--r--
2017-07-27 18:18
package.json
1.62
KB
-rw-r--r--
2021-02-04 21:24
test.js
821
B
-rw-r--r--
2017-10-18 15:52
Save
Rename
var test = require('tape') var crypto = require('./browser') var Buffer = require('safe-buffer').Buffer test('sync', function (t) { t.test('first', function (t) { const buf = Buffer.alloc(10) const before = buf.toString('hex') crypto.randomFillSync(buf, 5, 5) const after = buf.toString('hex') t.notEqual(before, after) t.equal(before.slice(0, 10), after.slice(0, 10)) t.end() }) }) test('async', function (t) { t.test('first', function (t) { const buf = Buffer.alloc(10) const before = buf.toString('hex') crypto.randomFill(buf, 5, 5, function (err, bufa) { t.error(err) const after = bufa.toString('hex') t.notEqual(before, after) t.equal(before.slice(0, 10), after.slice(0, 10)) t.ok(buf === bufa, 'same buffer') t.end() }) }) })