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 | : 18.116.80.68
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 /
html /
mum /
js /
Report /
[ HOME SHELL ]
Name
Size
Permission
Action
FeeReportLsys.js
863
B
-rwxr-xr-x
answer_book_statistics.js
916
B
-rwxr-xr-x
appear_list_center_qp_wise.js
1.28
KB
-rwxr-xr-x
appear_list_qp_wise.js
842
B
-rwxr-xr-x
appfeedetails.js
2.25
KB
-rwxr-xr-x
college_pending_markslist.js
1.06
KB
-rwxr-xr-x
fee_summary.js
1.37
KB
-rwxr-xr-x
iaemptyformat.js
1.86
KB
-rwxr-xr-x
photo_report.js
1.53
KB
-rwxr-xr-x
report_Admission_Ticket.js
4.48
KB
-rwxr-xr-x
report_Admission_Ticket_kus.js
4.02
KB
-rwxr-xr-x
report_Admission_Ticketold.js
3.25
KB
-rwxr-xr-x
report_Daily_Report.js
5.59
KB
-rwxr-xr-x
report_Daily_Report_qp.js
2.39
KB
-rwxr-xr-x
report_MarksListStudentWise.js
3.57
KB
-rwxr-xr-x
report_MarksListStudentWise1.j...
2.18
KB
-rwxr-xr-x
report_MarksListSubjectWise.js
1.77
KB
-rwxr-xr-x
report_SubjectListAdmCl.js
1.84
KB
-rwxr-xr-x
report_SubjectListGeneral.js
3.26
KB
-rwxr-xr-x
report_admission_list.js
6.07
KB
-rwxr-xr-x
report_admission_listold.js
1.34
KB
-rwxr-xr-x
report_attendance_summary.js
2.71
KB
-rwxr-xr-x
report_bacth_preparation_dairy...
1.1
KB
-rwxr-xr-x
report_candidate_list.js
2.29
KB
-rwxr-xr-x
report_degree_list.js
828
B
-rwxr-xr-x
report_markslist_pending.js
1.18
KB
-rwxr-xr-x
report_pr_pending.js
1.19
KB
-rwxr-xr-x
report_practical_misc.js
1.16
KB
-rwxr-xr-x
report_qpcount_univ.js
1.1
KB
-rwxr-xr-x
report_ra_invigilators_dairy.j...
804
B
-rwxr-xr-x
report_ra_qp_wise_student_coun...
941
B
-rwxr-xr-x
report_ra_roomwise_register_no...
1.04
KB
-rwxr-xr-x
revaluation_report.js
1.06
KB
-rwxr-xr-x
student_count.js
863
B
-rwxr-xr-x
studentsectionlist.js
1.2
KB
-rwxr-xr-x
subject_wise_students.js
2.08
KB
-rwxr-xr-x
tatkal.js
1.1
KB
-rwxr-xr-x
teacher_report.js
2.37
KB
-rwxr-xr-x
teacher_val_report.js
658
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : report_admission_list.js
function LoadAdmissionListing() { $("#page_main_div").load( "html_modules/admission_list.html?v=03102018", function() { $("#admstatus").hide(); document.getElementById("display_module_name").innerHTML = "Admission List Report"; document.getElementById("module_name_for_save").value = "ReportAdmissionList"; $("#report_degree_code").val(""); $("#report_degree_name").val(""); getDefaultHeadFooterLinks("Admission Listing"); loadAdmListDegree(); } ); } function loadAdmListDegree() { $.ajax({ type: "POST", async: false, url: $host_url + "loaddegree", success: loaddegreeResponseAdmList }); } function loaddegreeResponseAdmList($responceCat) { $responceCat = eval("(" + $responceCat + ")"); if ($responceCat.error_code == 0) { var optionsAsString = "<option value=''>--Select Degree--</option>"; for (var i = 0; i < $responceCat.data.length; i++) { optionsAsString += "<option value='" + $responceCat.data[i].internal_code + "'>" + $responceCat.data[i].internal_code + "-" + $responceCat.data[i].value + "</option>"; } $("#report_degree_code").append(optionsAsString); } } function GenerateAdmissionReport() { var report_type = $("#type").val(); var parameters = ""; if (trim($("#type").val()) == "") { alert("Please Select Report Type"); $("#type").focus(); return; } if (report_type == "bdc") { if (trim($("#report_degree_code").val()) == "") { alert("Please Select Valid Degree Code..!"); $("#report_degree_code").focus(); return; } parameters = "°ree_code=" + trim($("#report_degree_code").val()); window.location.href = $host_url + "PrintBasicDataColl.demo" + parameters; return; } else if (report_type == "bdcs") { if (trim($("#faculty").val()) == "") { alert("Please Select Faculty..!"); $("#report_degree_code").focus(); return; } parameters = "&Faculty=" + trim($("#faculty").val()); window.location.href = $host_url + "printBasicDataSum.demo" + parameters; return; } else if ( report_type == "rgsfp" || report_type == "rgsad" || report_type == "rgsap" || report_type == "rgsal" ) { if (trim($("#report_degree_code").val()) == "") { alert("Please Select Valid Degree Code..!"); $("#report_degree_code").focus(); return; } else if (trim($("#appfrom").val()) == "") { alert("Please Enter Application from"); $("#appfrom").focus(); return; } else if (trim($("#appto").val()) == "") { alert("Please Enter Application to"); $("#appto").focus(); return; } parameters = "°ree_code=" + trim($("#report_degree_code").val()) + "&appfrom=" + trim($("#appfrom").val()) + "&appto=" + trim($("#appto").val()); window.location.href = $host_url + "PrintRegStudList.demo" + parameters + "&reporttype=" + $("#type").val(); return; } else if (report_type == "adml") { if (trim($("#report_degree_code").val()) == "") { alert("Please Select Valid Degree Code..!"); $("#report_degree_code").focus(); return; } else if (trim($("#appfrom").val()) == "") { alert("Please Enter Application from"); $("#appfrom").focus(); return; } else if (trim($("#appto").val()) == "") { alert("Please Enter Application to"); $("#appto").focus(); return; } var parameters = "°ree_code=" + trim($("#report_degree_code").val()) + "&exam_no=A" + "&status=" + trim($("#status").val()) + "&appfrom=" + trim($("#appfrom").val()) + "&appto=" + trim($("#appto").val()); window.location.href = $host_url + "generateAdmissionReport.demo" + parameters; } else if (trim($("#type").val()) == "adli") { var parameters = "°ree_code=" + trim($("#report_degree_code").val()) + "&exam_no=" + trim($("#year").val()) + "&appfrom=" + trim($("#appfrom").val()) + "&appto=" + trim($("#appto").val()); window.location.href = $host_url + "generateadmlist.demo" + parameters; } /*if(trim($("#appfrom").val()) == '' ) { alert('Please Enter Application from'); $("#appfrom").focus(); return; } else if(trim($("#appto").val()) == '' ) { alert('Please Enter Application to'); $("#appto").focus(); return; } else if(trim($("#type").val()) == '' ) { alert('Please Select Report Type'); $("#type").focus(); return; } else if(trim($("#status").val()) == '' && trim($("#type").val()) !='admp') { alert('Please Select Application status'); $("#status").focus(); return; } var parameters = "°ree_code="+trim(($("#report_degree_code").val()))+"&exam_no=A"+"&status="+trim($("#status").val())+"®status="+trim($("#regstatus").val())+"&appfrom="+trim($("#appfrom").val())+"&appto="+trim($("#appto").val()); if(trim($("#type").val()) =='adml') window.location.href = $host_url+"generateAdmissionReport.demo"+parameters; else if(trim($("#type").val()) =='admp') window.location.href = $host_url+"PrintRegStudList.demo"+parameters+"&reporttype=summary"; else if(trim($("#type").val()) =='adcb') window.location.href = $host_url+"PrintCombinationDeatils.demo"+parameters+"&reporttype=summary"; else if(trim($("#type").val()) =='adsu') window.location.href = $host_url+"PrintAdmissionSummary.demo"+parameters+"&reporttype=summary"; */ } function showstatusadm() { // $('#admstatus').show(); $("#hfaculty").hide(); $("#hdegree").show(); var type = $("#type").val(); if (type == "bdc") { $("#admstatus").hide(); $("#appRange").hide(); } else if (type == "bdcs") { $("#hfaculty").show(); $("#hdegree").hide(); $("#admstatus").hide(); } else if ( type == "rgsfp" || type == "rgsad" || type == "rgsap" || type == "rgsal" ) { $("#admstatus").hide(); $("#appRange").show(); } else if (type == "adml") { } } /* * * FOR THE Report degree list * PROGRAMED BY NAVEEN * DATE: 13/03/09 * TIME: 1:15 PM * */
Close