Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
static /
libs /
Delete
Unzip
Name
Size
Permission
Date
Action
chart.js
[ DIR ]
drwxrwxr-x
2026-06-24 16:29
clipboard
[ DIR ]
drwxrwxr-x
2026-06-24 16:29
featherlight
[ DIR ]
drwxrwxr-x
2026-06-24 16:29
fontawesome
[ DIR ]
drwxrwxr-x
2026-06-24 16:29
latinmodernmath
[ DIR ]
drwxrwxr-x
2026-06-24 16:29
select2
[ DIR ]
drwxrwxr-x
2026-06-24 16:29
timezone-map
[ DIR ]
drwxrwxr-x
2026-06-24 16:29
README.md
32
B
-rw-r--r--
2026-06-24 16:29
jquery-3.4.1.min.js
86.08
KB
-rw-r--r--
2026-06-24 16:29
jquery-cookie.js
3.05
KB
-rw-r--r--
2026-06-24 16:29
jquery-sortable.js
27.23
KB
-rw-r--r--
2026-06-24 16:29
jquery-taphold.js
4.56
KB
-rw-r--r--
2026-06-24 16:29
jquery.unveil.js
1.29
KB
-rw-r--r--
2026-06-24 16:29
moment.js
185.23
KB
-rw-r--r--
2026-06-24 16:29
nouislider.min.css
3.47
KB
-rw-r--r--
2026-06-24 16:29
nouislider.min.js
20.69
KB
-rw-r--r--
2026-06-24 16:29
raven.min.js
24.54
KB
-rw-r--r--
2026-06-24 16:29
tablesorter.js
98.41
KB
-rw-r--r--
2026-06-24 16:29
Save
Rename
/** * jQuery Unveil * A very lightweight jQuery plugin to lazy load images * http://luis-almeida.github.com/unveil * * Licensed under the MIT license. * Copyright 2013 Luís Almeida * https://github.com/luis-almeida */ ;(function($) { $.fn.unveil = function(threshold, callback) { var $w = $(window), th = threshold || 0, retina = window.devicePixelRatio > 1, attrib = retina? "data-src-retina" : "data-src", images = this, loaded; this.one("unveil", function() { var source = this.getAttribute(attrib); source = source || this.getAttribute("data-src"); if (source) { this.setAttribute("src", source); if (typeof callback === "function") callback.call(this); } }); function unveil() { var inview = images.filter(function() { var $e = $(this); if ($e.is(":hidden")) return; var wt = $w.scrollTop(), wb = wt + $w.height(), et = $e.offset().top, eb = et + $e.height(); return eb >= wt - th && et <= wb + th; }); loaded = inview.trigger("unveil"); images = images.not(loaded); } $w.on("scroll.unveil resize.unveil lookup.unveil", unveil); unveil(); return this; }; })(window.jQuery || window.Zepto);