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.190.239.189
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 /
sjbitapi /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
apitest.php
1.61
KB
-rw-r--r--
caccesscontext.php
1.28
KB
-rwxr-xr-x
cappcontext.php
2.71
KB
-rwxr-xr-x
coutput.php
1.84
KB
-rwxr-xr-x
crequestbroker.php
2.49
KB
-rwxr-xr-x
csessions.php
548
B
-rwxr-xr-x
cuser.php
3.53
KB
-rwxr-xr-x
downloadStudHalltiket.php
2.47
KB
-rw-r--r--
downloadStudPhoto.php
416
B
-rw-r--r--
genToken.php
717
B
-rw-r--r--
getAttDet.php
3.95
KB
-rwxr-xr-x
json.php
34.52
KB
-rwxr-xr-x
mregistry.php
1.1
KB
-rwxr-xr-x
profile.php
938
B
-rwxr-xr-x
sduvaldata.php
2.55
KB
-rw-r--r--
studentExamFee.php
3.83
KB
-rw-r--r--
studentResults.php
5.08
KB
-rw-r--r--
studentia.php
8.14
KB
-rw-r--r--
studentprofile.php
6.86
KB
-rw-r--r--
studentsubject.php
5.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : profile.php
<?php function getProfileDet($aobj_context) { $data_json = file_get_contents("php://input"); $data = json_decode($data_json,true); if($_SERVER['PHP_AUTH_USER'] == 'revaapiuser' && $_SERVER['PHP_AUTH_PW'] == 'reva@124') { }else { $arry='Unauthorized User'; echo $aobj_context->mobj_output->ToJSONEnvelope($arry,-1,"Failure"); return; } $regno = $data['regno']; if($regno == '') { $arry='Enter Register No.'; echo $aobj_context->mobj_output->ToJSONEnvelope($arry,-1,"Failure"); return; } $query = "select fname as name, ffatname as fatname, fmotname as motname from student where fregno = '{$regno}'"; $res = $aobj_context->mobj_db->GetRow($query); if($res) { $arry['studDet'] = $res; echo $aobj_context->mobj_output->ToJSONEnvelope($arry,0,"success"); return; }else { $arry['msg']='Invalid Register'; echo $aobj_context->mobj_output->ToJSONEnvelope($arry,-1,"Failure"); return; } } ?>
Close