Linux localhost.localdomain 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64
Apache
: 10.29.51.72 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
7.2.34
apache
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 /
mpc_emas /
public /
Cannavaro /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
animsition
[ DIR ]
drwxr-xr-x
button
[ DIR ]
drwxr-xr-x
chartist
[ DIR ]
drwxr-xr-x
ckeditor
[ DIR ]
drwxr-xr-x
colorPicker
[ DIR ]
drwxr-xr-x
datatables
[ DIR ]
drwxr-xr-x
datepicker
[ DIR ]
drwxr-xr-x
donut-chart
[ DIR ]
drwxr-xr-x
dropZone
[ DIR ]
drwxr-xr-x
flot
[ DIR ]
drwxr-xr-x
footable
[ DIR ]
drwxr-xr-x
fullcalendar
[ DIR ]
drwxr-xr-x
gmap
[ DIR ]
drwxr-xr-x
growl
[ DIR ]
drwxr-xr-x
idealform
[ DIR ]
drwxr-xr-x
inputMask
[ DIR ]
drwxr-xr-x
loader
[ DIR ]
drwxr-xr-x
number-progress-bar
[ DIR ]
drwxr-xr-x
pace
[ DIR ]
drwxr-xr-x
range-slider
[ DIR ]
drwxr-xr-x
skycons
[ DIR ]
drwxr-xr-x
slimscroll
[ DIR ]
drwxr-xr-x
stackable
[ DIR ]
drwxr-xr-x
tab
[ DIR ]
drwxr-xr-x
tabs
[ DIR ]
drwxr-xr-x
textEditor
[ DIR ]
drwxr-xr-x
timepicker
[ DIR ]
drwxr-xr-x
tip
[ DIR ]
drwxr-xr-x
tree
[ DIR ]
drwxr-xr-x
tubular
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxr-xr-x
validate
[ DIR ]
drwxr-xr-x
vegas
[ DIR ]
drwxr-xr-x
wizard
[ DIR ]
drwxr-xr-x
app-menu-right.js
3.86
KB
-rw-r--r--
app-topmenu.js
2.31
KB
-rw-r--r--
app.js
4.27
KB
-rw-r--r--
bg-changer.js
867
B
-rw-r--r--
bootstrap.js
55.85
KB
-rw-r--r--
date.js
1.63
KB
-rw-r--r--
image-background.js
444
B
-rw-r--r--
jquery.js
243.11
KB
-rw-r--r--
jquery.nicescroll.min.js
56.74
KB
-rw-r--r--
jquery.tabSlideOut.v1.3.js
7.28
KB
-rw-r--r--
scriptbreaker-multiple-accordi...
2.6
KB
-rw-r--r--
sliding-menu-minimize.js
2.43
KB
-rw-r--r--
sliding-menu.js
2.34
KB
-rw-r--r--
sliding-right-menu.js
2.57
KB
-rw-r--r--
vegas.js
1.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : scriptbreaker-multiple-accordion-1.js
/* * jQuery UI Multilevel accordionze v.1 * * Copyright (c) 2011 Pieter Pareit * * http://www.scriptbreaker.com * */ //plugin definition (function($){ $.fn.extend({ //pass the options variable to the function accordionze: function(options) { var defaults = { accordionze: 'true', speed: 300, closedSign: '[+]', openedSign: '[-]' }; // Extend our default options with those provided. var opts = $.extend(defaults, options); //Assign current element to variable, in this case is UL element var $this = $(this); //add a mark [+] to a multilevel menu $this.find("li").each(function() { if($(this).find("ul").size() != 0){ //add the multilevel sign next to the link $(this).find("a:first").append("<h4>"+ opts.closedSign +"</h4>"); //avoid jumping to the top of the page when the href is an # if($(this).find("a:first").attr('href') == "#"){ $(this).find("a:first").click(function(){return false;}); } } }); //open active level $this.find("li.active").each(function() { $(this).parents("ul").slideDown(opts.speed); $(this).parents("ul").parent("li").find("h4:first").html(opts.openedSign); }); $this.find("li a").click(function() { if($(this).parent().find("ul").size() != 0){ if(opts.accordionze){ //Do nothing when the list is open if(!$(this).parent().find("ul").is(':visible')){ parents = $(this).parent().parents("ul"); visible = $this.find("ul:visible"); visible.each(function(visibleIndex){ var close = true; parents.each(function(parentIndex){ if(parents[parentIndex] == visible[visibleIndex]){ close = false; return false; } }); if(close){ if($(this).parent().find("ul") != visible[visibleIndex]){ $(visible[visibleIndex]).slideUp(opts.speed, function(){ $(this).parent("li").find("h4:first").html(opts.closedSign); }); } } }); } } if($(this).parent().find("ul:first").is(":visible")){ $(this).parent().find("ul:first").slideUp(opts.speed, function(){ $(this).parent("li").find("h4:first").delay(opts.speed).html(opts.closedSign); }); }else{ $(this).parent().find("ul:first").slideDown(opts.speed, function(){ $(this).parent("li").find("h4:first").delay(opts.speed).html(opts.openedSign); }); } } }); } }); })(jQuery);
Close