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.12.150.250
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 : fs.js
const fs = require('fs') const promisify = require('@gar/promisify') const isLower = (s) => s === s.toLowerCase() && s !== s.toUpperCase() const fsSync = Object.fromEntries(Object.entries(fs).filter(([k, v]) => typeof v === 'function' && (k.endsWith('Sync') || !isLower(k[0])) )) // this module returns the core fs async fns wrapped in a proxy that promisifies // method calls within the getter. we keep it in a separate module so that the // overridden methods have a consistent way to get to promisified fs methods // without creating a circular dependency. the ctors and sync methods are kept untouched module.exports = { ...promisify(fs), ...fsSync }
Close