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.218.60.55
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 /
mkdirp /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
chmod.js
1.11
KB
-rw-r--r--
2015-05-14 01:59
clobber.js
855
B
-rw-r--r--
2015-05-14 01:59
mkdirp.js
900
B
-rw-r--r--
2015-05-14 01:59
opts_fs.js
938
B
-rw-r--r--
2015-05-14 01:59
opts_fs_sync.js
868
B
-rw-r--r--
2015-05-14 01:59
perm.js
871
B
-rw-r--r--
2015-05-14 01:59
perm_sync.js
991
B
-rw-r--r--
2015-05-14 01:59
race.js
988
B
-rw-r--r--
2015-05-14 01:59
rel.js
987
B
-rw-r--r--
2015-05-14 01:59
return.js
826
B
-rw-r--r--
2014-12-26 20:47
return_sync.js
855
B
-rw-r--r--
2014-12-26 20:47
root.js
496
B
-rw-r--r--
2015-05-14 01:59
sync.js
906
B
-rw-r--r--
2015-05-14 01:59
umask.js
936
B
-rw-r--r--
2015-05-14 01:59
umask_sync.js
934
B
-rw-r--r--
2015-05-14 01:59
Save
Rename
var mkdirp = require('../').mkdirp; var path = require('path'); var fs = require('fs'); var test = require('tap').test; var _0777 = parseInt('0777', 8); var _0755 = parseInt('0755', 8); var _0744 = parseInt('0744', 8); var ps = [ '', 'tmp' ]; for (var i = 0; i < 25; i++) { var dir = Math.floor(Math.random() * Math.pow(16,4)).toString(16); ps.push(dir); } var file = ps.join('/'); test('chmod-pre', function (t) { var mode = _0744 mkdirp(file, mode, function (er) { t.ifError(er, 'should not error'); fs.stat(file, function (er, stat) { t.ifError(er, 'should exist'); t.ok(stat && stat.isDirectory(), 'should be directory'); t.equal(stat && stat.mode & _0777, mode, 'should be 0744'); t.end(); }); }); }); test('chmod', function (t) { var mode = _0755 mkdirp(file, mode, function (er) { t.ifError(er, 'should not error'); fs.stat(file, function (er, stat) { t.ifError(er, 'should exist'); t.ok(stat && stat.isDirectory(), 'should be directory'); t.end(); }); }); });