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 /
pilasa /
Delete
Unzip
Name
Size
Permission
Date
Action
app
[ DIR ]
drwxr-xr-x
2026-06-09 22:30
assets
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
bootstrap
[ DIR ]
drwxr-xr-x
2026-06-09 20:33
config
[ DIR ]
drwxr-xr-x
2026-06-01 22:59
database
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
lang
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
public
[ DIR ]
drwxr-xr-x
2026-06-10 02:27
resources
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
routes
[ DIR ]
drwxr-xr-x
2026-06-01 23:00
storage
[ DIR ]
drwxr-xr-x
2026-06-01 03:28
tests
[ DIR ]
drwxr-xr-x
2026-06-01 23:01
vendor
[ DIR ]
drwxr-xr-x
2026-06-09 20:33
.editorconfig
258
B
-rw-r--r--
2024-02-19 06:31
.env
1.17
KB
-rw-r--r--
2024-12-20 20:27
.env.example
1.04
KB
-rw-r--r--
2024-02-19 06:31
.gitattributes
179
B
-rw-r--r--
2024-02-19 06:31
.gitignore
227
B
-rw-r--r--
2024-02-19 06:31
.htaccess
237
B
-r-xr-xr-x
2026-06-11 02:58
README.md
4.06
KB
-rw-r--r--
2024-02-19 06:31
artisan
1.65
KB
-rw-r--r--
2024-02-19 06:31
composer.json
2
KB
-rw-r--r--
2024-02-19 06:31
composer.lock
395.04
KB
-rw-r--r--
2024-02-19 06:31
package.json
286
B
-rw-r--r--
2024-02-19 06:31
phpunit.xml
1.15
KB
-rw-r--r--
2024-02-19 06:31
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);