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.147.67.34
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
// the fixtures have some weird stuff that is painful // to include directly in the repo for various reasons. // // So, unpack the fixtures with the system tar first. // // This means, of course, that it'll only work if you // already have a tar implementation, and some of them // will not properly unpack the fixtures anyway. // // But, since usually those tests will fail on Windows // and other systems with less capable filesystems anyway, // at least this way we don't cause inconveniences by // merely cloning the repo or installing the package. var tap = require("tap") , child_process = require("child_process") , rimraf = require("rimraf") , test = tap.test , path = require("path") test("clean fixtures", function (t) { rimraf(path.resolve(__dirname, "fixtures"), function (er) { t.ifError(er, "rimraf ./fixtures/") t.end() }) }) test("clean tmp", function (t) { rimraf(path.resolve(__dirname, "tmp"), function (er) { t.ifError(er, "rimraf ./tmp/") t.end() }) }) test("extract fixtures", function (t) { var c = child_process.spawn("tar" ,["xzvf", "fixtures.tgz"] ,{ cwd: __dirname }) c.stdout.on("data", errwrite) c.stderr.on("data", errwrite) function errwrite (chunk) { process.stderr.write(chunk) } c.on("exit", function (code) { t.equal(code, 0, "extract fixtures should exit with 0") if (code) { t.comment("Note, all tests from here on out will fail because of this.") } t.end() }) })