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.15.28.86
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
fs-mkdirp-stream /
Delete
Unzip
Name
Size
Permission
Date
Action
node_modules
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
LICENSE
1.23
KB
-rw-rw-r--
2022-08-30 11:49
README.md
2.7
KB
-rw-rw-r--
2022-08-30 11:49
index.js
1012
B
-rw-rw-r--
2022-08-30 11:49
mkdirp.js
1.36
KB
-rw-rw-r--
2022-08-30 11:49
package.json
1.21
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; var path = require('path'); var fs = require('graceful-fs'); var MASK_MODE = parseInt('7777', 8); var DEFAULT_DIR_MODE = parseInt('0777', 8); function mkdirp(dirpath, customMode, callback) { if (typeof customMode === 'function') { callback = customMode; customMode = undefined; } var mode = customMode || (DEFAULT_DIR_MODE & ~process.umask()); dirpath = path.resolve(dirpath); fs.mkdir(dirpath, mode, onMkdir); function onMkdir(mkdirErr) { if (!mkdirErr) { return fs.stat(dirpath, onStat); } switch (mkdirErr.code) { case 'ENOENT': { return mkdirp(path.dirname(dirpath), onRecurse); } case 'EEXIST': { return fs.stat(dirpath, onStat); } default: { return callback(mkdirErr); } } function onStat(statErr, stats) { if (statErr) { return callback(statErr); } if (!stats.isDirectory()) { return callback(mkdirErr); } // TODO: Is it proper to mask like this? if ((stats.mode & MASK_MODE) === mode) { return callback(); } if (!customMode) { return callback(); } fs.chmod(dirpath, mode, callback); } } function onRecurse(recurseErr) { if (recurseErr) { return callback(recurseErr); } mkdirp(dirpath, mode, callback); } } module.exports = mkdirp;