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.219.119.163
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 /
nitte /
Report_details21042016 /
[ HOME SHELL ]
Name
Size
Permission
Action
output
[ DIR ]
drwxr-xr-x
DownloadRvRtAckApplications.ph...
4.75
KB
-rwxr-xr-x
PrintChallanEntryDetails.php
8.5
KB
-rwxr-xr-x
RvRtApplicationReport.php
9.02
KB
-rwxr-xr-x
appear_list_qp_wise.php
5.28
KB
-rwxr-xr-x
batch_wise_details.php
4.59
KB
-rwxr-xr-x
report_admission_list.php
6.83
KB
-rwxr-xr-x
report_admission_ticket0808201...
11.66
KB
-rwxr-xr-x
report_admission_ticket1009201...
11.69
KB
-rwxr-xr-x
report_admission_ticket2203201...
10.76
KB
-rwxr-xr-x
report_admission_ticket2203sma...
11.05
KB
-rwxr-xr-x
report_admission_ticket2404201...
11.07
KB
-rwxr-xr-x
report_admission_ticket_160514...
14.72
KB
-rwxr-xr-x
report_admission_ticket_WITHOU...
11.7
KB
-rwxr-xr-x
report_admission_ticketold.php
14.37
KB
-rwxr-xr-x
report_batch_wise_details.php
7.47
KB
-rwxr-xr-x
report_batch_worksheet_details...
10.35
KB
-rwxr-xr-x
report_batch_worksheet_details...
10.63
KB
-rwxr-xr-x
report_candidate_list.php
19.8
KB
-rwxr-xr-x
report_candidate_list_before_p...
18.28
KB
-rwxr-xr-x
report_candidate_list_final.ph...
10.08
KB
-rwxr-xr-x
report_daliy_report.php
10.98
KB
-rwxr-xr-x
report_degree_list.php
2.53
KB
-rwxr-xr-x
report_deviation_report.php
8.96
KB
-rwxr-xr-x
report_deviation_report130312....
8.02
KB
-rwxr-xr-x
report_deviation_report1907201...
8.05
KB
-rwxr-xr-x
report_evaluation_report.php
9.57
KB
-rwxr-xr-x
report_evaluation_report040720...
9.57
KB
-rwxr-xr-x
report_marks_deviation_report....
5.54
KB
-rwxr-xr-x
report_marks_entry_student_lis...
5.37
KB
-rwxr-xr-x
report_marks_entry_subwise_lis...
10.41
KB
-rwxr-xr-x
report_practical_marks_details...
13.78
KB
-rwxr-xr-x
report_practical_marks_details...
14.41
KB
-rwxr-xr-x
report_ra_invigilators_dairy.p...
7.66
KB
-rwxr-xr-x
report_ra_qp_wise_student_coun...
5.84
KB
-rwxr-xr-x
report_ra_roomwise_register_no...
6.72
KB
-rwxr-xr-x
report_revaluation.php
6.63
KB
-rwxr-xr-x
report_subject_admcl_list.php
3.57
KB
-rwxr-xr-x
report_subject_general_list.ph...
4.22
KB
-rwxr-xr-x
subject_wise_student_list.php
6.84
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : report_admission_list.php
<?php function generateAdmissionReport($aobj_context) { session_start(); $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $college_code = $_SESSION['collcode']; //echo $college_code; $degree_code = $aobj_context->mobj_data["degree_code"]; $sub_degree_code = $aobj_context->mobj_data["sub_degree_code"]; $exam_no = $aobj_context->mobj_data["exam_no"]; $lateral_entry = $aobj_context->mobj_data["lateral_entry"]; $exam_no=empty($exam_no)?"A":$exam_no; if(empty($lateral_entry)) { $exam_no='A'; $lateral_entry_cond=" and ifnull(s.FLATERAL_ENTRY,0)='0' "; } else { $exam_no='C'; $lateral_entry_cond=" and ifnull(s.FLATERAL_ENTRY,0)='1' "; } $main_src_obj=(explode("/",$_SERVER["REQUEST_URI"])); $main_src=$main_src_obj[1]; $pdf_writer_class=$aobj_context->main_src."/maya-pdf/fpdf.php"; $tarkaheader=$aobj_context->main_src."/Report_details/tarkaheader.php"; $root_pdf_file_download=$aobj_context->main_src."/Report_details/output/report_admission_list.pdf"; // global varibales $p_count =1; // end global varibales include($pdf_writer_class); $pdf= new FPDF(); //$pdf->$title='20000 Leagues Under the Seas'; $pdf->SetFont('Times','',10); $pdf->SetMargins(14,17); $pdf->AliasNbPages(); $sub_degree_cond=""; if(!empty($sub_degree_code)) { $sub_degree_cond=" and s.FSUBDEGREE='{$sub_degree_code}'"; $page_header_sub_degree = "select concat('[',FDEGREE,'] - ', FDESCPN) as sub_degree_name, FADYEAR from degree where FDEGREE = '{$sub_degree_code}' and FEXAMNO='{$exam_no}' "; $lobj_page_header_sub_degree = $aobj_context->mobj_db->GetRow($page_header_sub_degree); } //print_r($lobj_page_header_sub_degree); die(); /* $degree_cond=" "; if(strtolower($exam_no)=='c') $degree_cond=" s.FSUBDEGREE='{$degree_code}' "; */ // 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); $page_header_degree = "select concat('[',FDEGREE,'] - ', FDESCPN,', ',FEXAMNAME) as Degree_name, FADYEAR from degree where FDEGREE = '{$degree_code}' and FEXAMNO='{$exam_no}' "; $lobj_page_header_degree = $aobj_context->mobj_db->GetRow($page_header_degree); //echo $page_header_degree; die(); $pdf->aobj_context =$aobj_context ; $pdf->WhichReport = 'Admission'; $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->Degree_name = $lobj_page_header_degree['Degree_name']; $pdf->sub_degree_code = $lobj_page_header_sub_degree['sub_degree_name']; $pdf->AdmissionYear = $lobj_page_header_degree['FADYEAR']; //echo $pdf->sub_degree_code; die(); //end header $pdf->AddPage(); //$pdf->Ln(); $pdf->SetFont('Times','',10); //and sub.FDEGREE=op.FDEGREE $get_student_data= " select concat(if(ifNULL(s.FDELETED, 'F')='F', s.FSLNO, concat('*',s.FSLNO))) as SLNO, SUBSTRING(s.FNAME,1,25) as FNAME, SUBSTRING(s.FNAME,26) as SNAME, group_concat(distinct sub.FSUBCODE order by sub.FSUBCODE separator ' ' ) as SCode, concat('Gen. : ',if(s.Fgender='F','Female','Male')) as Gender, group_concat(distinct sub.FSUBSHORT order by sub.FSUBCODE separator ' ' ) as SShort, concat('DOB: ',Date_Format(s.FDOB,'%d/%m/%Y')) as DOB, concat('Father : ',s.FFATNAME) as Father , concat('Grp. : ',s.FCASTE) as CASTE, concat('Mother : ',s.FMOTNAME) as Mother from studadm s inner join options op on s.FSLNO=op.FSLNO and s.FDEGREE=op.FDEGREE and s.FCOLLCODE=op.FCOLLCODE inner join subject sub on sub.FSUBCODE=op.FSUBCODE where s.FDEGREE='{$degree_code}' {$sub_degree_cond} and if(ifnull(s.FSUBDEGREE,'')='',s.FDEGREE,s.FSUBDEGREE)=sub.FDEGREE and s.FCOLLCODE='{$college_code}' and sub.FEXAMNO='{$exam_no}' and sub.FEXAMNO=op.FEXAMNO {$lateral_entry_cond} group by s.FCOLLCODE,s.FDEGREE,s.FSLNO order by s.FSLNO "; // echo "<pre>".$get_student_data;die(); $lobj_student_data = $aobj_context->mobj_db->GetAll($get_student_data); $arr_w = array(10,65,70,108); $arr_h = array(); $adm_ln_counter=0; foreach($lobj_student_data as $key => $value) { if($adm_ln_counter > 43) { $pdf->AddPage(); $adm_ln_counter=0; } if(!empty($value['SNAME'])) { $pdf->Cell($arr_w[0],5,$value['SLNO'],'L',0,'L'); $pdf->Cell($arr_w[1],5,$value['FNAME'],'0',0,'L'); $pdf->Cell(108,4,$value['SCode'],'R',1,'L'); $adm_ln_counter++; $pdf->Cell($arr_w[0],5,' ','L',0,'L'); $pdf->Cell($arr_w[1],5,$value['SNAME'],'0',0,'L'); $pdf->Cell(108,4,$value['SShort'],'R',1,'L'); $adm_ln_counter++; $pdf->Cell($arr_w[0],5,' ','L','L'); $pdf->Cell($arr_w[1],5,$value['Gender'],'0',0,'L'); $pdf->Cell(108,4,$value['Father'],'R',1,'L'); $adm_ln_counter++; $pdf->Cell($arr_w[0],5,' ','L',0,'L'); $pdf->Cell($arr_w[1],5,$value['DOB'],'0',0,'L'); $pdf->Cell(108,4,$value['Mother'],'R',1,'L'); $adm_ln_counter++; $pdf->Cell($arr_w[0],5,' ','LB',0,'L'); $pdf->Cell($arr_w[1],5,$value['CASTE'],'B',0,'L'); $pdf->Cell(108,5,'','RB',1,'L'); $adm_ln_counter++; } else if(empty($value['SNAME'])) { $pdf->Cell($arr_w[0],5,$value['SLNO'],'L',0,'L'); $pdf->Cell($arr_w[1],5,$value['FNAME'],'0',0,'L'); $pdf->Cell(108,5,$value['SCode'],'R',1,'L'); $adm_ln_counter++; $pdf->Cell($arr_w[0],5,' ','L',0,'L'); $pdf->Cell($arr_w[1],5,$value['Gender'],'0',0,'L'); //$pdf->SetFont('Times','',6); $pdf->Cell(108,5,$value['SShort'],'R',1,'L'); $adm_ln_counter++; //$pdf->SetFont('Times','',10); $pdf->Cell($arr_w[0],5,' ','L',0,'L'); $pdf->Cell($arr_w[1],5,$value['DOB'],'0',0,'L'); $pdf->Cell(108,5,$value['Father'],'R',1,'L'); $adm_ln_counter++; $pdf->Cell($arr_w[0],5,' ','LB',0,'L'); $pdf->Cell($arr_w[1],5,$value['CASTE'],'B',0,'L'); $pdf->Cell(108,5,$value['Mother'],'RB',1,'L'); $adm_ln_counter++; } } $pdf->ln(4); $pdf->MultiCell(175,5,"I here by declare that all the information furnished with regard to the students are true & correct to the best of my knowledge and belief,copy of the recognition order and affiliation order is enclosed.",0,"L"); $pdf->ln(8); $pdf->Cell(135,5,"Submit",'',1,'R'); $pdf->ln(2); $pdf->Output("report_admission_list.pdf","D"); } ?>
Close