Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.71.254.219
Cant Read [ /etc/named.conf ]
7.4.33
aja
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 /
aja /
public_html /
ead /
rating /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
index.php
5.42
KB
-rw-r--r--
lib.php
51.52
KB
-rw-r--r--
module.js
2.78
KB
-rw-r--r--
rate.php
4.05
KB
-rw-r--r--
rate_ajax.php
2.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : module.js
M.core_rating = { Y : null, api: M.cfg.wwwroot + '/rating/rate_ajax.php', init : function(Y){ this.Y = Y; Y.all('select.postratingmenu').each(this.attach_rating_events, this); //hide the submit buttons this.Y.all('input.postratingmenusubmit').setStyle('display', 'none'); }, attach_rating_events : function(selectnode) { selectnode.on('change', this.submit_rating, this, selectnode); }, submit_rating : function(e, selectnode){ var theinputs = selectnode.ancestor('form').all('.ratinginput'); var thedata = []; var inputssize = theinputs.size(); for (var i = 0; i < inputssize; i++) { if(theinputs.item(i).get("name") != "returnurl") { // Dont include return url for ajax requests. thedata[theinputs.item(i).get("name")] = theinputs.item(i).get("value"); } } var scope = this; var cfg = { method: 'POST', on: { complete : function(tid, outcome, args) { try { if (!outcome) { alert('IO FATAL'); return false; } var data = scope.Y.JSON.parse(outcome.responseText); if (data.success){ //if the user has access to the aggregate then update it if (data.itemid) { //do not test data.aggregate or data.count otherwise it doesn't refresh value=0 or no value var itemid = data.itemid; var node = scope.Y.one('#ratingaggregate' + itemid); node.set('innerHTML',data.aggregate); // Empty the count value if no ratings. var node = scope.Y.one('#ratingcount' + itemid); if (data.count > 0) { node.set('innerHTML', "(" + data.count + ")"); } else { node.set('innerHTML', ""); } } return true; } else if (data.error) { alert(data.error); } } catch(e) { alert(e.message + " " + outcome.responseText); } return false; } }, arguments: { scope: scope }, headers: { }, data: build_querystring(thedata) }; this.Y.io(this.api, cfg); } };
Close