Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
usr /
share /
nodejs /
@npmcli /
git /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
clone.js
4.75
KB
-rw-r--r--
errors.js
599
B
-rw-r--r--
find.js
300
B
-rw-r--r--
index.js
241
B
-rw-r--r--
is-clean.js
222
B
-rw-r--r--
is.js
271
B
-rw-r--r--
lines-to-revs.js
3.94
KB
-rw-r--r--
make-error.js
859
B
-rw-r--r--
opts.js
369
B
-rw-r--r--
proc-log.js
349
B
-rw-r--r--
revs.js
640
B
-rw-r--r--
spawn.js
1.28
KB
-rw-r--r--
utils.js
109
B
-rw-r--r--
which.js
323
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