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 /
xhr /
[ HOME SHELL ]
Name
Size
Permission
Action
FormData-impl.js
5.02
KB
-rw-r--r--
XMLHttpRequest-impl.js
31.69
KB
-rw-r--r--
XMLHttpRequestEventTarget-impl...
780
B
-rw-r--r--
XMLHttpRequestUpload-impl.js
211
B
-rw-r--r--
xhr-sync-worker.js
1.64
KB
-rw-r--r--
xhr-utils.js
13.51
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xhr-sync-worker.js
"use strict"; /* eslint-disable no-process-exit */ const util = require("util"); const { JSDOM } = require("../../../.."); const { READY_STATES } = require("./xhr-utils"); const idlUtils = require("../generated/utils"); const tough = require("tough-cookie"); const dom = new JSDOM(); const xhr = new dom.window.XMLHttpRequest(); const xhrImpl = idlUtils.implForWrapper(xhr); const chunks = []; process.stdin.on("data", chunk => { chunks.push(chunk); }); process.stdin.on("end", () => { const buffer = Buffer.concat(chunks); const flag = JSON.parse(buffer.toString()); if (flag.body && flag.body.type === "Buffer" && flag.body.data) { flag.body = Buffer.from(flag.body.data); } if (flag.cookieJar) { flag.cookieJar = tough.CookieJar.fromJSON(flag.cookieJar); } flag.synchronous = false; Object.assign(xhrImpl.flag, flag); const { properties } = xhrImpl; xhrImpl.readyState = READY_STATES.OPENED; try { xhr.addEventListener("loadend", () => { if (properties.error) { properties.error = properties.error.stack || util.inspect(properties.error); } process.stdout.write(JSON.stringify({ responseURL: xhrImpl.responseURL, status: xhrImpl.status, statusText: xhrImpl.statusText, properties }), () => { process.exit(0); }); }, false); xhr.send(flag.body); } catch (error) { properties.error += error.stack || util.inspect(error); process.stdout.write(JSON.stringify({ responseURL: xhrImpl.responseURL, status: xhrImpl.status, statusText: xhrImpl.statusText, properties }), () => { process.exit(0); }); } });
Close