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 /
esprima /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
assert.js
551
B
-rw-r--r--
character.js
16.71
KB
-rw-r--r--
comment-handler.js
5.36
KB
-rw-r--r--
error-handler.js
1.85
KB
-rw-r--r--
esprima.js
4.55
KB
-rw-r--r--
jsx-nodes.js
3.63
KB
-rw-r--r--
jsx-parser.js
21.3
KB
-rw-r--r--
jsx-syntax.js
579
B
-rw-r--r--
messages.js
4.01
KB
-rw-r--r--
nodes.js
23.69
KB
-rw-r--r--
parser.js
132.97
KB
-rw-r--r--
scanner.js
42.5
KB
-rw-r--r--
syntax.js
2.73
KB
-rw-r--r--
token.js
658
B
-rw-r--r--
tokenizer.js
6.15
KB
-rw-r--r--
xhtml-entities.js
5.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : error-handler.js
"use strict"; /* tslint:disable:max-classes-per-file */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ErrorHandler = void 0; var ErrorHandler = /** @class */ (function () { function ErrorHandler() { this.errors = []; this.tolerant = false; } ErrorHandler.prototype.recordError = function (error) { this.errors.push(error); }; ErrorHandler.prototype.tolerate = function (error) { if (this.tolerant) { this.recordError(error); } else { throw error; } }; ErrorHandler.prototype.constructError = function (msg, column) { var error = new Error(msg); try { throw error; } catch (base) { /* istanbul ignore else */ if (Object.create && Object.defineProperty) { error = Object.create(base); Object.defineProperty(error, 'column', { value: column }); } } /* istanbul ignore next */ return error; }; ErrorHandler.prototype.createError = function (index, line, col, description) { var msg = 'Line ' + line + ': ' + description; var error = this.constructError(msg, col); error.index = index; error.lineNumber = line; error.description = description; return error; }; ErrorHandler.prototype.throwError = function (index, line, col, description) { throw this.createError(index, line, col, description); }; ErrorHandler.prototype.tolerateError = function (index, line, col, description) { var error = this.createError(index, line, col, description); if (this.tolerant) { this.recordError(error); } else { throw error; } }; return ErrorHandler; }()); exports.ErrorHandler = ErrorHandler;
Close