Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
amatya /
node_modules /
mkdirp /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
chmod.js
1.11
KB
-rw-r--r--
clobber.js
855
B
-rw-r--r--
mkdirp.js
900
B
-rw-r--r--
opts_fs.js
938
B
-rw-r--r--
opts_fs_sync.js
868
B
-rw-r--r--
perm.js
871
B
-rw-r--r--
perm_sync.js
991
B
-rw-r--r--
race.js
988
B
-rw-r--r--
rel.js
987
B
-rw-r--r--
return.js
826
B
-rw-r--r--
return_sync.js
855
B
-rw-r--r--
root.js
496
B
-rw-r--r--
sync.js
906
B
-rw-r--r--
umask.js
936
B
-rw-r--r--
umask_sync.js
934
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : chmod.js
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(); }); }); });
Close