Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 3.142.55.180
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
nexus-groups.online /
Delete
Unzip
Name
Size
Permission
Date
Action
.phpintel
[ DIR ]
drwxr-xr-x
2024-08-25 23:07
.well-known
[ DIR ]
drwxr-xr-x
2025-04-04 18:34
__MACOSX
[ DIR ]
drwxr-xr-x
2024-08-25 23:12
app
[ DIR ]
drwxr-xr-x
2024-08-25 23:07
bootstrap
[ DIR ]
drwxr-xr-x
2025-04-22 18:35
cgi-bin
[ DIR ]
drwxr-xr-x
2025-04-04 18:28
config
[ DIR ]
drwxr-xr-x
2025-04-22 16:19
database
[ DIR ]
drwxr-xr-x
2024-08-25 23:07
public
[ DIR ]
drwxr-xr-x
2024-08-25 23:07
resources
[ DIR ]
drwxr-xr-x
2024-08-25 23:07
routes
[ DIR ]
drwxr-xr-x
2025-04-22 18:42
storage
[ DIR ]
drwxr-xr-x
2024-08-25 23:07
tests
[ DIR ]
drwxr-xr-x
2025-04-22 16:27
vendor
[ DIR ]
drwxr-xr-x
2024-08-25 23:12
.env
950
B
-rw-r--r--
2025-04-17 18:50
.htaccess
1.41
KB
-rw-r--r--
2025-04-17 19:11
NEXUS BANQ.zip
33.71
MB
-rw-r--r--
2025-04-04 19:01
artisan
1.65
KB
-rw-r--r--
2020-06-30 11:49
composer.json
1.82
KB
-rw-r--r--
2021-10-09 15:44
composer.lock
317.47
KB
-rw-r--r--
2022-02-10 20:11
index.php
1.9
KB
-rw-r--r--
2021-05-02 10:44
package.json
1.16
KB
-rw-r--r--
2020-06-30 12:06
phpunit.xml
1.17
KB
-rw-r--r--
2020-06-30 11:49
robots.txt
24
B
-rw-r--r--
2020-06-30 11:49
server.php
547
B
-rw-r--r--
2020-07-02 19:37
web.config
1.17
KB
-rw-r--r--
2020-06-30 11:49
webpack.mix.js
538
B
-rw-r--r--
2020-06-30 12:06
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);