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 /
jsdom /
lib /
jsdom /
living /
helpers /
[ HOME SHELL ]
Name
Size
Permission
Action
svg
[ DIR ]
drwxr-xr-x
agent-factory.js
636
B
-rw-r--r--
binary-data.js
320
B
-rw-r--r--
create-element.js
9.91
KB
-rw-r--r--
create-event-accessor.js
5.68
KB
-rw-r--r--
custom-elements.js
7.51
KB
-rw-r--r--
dates-and-times.js
7.68
KB
-rw-r--r--
details.js
540
B
-rw-r--r--
document-base-url.js
1.84
KB
-rw-r--r--
events.js
717
B
-rw-r--r--
focusing.js
3.39
KB
-rw-r--r--
form-controls.js
10.08
KB
-rw-r--r--
html-constructor.js
2.75
KB
-rw-r--r--
http-request.js
7.85
KB
-rw-r--r--
internal-constants.js
386
B
-rw-r--r--
iterable-weak-set.js
1.13
KB
-rw-r--r--
json.js
346
B
-rw-r--r--
mutation-observers.js
5.31
KB
-rw-r--r--
namespaces.js
381
B
-rw-r--r--
node.js
1.29
KB
-rw-r--r--
number-and-date-inputs.js
6.71
KB
-rw-r--r--
ordered-set.js
2.04
KB
-rw-r--r--
page-transition-event.js
445
B
-rw-r--r--
runtime-script-errors.js
2.43
KB
-rw-r--r--
selectors.js
1.17
KB
-rw-r--r--
shadow-dom.js
6.69
KB
-rw-r--r--
strings.js
4.68
KB
-rw-r--r--
style-rules.js
3.6
KB
-rw-r--r--
stylesheets.js
4.09
KB
-rw-r--r--
text.js
542
B
-rw-r--r--
traversal.js
2.27
KB
-rw-r--r--
validate-names.js
2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : runtime-script-errors.js
"use strict"; const util = require("util"); const idlUtils = require("../generated/utils"); const ErrorEvent = require("../generated/ErrorEvent"); const { createAnEvent } = require("../helpers/events"); const errorReportingMode = Symbol("error reporting mode"); // https://html.spec.whatwg.org/multipage/webappapis.html#report-the-error // Omits script parameter and any check for muted errors. // Takes target as an EventTarget impl. // Takes error object, message, and location as params, unlike the spec. // Returns whether the event was handled or not. function reportAnError(line, col, target, errorObject, message, location) { if (target[errorReportingMode]) { return false; } target[errorReportingMode] = true; if (typeof message !== "string") { message = "uncaught exception: " + util.inspect(errorObject); } const event = createAnEvent("error", target._globalObject, ErrorEvent, { cancelable: true, message, filename: location, lineno: line, colno: col, error: errorObject }); try { target._dispatch(event); } finally { target[errorReportingMode] = false; return event.defaultPrevented; } } module.exports = function reportException(window, error, filenameHint) { // This function will give good results on real Error objects with stacks; poor ones otherwise const stack = error && error.stack; const lines = stack && stack.split("\n"); // Find the first line that matches; important for multi-line messages let pieces; if (lines) { for (let i = 1; i < lines.length && !pieces; ++i) { pieces = lines[i].match(/at (?:(.+)\s+)?\(?(?:(.+?):(\d+):(\d+)|([^)]+))\)?/); } } const fileName = (pieces && pieces[2]) || filenameHint || window._document.URL; const lineNumber = (pieces && parseInt(pieces[3])) || 0; const columnNumber = (pieces && parseInt(pieces[4])) || 0; const windowImpl = idlUtils.implForWrapper(window); const handled = reportAnError(lineNumber, columnNumber, windowImpl, error, error && error.message, fileName); if (!handled) { const errorString = shouldBeDisplayedAsError(error) ? `[${error.name}: ${error.message}]` : util.inspect(error); const jsdomError = new Error(`Uncaught ${errorString}`); jsdomError.detail = error; jsdomError.type = "unhandled exception"; window._virtualConsole.emit("jsdomError", jsdomError); } }; function shouldBeDisplayedAsError(x) { return x && x.name && x.message !== undefined && x.stack; }
Close