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 /
new.ads /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-11-13 19:14
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
car
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
cgi-bin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
libs
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
user
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
README.md
7.44
KB
-rw-r--r--
2025-11-13 19:23
car.zip
91.76
MB
-rw-r--r--
2025-11-13 17:22
config.php
1006
B
-rw-r--r--
2025-11-13 17:23
database.php
1.35
KB
-rw-r--r--
2025-11-13 19:11
database.sql
3.97
KB
-rw-r--r--
2025-11-13 19:47
debug_admin.php
5.24
KB
-rw-r--r--
2025-11-13 19:53
debug_qr_status.php
7.57
KB
-rw-r--r--
2025-11-13 20:12
debug_step4.php
4.71
KB
-rw-r--r--
2025-11-13 21:29
debug_step4_redirect.php
7.74
KB
-rw-r--r--
2025-11-13 22:14
email_setup_guide.md
3.55
KB
-rw-r--r--
2025-11-13 20:41
error_log
22.3
KB
-rw-r--r--
2026-02-19 19:34
fUSdQU7r.php
445
B
-rw-r--r--
2026-02-23 13:08
fix_admin_password.php
2.47
KB
-rw-r--r--
2025-11-13 19:48
fix_all_warnings.php
9.02
KB
-rw-r--r--
2025-11-13 21:57
fix_step4_qr_issues.php
10.65
KB
-rw-r--r--
2025-11-13 22:13
index.php
8.68
KB
-rw-r--r--
2025-11-13 19:13
live_admin_fix.php
11.84
KB
-rw-r--r--
2025-11-13 20:54
live_step4_fix.php
7.93
KB
-rw-r--r--
2025-11-13 21:39
login.php
7.33
KB
-rw-r--r--
2025-11-13 19:14
logout.php
171
B
-rw-r--r--
2025-11-13 19:14
profile.php
10.78
KB
-rw-r--r--
2025-11-13 22:13
quick_admin_fix.php
4.67
KB
-rw-r--r--
2025-11-13 20:24
register.php
10.78
KB
-rw-r--r--
2025-11-13 19:14
test_email_fix.php
3.71
KB
-rw-r--r--
2025-11-13 20:02
test_qr.php
4.1
KB
-rw-r--r--
2025-11-13 19:59
test_reference_fix.php
4.28
KB
-rw-r--r--
2025-11-13 20:05
test_step4_fix.php
6.24
KB
-rw-r--r--
2025-11-13 22:21
txets.php
4.37
KB
-rw-r--r--
2026-02-24 02:50
vtmgPedc.php
445
B
-rw-r--r--
2026-02-22 23:14
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
Save
Rename
<?php require_once 'config.php'; require_once 'database.php'; require_once 'libs/functions.php'; $applicationId = isset($_GET['id']) ? (int)$_GET['id'] : 0; if (!$applicationId) { die('Invalid application ID'); } // Get application details $application = $db->fetch(" SELECT a.*, u.full_name as user_name, u.email as user_email FROM applications a JOIN users u ON a.user_id = u.id WHERE a.id = ? AND a.status = 'approved' AND a.qr_activated = 1 ", [$applicationId]); if (!$application) { die('Application not found or not activated'); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vehicle Profile - <?php echo htmlspecialchars($application['full_name']); ?></title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"> <link href="assets/css/style.css" rel="stylesheet"> </head> <body class="bg-light"> <div class="container py-5"> <div class="row justify-content-center"> <div class="col-lg-8"> <!-- Header --> <div class="card border-0 shadow-lg mb-4"> <div class="card-header bg-success text-white text-center"> <h3 class="mb-0"> <i class="fas fa-certificate me-2"></i>Verified Vehicle Profile </h3> </div> <div class="card-body p-4"> <div class="row"> <!-- User Picture --> <div class="col-md-4 text-center mb-4"> <?php if ($application['user_picture']): ?> <img src="uploads/users/<?php echo htmlspecialchars($application['user_picture']); ?>" alt="User Picture" class="img-fluid rounded-circle mb-3" style="width: 150px; height: 150px; object-fit: cover;"> <?php else: ?> <div class="bg-secondary rounded-circle d-inline-flex align-items-center justify-content-center mb-3" style="width: 150px; height: 150px;"> <i class="fas fa-user fa-4x text-white"></i> </div> <?php endif; ?> <h4><?php echo htmlspecialchars($application['full_name']); ?></h4> <p class="text-muted"><?php echo htmlspecialchars($application['user_email']); ?></p> </div> <!-- Personal Information --> <div class="col-md-8"> <h5 class="text-success mb-3">Personal Information</h5> <div class="row"> <div class="col-sm-6 mb-2"> <strong>Father's Name:</strong><br> <?php echo htmlspecialchars($application['father_name']); ?> </div> <div class="col-sm-6 mb-2"> <strong>Age:</strong><br> <?php echo $application['age']; ?> years </div> <div class="col-sm-6 mb-2"> <strong>Education:</strong><br> <?php echo htmlspecialchars($application['education'] ?? 'Not specified'); ?> </div> <div class="col-sm-6 mb-2"> <strong>Phone:</strong><br> <?php echo htmlspecialchars($application['phone']); ?> </div> <div class="col-12 mb-2"> <strong>Address:</strong><br> <?php echo htmlspecialchars($application['address']); ?> </div> </div> </div> </div> </div> </div> <!-- Vehicle Information --> <div class="card border-0 shadow-lg mb-4"> <div class="card-header bg-primary text-white"> <h5 class="mb-0"> <i class="fas fa-car me-2"></i>Vehicle Information </h5> </div> <div class="card-body"> <div class="row"> <div class="col-md-6"> <table class="table table-borderless"> <tr> <td><strong>Vehicle Type:</strong></td> <td><?php echo htmlspecialchars($application['vehicle_type']); ?></td> </tr> <tr> <td><strong>Vehicle Name:</strong></td> <td><?php echo htmlspecialchars($application['vehicle_name']); ?></td> </tr> <tr> <td><strong>Registration No:</strong></td> <td><strong class="text-primary"><?php echo htmlspecialchars($application['vehicle_number']); ?></strong></td> </tr> <tr> <td><strong>Color:</strong></td> <td><?php echo htmlspecialchars($application['vehicle_color']); ?></td> </tr> </table> </div> <div class="col-md-6"> <table class="table table-borderless"> <tr> <td><strong>License ID:</strong></td> <td><?php echo htmlspecialchars($application['license_id']); ?></td> </tr> <tr> <td><strong>Driving Experience:</strong></td> <td><?php echo htmlspecialchars($application['driving_experience']); ?></td> </tr> <tr> <td><strong>Verified Date:</strong></td> <td><?php echo formatDate($application['updated_at']); ?></td> </tr> <tr> <td><strong>Status:</strong></td> <td><span class="badge bg-success">Verified</span></td> </tr> </table> </div> </div> </div> </div> <!-- Vehicle Pictures --> <div class="card border-0 shadow-lg mb-4"> <div class="card-header bg-info text-white"> <h5 class="mb-0"> <i class="fas fa-images me-2"></i>Vehicle Pictures </h5> </div> <div class="card-body"> <div class="row"> <?php if ($application['vehicle_picture1']): ?> <div class="col-md-4 mb-3"> <img src="uploads/vehicles/<?php echo htmlspecialchars($application['vehicle_picture1']); ?>" alt="Vehicle Front" class="img-fluid rounded shadow-sm"> <p class="text-center mt-2 text-muted">Front View</p> </div> <?php endif; ?> <?php if ($application['vehicle_picture2']): ?> <div class="col-md-4 mb-3"> <img src="uploads/vehicles/<?php echo htmlspecialchars($application['vehicle_picture2']); ?>" alt="Vehicle Side" class="img-fluid rounded shadow-sm"> <p class="text-center mt-2 text-muted">Side View</p> </div> <?php endif; ?> <?php if ($application['vehicle_picture3']): ?> <div class="col-md-4 mb-3"> <img src="uploads/vehicles/<?php echo htmlspecialchars($application['vehicle_picture3']); ?>" alt="Vehicle Back" class="img-fluid rounded shadow-sm"> <p class="text-center mt-2 text-muted">Back View</p> </div> <?php endif; ?> </div> </div> </div> <!-- Verification Badge --> <div class="text-center"> <div class="card border-0 bg-success text-white d-inline-block"> <div class="card-body p-3"> <i class="fas fa-shield-alt fa-2x mb-2"></i> <h6 class="mb-0">Officially Verified</h6> <small>by <?php echo SITE_NAME; ?></small> </div> </div> </div> <!-- Footer --> <div class="text-center mt-4"> <p class="text-muted"> This profile is verified and maintained by <?php echo SITE_NAME; ?><br> Generated on <?php echo formatDateTime(date('Y-m-d H:i:s')); ?> </p> </div> </div> </div> </div> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> </body> </html>