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.227.134.165
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 /
pget /
pgetadm /
[ HOME SHELL ]
Name
Size
Permission
Action
add-course.php
5.89
KB
-rwxr-xr-x
admissionorderPGReport.php
15.81
KB
-rwxr-xr-x
app-status.php
1.7
KB
-rwxr-xr-x
applicationFormPGReport.php
43.09
KB
-rwxr-xr-x
category.php
2.26
KB
-rwxr-xr-x
degree.php
10.25
KB
-rwxr-xr-x
direct-signin.php
908
B
-rwxr-xr-x
feestr.php
2.09
KB
-rwxr-xr-x
forgot-password.php
2.82
KB
-rwxr-xr-x
getSavedData.php
5.99
KB
-rwxr-xr-x
getSavedData_old_12102019.php
5
KB
-rwxr-xr-x
hallticket.php
7.61
KB
-rwxr-xr-x
login.php
644
B
-rwxr-xr-x
logout.php
44
B
-rwxr-xr-x
option-entry.php
2.44
KB
-rwxr-xr-x
printadmissionorder.php
616
B
-rwxr-xr-x
regallot.php
1.32
KB
-rwxr-xr-x
reprint.php
707
B
-rwxr-xr-x
resetpassword.php
700
B
-rwxr-xr-x
saveApplication.php
21.39
KB
-rwxr-xr-x
saveApplication_old_12102019.p...
14.67
KB
-rwxr-xr-x
seat-allot.php
1014
B
-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
998
B
-rwxr-xr-x
signup.php
1.01
KB
-rwxr-xr-x
validateRegno.php
2.08
KB
-rwxr-xr-x
vkuapplicationFormPGReport.php
33.52
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : app-status.php
<?php function getAppStatus($aobj_context) { session_start(); $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $query = "select fname, fmobileno, fappno,IFNULL(fpaystatus, 'PENDING') as fpaystatus, fpaydate, IFNULL(fpayid, 'PENDING') as fpayid FROM entstudadm where fmobileno = '{$_SESSION['MOBILE']}'"; $obj = $aobj_context->mobj_db->GetAll($query); $result =""; $result->obj1 = $obj; $result->obj2 = DisplayAppStatus($aobj_context); if(count($obj) > 0) { echo $aobj_context->mobj_output->ToJSONEnvelope($result,0,"success"); } else { $arr['msg'] = 'Error in fetching Application Details.'; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"failure"); } return; } function DisplayAppStatus($aobj_context) { session_start(); $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $query = "select fname, fmobileno, fappno, fpaystatus, fcreatedate, IFNULL(fpayid, ' ') as fpayid FROM entstudadm where fmobileno = '{$_SESSION['MOBILE']}'"; $result = $aobj_context->mobj_db->GetAll($query); $fappno = $result[0]['fappno']; $query = "select distinct ed.fdegree as degcode,CONCAT (ed.fdegree, ' - ', d.fdescpn) as fdegree, IFNULL(ed.fstatus, ' ') as fstatus FROM entoptdeg ed inner join entdeg d on ed.fdegree=d.fdegree where ed.fappno='{$fappno}' and ifnull(d.fdeleted,'') <> 'T'"; $obj = $aobj_context->mobj_db->GetAll($query); if(count($obj) > 0) { return $obj; //return $aobj_context->mobj_output->ToJSONEnvelope($obj,0,"success"); } else { $arr['msg'] = 'Error in fetching Application Status.'; echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"failure"); } return; }
Close