Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
webpack /
hot /
[ HOME SHELL ]
Name
Size
Permission
Action
dev-server.js
1.94
KB
-rw-rw-rw-
emitter.js
75
B
-rw-rw-rw-
lazy-compilation-node.js
1.16
KB
-rw-rw-rw-
lazy-compilation-web.js
2
KB
-rw-rw-rw-
log-apply-result.js
1.43
KB
-rw-rw-rw-
log.js
1.73
KB
-rw-rw-rw-
only-dev-server.js
2.58
KB
-rw-rw-rw-
poll.js
1.19
KB
-rw-rw-rw-
signal.js
1.7
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lazy-compilation-web.js
/* global __resourceQuery */ "use strict"; if (typeof EventSource !== "function") { throw new Error( "Environment doesn't support lazy compilation (requires EventSource)" ); } var urlBase = decodeURIComponent(__resourceQuery.slice(1)); /** @type {EventSource | undefined} */ var activeEventSource; var activeKeys = new Map(); var errorHandlers = new Set(); var updateEventSource = function updateEventSource() { if (activeEventSource) activeEventSource.close(); if (activeKeys.size) { activeEventSource = new EventSource( urlBase + Array.from(activeKeys.keys()).join("@") ); /** * @this {EventSource} * @param {Event & { message?: string, filename?: string, lineno?: number, colno?: number, error?: Error }} event event */ activeEventSource.onerror = function (event) { errorHandlers.forEach(function (onError) { onError( new Error( "Problem communicating active modules to the server: " + event.message + " " + event.filename + ":" + event.lineno + ":" + event.colno + " " + event.error ) ); }); }; } else { activeEventSource = undefined; } }; /** * @param {{ data: string, onError: (err: Error) => void, active: boolean, module: module }} options options * @returns {() => void} function to destroy response */ exports.keepAlive = function (options) { var data = options.data; var onError = options.onError; var active = options.active; var module = options.module; errorHandlers.add(onError); var value = activeKeys.get(data) || 0; activeKeys.set(data, value + 1); if (value === 0) { updateEventSource(); } if (!active && !module.hot) { console.log( "Hot Module Replacement is not enabled. Waiting for process restart..." ); } return function () { errorHandlers.delete(onError); setTimeout(function () { var value = activeKeys.get(data); if (value === 1) { activeKeys.delete(data); updateEventSource(); } else { activeKeys.set(data, value - 1); } }, 1000); }; };
Close