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 /
car.owner /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-11-15 16:11
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
cgi-bin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
qr_codes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
samecar
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
2V3RLatL.php
445
B
-rw-r--r--
2026-02-23 13:08
INSTALLATION.txt
1.59
KB
-rw-r--r--
2025-11-15 19:41
README.md
4.67
KB
-rw-r--r--
2025-11-15 19:41
change_language.php
413
B
-rw-r--r--
2025-11-15 19:33
check_gd.php
1.71
KB
-rw-r--r--
2025-11-15 20:15
check_user.php
1.17
KB
-rw-r--r--
2025-11-15 20:04
completed_applications.php
5.79
KB
-rw-r--r--
2025-11-15 20:31
config.php
10.52
KB
-rw-r--r--
2025-11-15 15:47
dashboard.php
4.61
KB
-rw-r--r--
2025-11-15 20:31
database.sql
4.76
KB
-rw-r--r--
2025-11-15 15:46
error_log
2.12
KB
-rw-r--r--
2025-12-06 06:58
fix_qr_codes.php
2.21
KB
-rw-r--r--
2025-11-15 19:55
footer.php
2.68
KB
-rw-r--r--
2025-11-15 20:31
generate_qr.php
1.2
KB
-rw-r--r--
2025-11-15 19:37
header.php
16.38
KB
-rw-r--r--
2025-11-15 20:31
index.php
3.01
KB
-rw-r--r--
2025-11-15 20:31
login.php
4.61
KB
-rw-r--r--
2025-11-15 20:31
logout.php
85
B
-rw-r--r--
2025-11-15 19:33
new_application.php
26.13
KB
-rw-r--r--
2025-11-15 20:31
payment.php
6.09
KB
-rw-r--r--
2025-11-15 20:31
payment_history.php
4.1
KB
-rw-r--r--
2025-11-15 20:31
pending_applications.php
5.21
KB
-rw-r--r--
2025-11-15 20:31
profile.php
17.09
KB
-rw-r--r--
2025-11-15 20:31
register.php
5.87
KB
-rw-r--r--
2025-11-15 20:31
samecar.zip
71.94
MB
-rw-r--r--
2025-11-15 15:45
setup_admin.php
5.25
KB
-rw-r--r--
2025-11-15 19:48
submit_payment.php
2.36
KB
-rw-r--r--
2025-11-15 19:36
test_admin.php
1.99
KB
-rw-r--r--
2025-11-15 19:48
txets.php
4.37
KB
-rw-r--r--
2026-02-24 02:50
update_existing_applications.php
1.89
KB
-rw-r--r--
2025-11-15 20:01
view_qr.php
7.8
KB
-rw-r--r--
2025-11-15 20:31
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
yKytReRg.php
445
B
-rw-r--r--
2026-02-22 23:14
Save
Rename
<?php /** * Admin Setup Script * Run this file once to create/update admin account * Access: http://localhost/samecar/setup_admin.php * DELETE THIS FILE AFTER SETUP FOR SECURITY */ require_once 'config.php'; $message = ''; $error = ''; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $username = sanitizeInput($_POST['username'] ?? 'admin'); $password = $_POST['password'] ?? ''; if (empty($username) || empty($password)) { $error = 'Username and password are required.'; } else { $conn = getDBConnection(); $hashed_password = password_hash($password, PASSWORD_DEFAULT); $username_safe = sanitizeSQL($conn, $username); // Check if admin exists $check = $conn->query("SELECT id FROM admins WHERE username = '$username_safe'"); if ($check->num_rows > 0) { // Update existing admin $conn->query("UPDATE admins SET password = '$hashed_password' WHERE username = '$username_safe'"); $message = "Admin password updated successfully!<br>Username: $username<br>Password: (the one you entered)"; } else { // Create new admin $conn->query("INSERT INTO admins (username, password) VALUES ('$username_safe', '$hashed_password')"); $message = "Admin account created successfully!<br>Username: $username<br>Password: (the one you entered)"; } } } // Check current admin status $conn = getDBConnection(); $admin_check = $conn->query("SELECT username FROM admins WHERE username = 'admin'"); $admin_exists = $admin_check->num_rows > 0; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Admin Setup - <?php echo SITE_NAME; ?></title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <style> body { background: linear-gradient(135deg, #28a745 0%, #218838 100%); min-height: 100vh; display: flex; align-items: center; } .setup-card { box-shadow: 0 10px 30px rgba(0,0,0,0.3); } </style> </head> <body> <div class="container"> <div class="row justify-content-center"> <div class="col-md-5"> <div class="card setup-card"> <div class="card-header bg-success text-white text-center"> <h3 class="mb-0"><i class="bi bi-shield-lock"></i> Admin Setup</h3> </div> <div class="card-body p-4"> <?php if ($error): ?> <div class="alert alert-danger"><?php echo $error; ?></div> <?php endif; ?> <?php if ($message): ?> <div class="alert alert-success"><?php echo $message; ?></div> <div class="alert alert-warning"> <strong>Security Warning:</strong> Delete this file (setup_admin.php) after setup! </div> <?php else: ?> <?php if ($admin_exists): ?> <div class="alert alert-info"> Admin account exists. You can update the password below. </div> <?php else: ?> <div class="alert alert-warning"> No admin account found. Create one below. </div> <?php endif; ?> <form method="POST" action=""> <div class="mb-3"> <label for="username" class="form-label">Username</label> <input type="text" class="form-control" id="username" name="username" value="admin" required> </div> <div class="mb-3"> <label for="password" class="form-label">Password</label> <input type="password" class="form-control" id="password" name="password" required> <small class="text-muted">Enter new password (minimum 6 characters)</small> </div> <button type="submit" class="btn btn-success w-100"> <?php echo $admin_exists ? 'Update Password' : 'Create Admin'; ?> </button> </form> <div class="mt-3 text-center"> <a href="admin/login.php" class="text-muted">Go to Admin Login</a> </div> <?php endif; ?> </div> </div> </div> </div> </div> </body> </html>