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 | : 13.59.72.254
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 /
mkdirp-infer-owner /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
748
B
-rw-r--r--
index.js
937
B
-rw-r--r--
package.json
819
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
const inferOwner = require('infer-owner') const mkdirp = require('mkdirp') const {promisify} = require('util') const chownr = promisify(require('chownr')) const platform = process.env.__TESTING_MKDIRP_INFER_OWNER_PLATFORM__ || process.platform const isWindows = platform === 'win32' const isRoot = process.getuid && process.getuid() === 0 const doChown = !isWindows && isRoot module.exports = !doChown ? (path, opts) => mkdirp(path, opts) : (path, opts) => inferOwner(path).then(({uid, gid}) => mkdirp(path, opts).then(made => uid !== 0 || gid !== process.getgid() ? chownr(made || path, uid, gid).then(() => made) : made)) module.exports.sync = !doChown ? (path, opts) => mkdirp.sync(path, opts) : (path, opts) => { const {uid, gid} = inferOwner.sync(path) const made = mkdirp.sync(path) if (uid !== 0 || gid !== process.getgid()) chownr.sync(made || path, uid, gid) return made }
Close