Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.129.128.179
Cant Read [ /etc/named.conf ]
7.4.20
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 /
html /
amply /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
packages
[ DIR ]
drwxrwxr-x
routes
[ DIR ]
drwxrwxr-x
bootstrap.php
1.81
KB
-rw-rw-r--
bundles.php
902
B
-rw-rw-r--
googleda794cd9937527d01.html
26
B
-rw-r--r--
routes.yaml
78
B
-rw-rw-r--
services.yaml
1.48
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bootstrap.php
<?php use Symfony\Component\Dotenv\Dotenv; require dirname(__DIR__).'/vendor/autoload.php'; // Load cached env vars if the .env.local.php file exists // Run "composer dump-env prod" to create it (requires symfony/flex >=1.2) if (is_array($env = @include dirname(__DIR__).'/.env.local.php')) { $_SERVER += $env; $_ENV += $env; } elseif (!class_exists(Dotenv::class)) { throw new RuntimeException('Please run "composer require symfony/dotenv" to load the ".env" files configuring the application.'); } else { $path = dirname(__DIR__).'/.env'; $dotenv = new Dotenv(); // load all the .env files if (method_exists($dotenv, 'loadEnv')) { $dotenv->loadEnv($path); } else { // fallback code in case your Dotenv component is not 4.2 or higher (when loadEnv() was added) if (file_exists($path) || !file_exists($p = "$path.dist")) { $dotenv->load($path); } else { $dotenv->load($p); } if (null === $env = $_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) { $dotenv->populate(array('APP_ENV' => $env = 'dev')); } if ('test' !== $env && file_exists($p = "$path.local")) { $dotenv->load($p); $env = $_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? $env; } if (file_exists($p = "$path.$env")) { $dotenv->load($p); } if (file_exists($p = "$path.$env.local")) { $dotenv->load($p); } } } $_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) ?: 'dev'; $_SERVER['APP_DEBUG'] = $_SERVER['APP_DEBUG'] ?? $_ENV['APP_DEBUG'] ?? 'prod' !== $_SERVER['APP_ENV']; $_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int) $_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], FILTER_VALIDATE_BOOLEAN) ? '1' : '0';
Close