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 /
needle /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
auth.js
2.4
KB
-rw-rw-r--
cookies.js
2.43
KB
-rw-rw-r--
decoder.js
1.18
KB
-rw-rw-r--
multipart.js
2.83
KB
-rw-rw-r--
needle.js
25.96
KB
-rw-rw-r--
parsers.js
2.52
KB
-rw-rw-r--
querystring.js
1.34
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : decoder.js
var iconv, inherits = require('util').inherits, stream = require('stream'); var regex = /(?:charset|encoding)\s*=\s*['"]? *([\w\-]+)/i; inherits(StreamDecoder, stream.Transform); function StreamDecoder(charset) { if (!(this instanceof StreamDecoder)) return new StreamDecoder(charset); stream.Transform.call(this, charset); this.charset = charset; this.parsed_chunk = false; } StreamDecoder.prototype._transform = function(chunk, encoding, done) { var res, found; // try get charset from chunk, just once if (this.charset == 'iso-8859-1' && !this.parsed_chunk) { this.parsed_chunk = true; var matches = regex.exec(chunk.toString()); if (matches) { found = matches[1].toLowerCase(); this.charset = found == 'utf-8' ? 'utf8' : found; } } try { res = iconv.decode(chunk, this.charset); } catch(e) { // something went wrong, just return original chunk res = chunk; } this.push(res); done(); } module.exports = function(charset) { try { if (!iconv) iconv = require('iconv-lite'); } catch(e) { /* iconv not found */ } if (iconv) return new StreamDecoder(charset); else return new stream.PassThrough; }
Close