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.147.81.172
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 : send_mail.php
<?php class send_mail { function __construct($aobj_context) { session_start(); $this->user_id = $_SESSION['user_id']; $this->user_id=empty($this->user_id)?1:$this->user_id; $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); $this->aobj_context=$aobj_context; require_once($aobj_context->main_src."/src/cmailer_new.php"); } function SendManualMail($to,$subject,$message,$replay_to=null,$cc=null,$bcc=null,$attachment_arr=null) { $body_msg= mysql_escape_string($message); $cc_arr=explode(",",$cc); $unique_mail_arr=array(); if(count($cc_arr)>0) { foreach($cc_arr as $v) { if(!empty($v) && !in_array($v,$unique_mail_arr)) { $larr_mail_cc[$cc_cnt]['email']=$v; $cc_cnt++; array_push($unique_mail_arr,$v); } } } $attachment=$attachment_arr[attachment_path]; $attachment_name=$attachment_arr[attachment_name]; $new_cc=implode($unique_mail_arr,","); $insert_qry="insert into out_box_mails(to_mail,cc_mail,SUBJECT,body,send_mail,attachment_name,attachment_path,created_by,created_date) values('{$to}','{$new_cc}','{$subject}','{$body_msg}','0','{$attachment_name}','{$attachment}',{$this->user_id},now()) "; //echo "<pre>". $insert_qry; die(); $obj_qry = $this->aobj_context->mobj_db->Execute($insert_qry); return; /* $cc_cnt=0; $to_arr=explode(",",$to); $i=0; $unique_mail_arr=array(); foreach($to_arr as $v) { if(!in_array($v,$unique_mail_arr)) { $larr_mail_to[$i]['email']=$v; $i++; array_push($unique_mail_arr,$v); } } $cc_arr=explode(",",$cc); if(count($cc_arr)>0) { foreach($cc_arr as $v) { if(!empty($v) && !in_array($v,$unique_mail_arr)) { $larr_mail_cc[$cc_cnt]['email']=$v; $cc_cnt++; array_push($unique_mail_arr,$v); } } } //$larr_mail_bcc[0]['email']="natesha.s@tarkasoft.com"; $message=str_ireplace("\n","<br>",$message); $mailer_info['subject'] =$subject ; $mailer_info['to'] = $larr_mail_to; if(count($larr_mail_cc)>0) $mailer_info['cc'] = $larr_mail_cc; $mailer_info['from']['email'] = "GEretiralsquery@ramco.com"; $mailer_info['from']['name'] = "Pf Helpdesk"; $mailer_info['body'] =$message ; if(!empty($attachment_arr)) $mailer_info['attachments'] =$attachment_arr; //echo "<pre>".print_r($mailer_info); die(); try { $obj_mailer = new CMailer($mailer_info); $cnt=($obj_mailer->send_mail()); $data="Your Meassage has been submitted,We will get back to you soon..({$cnt})"; //echo $this->aobj_context->mobj_output->ToJSONEnvelope($data,0,"success"); } catch (Exception $e) { $data="Failed to send message". $e->getMessage(); //echo $this->aobj_context->mobj_output->ToJSONEnvelope($data,-1,"failure"); } */ } } ?>
Close