Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.222.121.50
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
lionsclub /
core /
storage /
framework /
[ HOME SHELL ]
Name
Size
Permission
Action
cache
[ DIR ]
drwxrwxrwx
sessions
[ DIR ]
drwxrwxrwx
testing
[ DIR ]
drwxrwxrwx
views
[ DIR ]
drwxrwxrwx
.DS_Store
18
KB
-rwxrwxrwx
.editorconfig
220
B
-rw-r--r--
.env
1.48
KB
-rw-r--r--
.env.example
782
B
-rw-r--r--
.gitattributes
111
B
-rw-r--r--
.gitignore
119
B
-rwxrwxrwx
.htaccess
240
B
-rw-r--r--
.styleci-20250224012800.yml
174
B
-rw-r--r--
.styleci.yml
174
B
-rw-r--r--
-20250224043740.gitattributes
111
B
-rw-r--r--
-20250224050934.editorconfig
220
B
-rw-r--r--
-20250224080507.DS_Store
18
KB
-rw-r--r--
-20250224080520.env
1.48
KB
-rw-r--r--
-20250224081222.env
1.48
KB
-rw-r--r--
165e3e1b1a06d3d10ed80592d8db6f...
14.09
KB
-rw-r--r--
667429198dbf630d8ff5259194d3f8...
17.63
KB
-rw-r--r--
HEAD
21
B
-rw-r--r--
README-20250224040521.md
9.77
KB
-rw-r--r--
README-20250224105211.md
9.77
KB
-rw-r--r--
README.md
9.77
KB
-rw-r--r--
TestCase.php
163
B
-rw-r--r--
_installed
66
B
-rw-r--r--
afb0cb507ec0a672e7308f272d1c33...
6.13
KB
-rw-r--r--
app.php
1.58
KB
-rw-r--r--
artisan
1.65
KB
-rw-r--r--
captcha.php
154
B
-rw-r--r--
composer.json
1.96
KB
-rw-r--r--
geoip.php
4.78
KB
-rw-r--r--
installed
66
B
-rw-r--r--
output_file-20250224060901.sql
3.55
MB
-rw-r--r--
output_file-20250224081852.sql
3.55
MB
-rw-r--r--
output_file.sql
3.55
MB
-rw-r--r--
package-lock-20250224083300.js...
469.75
KB
-rw-r--r--
package-lock.json
469.75
KB
-rw-r--r--
package.json
1.1
KB
-rw-r--r--
phpunit.xml
1.17
KB
-rw-r--r--
server.php
563
B
-rw-r--r--
session.php
6.88
KB
-rw-r--r--
tailwind.config-20250224040153...
454
B
-rw-r--r--
tailwind.config-20250224040153...
454
B
-rw-r--r--
tailwind.config-20250224082221...
454
B
-rw-r--r--
tailwind.config.js
454
B
-rw-r--r--
webpack.mix.js
598
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : app.php
<?php /* |-------------------------------------------------------------------------- | Create The Application |-------------------------------------------------------------------------- | | The first thing we will do is create a new Laravel application instance | which serves as the "glue" for all the components of Laravel, and is | the IoC container for the system binding all of the various parts. | */ $app = new Illuminate\Foundation\Application( $_ENV['APP_BASE_PATH'] ?? dirname(__DIR__) ); /* |-------------------------------------------------------------------------- | Bind Important Interfaces |-------------------------------------------------------------------------- | | Next, we need to bind some important interfaces into the container so | we will be able to resolve them when needed. The kernels serve the | incoming requests to this application from both the web and CLI. | */ $app->singleton( Illuminate\Contracts\Http\Kernel::class, App\Http\Kernel::class ); $app->singleton( Illuminate\Contracts\Console\Kernel::class, App\Console\Kernel::class ); $app->singleton( Illuminate\Contracts\Debug\ExceptionHandler::class, App\Exceptions\Handler::class ); /* |-------------------------------------------------------------------------- | Return The Application |-------------------------------------------------------------------------- | | This script returns the application instance. The instance is given to | the calling script so we can separate the building of the instances | from the actual running of the application and sending responses. | */ return $app;
Close