Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.142.133.41
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
opt /
alt /
alt-nodejs16 /
root /
usr /
lib /
node_modules /
npm /
node_modules.bundled /
@npmcli /
fs /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
common
[ DIR ]
drwxr-xr-x
cp
[ DIR ]
drwxr-xr-x
rm
[ DIR ]
drwxr-xr-x
copy-file.js
494
B
-rw-r--r--
errors.js
3.32
KB
-rw-r--r--
fs.js
660
B
-rw-r--r--
index.js
395
B
-rw-r--r--
mkdir.js
435
B
-rw-r--r--
mkdtemp.js
777
B
-rw-r--r--
with-owner-sync.js
463
B
-rw-r--r--
with-owner.js
495
B
-rw-r--r--
with-temp-dir.js
1021
B
-rw-r--r--
write-file.js
395
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mkdtemp.js
const { dirname, sep } = require('path') const fs = require('./fs.js') const getOptions = require('./common/get-options.js') const withOwner = require('./with-owner.js') const mkdtemp = async (prefix, opts) => { const options = getOptions(opts, { copy: ['encoding'], wrap: 'encoding', }) // mkdtemp relies on the trailing path separator to indicate if it should // create a directory inside of the prefix. if that's the case then the root // we infer ownership from is the prefix itself, otherwise it's the dirname // /tmp -> /tmpABCDEF, infers from / // /tmp/ -> /tmp/ABCDEF, infers from /tmp const root = prefix.endsWith(sep) ? prefix : dirname(prefix) return withOwner(root, () => fs.mkdtemp(prefix, options), opts) } module.exports = mkdtemp
Close