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
////////////////////////////////////////////////////////////// // Suggest.js // By Electron, Ronak Gupta, Pulkit Gupta // Please Read the Terms of use at http://www.anelectron.com // (c)Electron Inc. // You cannot remove the copyrights. ////////////////////////////////////////////////////////////// document.write('<div id="suggestbox" class="suggestbox"></div>'); sugdivid = 'suggestbox'; //Dont touch below saindex = 0; returned = new Array(); //Handles the key input function handlesuggest(e, elid){ pkey = ((window.event) ? window.event.keyCode : e.which);//alert(pkey); //The onkeydown event will handle certain things if(pkey == 9 || pkey == 13 || pkey == 27 || pkey == 38 || pkey == 40){ return; } var qtxt; var tmp = $_(elid).value; var tmp_r = tmp.split(';'); //alert(tmp_r.length); //Is there even ';' if(tmp_r.length > 1){ qtxt = trim(tmp_r[(tmp_r.length - 1)]); }else{ qtxt = trim(tmp_r[0]); } if(!(qtxt.length > 0)){ //No text hidesuggest(); return; } //alert(qtxt); if(getAttributeByName($_(elid), "suggesturl")){ AJAX(getAttributeByName($_(elid), "suggesturl")+'&q='+qtxt, 'handlesuggestresponse(\''+elid+'\',re)'); } }; function handlekeys(e){ var hkey = ((window.event) ? window.event.keyCode : e.which); switch(hkey){ //keydown case 40://alert('down'); suggestmovedown(); return; //keyup case 38://alert('up'); suggestmoveup(); return; //enter case 13: if(isvisible(sugdivid)){ $_('sa'+saindex).focus(); } return; //tab case 9://alert('tab'); hidesuggest(); return; //escape case 27: hidesuggest(); return; //Return because the onkeyupwill take care default: return; } }; //This mill make the suggest table function handlesuggestresponse(elid, r_txt){ //alert(elid); //alert(r_txt); returned = eval(r_txt); if(returned == false){ //alert('Nothing found'); hidesuggest();//Nothing found }else{ makesuggesttable(elid, sugdivid, returned); } }; function makesuggesttable(elid, divid, r_returned){ //On what are you saindex = 0; var pos = findelpos($_(elid)); $_(divid).style.left = pos[0] + "px"; $_(divid).style.top = (pos[1] + $_(elid).offsetHeight) + "px"; astr = ''; //Insert the a tags for(x in r_returned){ astr = astr + '<a href="javascript:insertsuggested(\''+r_returned[x]+'\', \''+elid+'\')" tabindex="10000" id="sa'+x+'" class="suga">'+r_returned[x]+'</a>'; } //alert(astr); $_(divid).innerHTML = astr; for(x in r_returned){ $_('sa'+x).className = 'suga'; $_('sa'+x).onmouseover = new Function("eval('saindex = "+x+";sugaon();')"); } showel(divid); sugaon();//Well just to hightlight the first row }; function insertsuggested(val, elid){ //alert(value); var tmp = $_(elid).value; var tmp_r = tmp.split(';'); //Set the last value to '' tmp_r[(tmp_r.length - 1)] = ''; //Just trim for(x in tmp_r){ tmp_r[x] = trim(tmp_r[x]); } var sugappend = '; '; // Multi Suggest if(getAttributeByName($_(elid), "sugmulti") == 0){ sugappend = ''; } $_(elid).value = tmp_r.join('; ')+val+sugappend; $_(elid).focus(); hidesuggest(); }; function suggestmovedown(){ if(returned.length > 0 && isvisible(sugdivid)){ saindex++; if(typeof(returned[saindex]) == 'undefined'){ saindex = 0; } sugaon(); } }; function suggestmoveup(){ if(returned.length > 0 && isvisible(sugdivid)){ saindex--; if(typeof(returned[saindex]) == 'undefined'){ saindex = returned.length - 1; } sugaon(); } }; //Hides the suggest box function hidesuggest(){ hideel(sugdivid); }; //Hightlight function sugaon(){ if(returned.length > 0 && isvisible(sugdivid)){ for(x in returned){ if(x != saindex){ $_('sa'+x).className = 'suga'; } } $_('sa'+saindex).className = 'sugaon'; } };