Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
softaculous /
enduser /
themes /
default /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
bpopup.0.9.4.min.js
5.06
KB
-rwxr-xr-x
2026-04-22 09:09
classes_suggest.js
6.39
KB
-rwxr-xr-x
2026-04-22 09:09
combined.js
138.05
KB
-rwxr-xr-x
2026-04-22 09:09
datatables.min.js
84.85
KB
-rwxr-xr-x
2026-04-22 09:09
daterangepicker.js
62.32
KB
-rwxr-xr-x
2026-04-22 09:09
dock.js
3.09
KB
-rwxr-xr-x
2026-04-22 09:09
domdrag.js
3.77
KB
-rwxr-xr-x
2026-04-22 09:09
dropzone.min.js
47.02
KB
-rwxr-xr-x
2026-04-22 09:09
excanvas.min.js
17.48
KB
-rwxr-xr-x
2026-04-22 09:09
g.pie-min.js
3.32
KB
-rwxr-xr-x
2026-04-22 09:09
g.raphael.js
11.83
KB
-rwxr-xr-x
2026-04-22 09:09
graph.js
5.42
KB
-rwxr-xr-x
2026-04-22 09:09
index.html
94
B
-rwxr-xr-x
2026-04-22 09:09
jquery-ui-custom.js
60.68
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.flot.min.js
36.67
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.flot.pie.min.js
8.65
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.js
84.89
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.scrollTo.js
3.5
KB
-rwxr-xr-x
2026-04-22 09:09
jquery.ui.widget.min.js
6.6
KB
-rwxr-xr-x
2026-04-22 09:09
menu.js
1.65
KB
-rwxr-xr-x
2026-04-22 09:09
moment.min.js
50.43
KB
-rwxr-xr-x
2026-04-22 09:09
motiongallery.js
5.46
KB
-rwxr-xr-x
2026-04-22 09:09
osuggest.js
3.68
KB
-rwxr-xr-x
2026-04-22 09:09
pie.js
915
B
-rwxr-xr-x
2026-04-22 09:09
popper.min.js
20.73
KB
-rwxr-xr-x
2026-04-22 09:09
popup.js
4.6
KB
-rwxr-xr-x
2026-04-22 09:09
raphael-min.js
58.88
KB
-rwxr-xr-x
2026-04-22 09:09
reorder.js
2.19
KB
-rwxr-xr-x
2026-04-22 09:09
script_select.js
29.2
KB
-rwxr-xr-x
2026-04-22 09:09
slider.js
3.1
KB
-rwxr-xr-x
2026-04-22 09:09
smoothscroll.js
1.02
KB
-rwxr-xr-x
2026-04-22 09:09
spectrum.js
66.54
KB
-rwxr-xr-x
2026-04-22 09:09
suggest.js
5.85
KB
-rwxr-xr-x
2026-04-22 09:09
tabber.js
1.23
KB
-rwxr-xr-x
2026-04-22 09:09
trail.js
4.39
KB
-rwxr-xr-x
2026-04-22 09:09
ui.progressbar.js
1.55
KB
-rwxr-xr-x
2026-04-22 09:09
universal.js
22.63
KB
-rwxr-xr-x
2026-04-22 09:09
Save
Rename
/* * Author: Chirag nagda and Raheel Farooqui */ var suggestjs = { lookup: function(inputString) { if(inputString.length == 0) { $_('suggestions').style.display = "none"; // Hide the suggestions box } else { // Form the URL to query var wl_tmp = $('#inputString').attr('sugurl'); $.get(wl_tmp, {sact: "scripts", q: inputString}, function(data) { // Do an AJAX call $('#suggestions').html(data); // Fill the suggestions box $_('suggestions').style.display = ""; // Show the suggestions box // Find the position of the search string and make adjustment to the search list. // If it goes out of the screen ,adjust it. var pos = findelpos($_("inputString")); if((screen.width - 40) < (pos[0] + $_("suggestions").offsetWidth)){ var extra = (pos[0] + $_("suggestions").offsetWidth) - (screen.width - 40); pos[0] = pos[0] - extra; } //Adjust the screen position $_("suggestions").style.left = pos[0] + "px"; $_("suggestions").style.top = (pos[1] + 10 + $_("inputString").offsetHeight) + "px"; //If IE version is less than 7 call suggest.bg if(BrowserDetect.browser.toLowerCase() == "explorer" && BrowserDetect.version.toString().substr(0, 1) <= "7"){ $_("row").className = "suggestIE";//suggestjs.bg(); } }); } }, b4: "", row: 0, t: "", myKeyDownHandler: function(evt, inputString) { //alert(inputString); if(suggestjs.t != ""){ clearTimeout(suggestjs.t); } //Look for which key is pressed and make it compatible for all browsers var charCode = (evt.which) ? evt.which : window.event.keyCode; //if any key other than up and down are presses then search for the scripts again if (charCode) { if((charCode >= 65 && charCode <= 90) || (charCode >= 97 && charCode <= 122) || charCode == 8 || (charCode >= 48 && charCode <= 57)){ suggestjs.t=setTimeout(function(){suggestjs.lookup(inputString)}, 200); if(charCode != 38 && charCode != 40){ old_inputString = $_("inputString").value; } } //If navigation keys are pressed , navigate accordingly and provide the search results if (charCode == 38 || charCode == 8) {// up arrow if (suggestjs.row > 0) suggestjs.row--; if(charCode != 8 && suggestjs.row == 0){ $_("inputString").value = old_inputString; } //If IE version is less than 7 than give it a plain Background if(BrowserDetect.browser.toLowerCase() == "explorer" && BrowserDetect.version.toString().substr(0, 1) <= "7"){ document.getElementById("row").className = "suggestIE"; } //Suggest the user search input if(charCode != 8 && suggestjs.row > 0 ){ $_("inputString").value = getAttributeByName($_('r'+(suggestjs.row-1)), "suggestscript"); } // Down arrow }else if(charCode == 40 || charCode == 8) { if($_("inputString").value != ""){ if (suggestjs.row < $_("row").rows.length){ suggestjs.row++; }else if(suggestjs.row >= $_("row").rows.length){ suggestjs.row = 1; } if(charCode != 8) $_("inputString").value = getAttributeByName($_('r'+(suggestjs.row-1)), "suggestscript"); } }else if (charCode != 40 || charCode != 38 || charCode == 8){ suggestjs.row = 0; suggestjs.b4 = ""; } if(charCode == 27){ $_('suggestions').style.display = "none"; $_("inputString").value = ""; } //If backspace is pressed dont suggest anything if(charCode != 8 || charCode != 13){ if((BrowserDetect.browser.toLowerCase() == "explorer" && BrowserDetect.version.toString().substr(0, 1) > "7" && charCode == 40) || (suggestjs.row>0 && charCode == 38)){ suggestjs.bg(); }else{ if(BrowserDetect.browser.toLowerCase() != "explorer" ){ suggestjs.bg(); } } } } }, // Start giving colors to the table rows produced due to search bg: function() { try{ var doret = false; tmp = suggestjs.row-1; var r = "r" + tmp; if(r == 'r-1'){ r = 'r0'; var doret = true; } if (suggestjs.b4 == "") suggestjs.b4 = r; //if b4 is undefined , define it. if(typeof(suggestjs.b4) == 'undefined') suggestjs.b4 = 'r0'; //Get the attributes of the class used to give coloured var old_class = getAttributeByName($_(suggestjs.b4), "class"); if(!doret){ setTimeout("$_(suggestjs.b4).style.backgroundColor = '#B2D1FF'",70); $_(r).style.backgroundColor = '#CCEEFF'; } // If $global['mode'] is classes and the user is using the old search box, // at that time classes and scripts both should be searched properly // So we are putting the cid in a hidden tag only at the time of classes if(getAttributeByName($_("inputString"), "mode") == 'classes'){ // Set the cid to hidden tag having id = hidden_cid $_('hidden_cid').value = getAttributeByName($_('r'+(suggestjs.row-1)), "suggestcid"); } //alert($_(b4).style.backgroundColor+" - "+$_(r).style.backgroundColor); //Give back the original colors of the rows in the table if(old_class == 'sai_oddrowcolor'){ $_(suggestjs.b4).style.backgroundColor = '#FCFCFC'; }else{ $_(suggestjs.b4).style.backgroundColor = '#F5F5F5'; } suggestjs.b4 = r; //} }catch(e){} },//Function ends here // search the script and help redirect to the required page set_inputstring: function (str){ $_("inputString").value = str; $_('suggestions').style.display = "none"; $_("searchform").submit(); }, initial_text: "", show: function (blur){ if(suggestjs.initial_text == ""){ suggestjs.initial_text = $_("inputString").value; } if(blur == 0){ // Focusing! if($_("inputString").value == suggestjs.initial_text){ $_("inputString").value = ""; } } if(blur == 1){ // Blurring! $("html").click(function(){ $_("suggestions").style.display = "none"; }); if($_("inputString").value == ""){ $_("inputString").value = suggestjs.initial_text; } } } };