Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
core /
vendor /
bootstrap /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
.jscsrc
2.1
KB
-rw-r--r--
2018-04-19 18:15
.jshintrc
277
B
-rw-r--r--
2018-04-19 18:15
affix.js
4.72
KB
-rw-r--r--
2018-04-19 18:15
alert.js
2.21
KB
-rw-r--r--
2018-04-19 18:15
button.js
3.46
KB
-rw-r--r--
2018-04-19 18:15
carousel.js
6.97
KB
-rw-r--r--
2018-04-19 18:15
collapse.js
5.82
KB
-rw-r--r--
2018-04-19 18:15
dropdown.js
4.63
KB
-rw-r--r--
2018-04-19 18:15
modal.js
9.71
KB
-rw-r--r--
2018-04-19 18:15
popover.js
3.09
KB
-rw-r--r--
2018-04-19 18:15
scrollspy.js
4.6
KB
-rw-r--r--
2018-04-19 18:15
tab.js
3.81
KB
-rw-r--r--
2018-04-19 18:15
tooltip.js
15.96
KB
-rw-r--r--
2018-04-19 18:15
transition.js
1.79
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
/* ======================================================================== * Bootstrap: alert.js v3.3.6 * http://getbootstrap.com/javascript/#alerts * ======================================================================== * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // ALERT CLASS DEFINITION // ====================== var dismiss = '[data-dismiss="alert"]' var Alert = function (el) { $(el).on('click', dismiss, this.close) } Alert.VERSION = '3.3.6' Alert.TRANSITION_DURATION = 150 Alert.prototype.close = function (e) { var $this = $(this) var selector = $this.attr('data-target') if (!selector) { selector = $this.attr('href') selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } var $parent = $(selector) if (e) e.preventDefault() if (!$parent.length) { $parent = $this.closest('.alert') } $parent.trigger(e = $.Event('close.bs.alert')) if (e.isDefaultPrevented()) return $parent.removeClass('in') function removeElement() { // detach from parent, fire event then clean up data $parent.detach().trigger('closed.bs.alert').remove() } $.support.transition && $parent.hasClass('fade') ? $parent .one('bsTransitionEnd', removeElement) .emulateTransitionEnd(Alert.TRANSITION_DURATION) : removeElement() } // ALERT PLUGIN DEFINITION // ======================= function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.alert') if (!data) $this.data('bs.alert', (data = new Alert(this))) if (typeof option == 'string') data[option].call($this) }) } var old = $.fn.alert $.fn.alert = Plugin $.fn.alert.Constructor = Alert // ALERT NO CONFLICT // ================= $.fn.alert.noConflict = function () { $.fn.alert = old return this } // ALERT DATA-API // ============== $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) }(jQuery);