Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.227.111.102
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
Delete
Unzip
Name
Size
Permission
Date
Action
.git
[ DIR ]
drwxr-xr-x
2023-05-04 06:00
app
[ DIR ]
drwxr-xr-x
2021-04-11 14:35
bootstrap
[ DIR ]
drwxr-xr-x
2018-12-04 21:08
cer
[ DIR ]
drwxr-xr-x
2023-02-06 06:46
cer2
[ DIR ]
drwxr-xr-x
2023-02-11 19:28
config
[ DIR ]
drwxr-xr-x
2021-11-23 09:14
database
[ DIR ]
drwxr-xr-x
2018-12-04 21:08
node_modules
[ DIR ]
drwxr-xr-x
2022-01-26 16:53
public
[ DIR ]
drwxr-xr-x
2025-04-05 18:13
resources
[ DIR ]
drwxr-xr-x
2018-12-04 21:08
routes
[ DIR ]
drwxr-xr-x
2018-12-04 21:08
storage
[ DIR ]
drwxr-xr-x
2018-12-04 21:08
tests
[ DIR ]
drwxr-xr-x
2018-12-04 21:08
vendor
[ DIR ]
drwxr-xr-x
2023-02-01 11:35
.editorconfig
213
B
-rw-r--r--
2021-02-09 19:47
.env
749
B
-rw-r--r--
2023-05-02 19:23
.env.example
682
B
-rw-r--r--
2021-02-09 19:47
.gitattributes
111
B
-rw-r--r--
2021-02-09 19:47
.gitignore
168
B
-rw-r--r--
2021-03-24 16:16
README.md
754
B
-rw-r--r--
2021-03-23 14:08
artisan
1.65
KB
-rwxr-xr-x
2021-02-09 19:47
composer.json
1.92
KB
-rw-rw-r--
2023-02-01 11:35
composer.lock
243.47
KB
-rw-rw-r--
2023-02-01 11:35
db.sql
82.14
MB
-rw-r--r--
2023-05-04 06:02
package-lock.json
21.42
KB
-rw-r--r--
2022-01-26 16:53
package.json
1.18
KB
-rw-r--r--
2022-01-26 16:53
phpunit.xml
1.11
KB
-rw-r--r--
2021-02-09 19:47
server.php
563
B
-rw-r--r--
2021-02-09 19:47
webpack.mix.js
537
B
-rw-r--r--
2021-02-09 19:47
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 our classes "manually". Feels 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);