Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 3.145.37.251 | Time @ Server : 19 Oct 2024 07:10:15
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/magento/framework/App/ObjectManager/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/App/ObjectManager/ConfigCache.php

<?php /** * Object manager configuration cache * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\App\ObjectManager; use Magento\Framework\Serialize\SerializerInterface; use Magento\Framework\Serialize\Serializer\Serialize; class ConfigCache implements \Magento\Framework\ObjectManager\ConfigCacheInterface { /** * @var \Magento\Framework\Cache\FrontendInterface */ protected $_cacheFrontend; /** * Cache prefix * * @var string */ protected $_prefix = 'diConfig'; /** * @var SerializerInterface */ private $serializer; /** * @param \Magento\Framework\Cache\FrontendInterface $cacheFrontend */ public function __construct(\Magento\Framework\Cache\FrontendInterface $cacheFrontend) { $this->_cacheFrontend = $cacheFrontend; } /** * Retrieve configuration from cache * * @param string $key * @return array|false */ public function get($key) { $data = $this->_cacheFrontend->load($this->_prefix . $key); if (!$data) { return false; } return $this->getSerializer()->unserialize($data); } /** * Save config to cache * * @param array $config * @param string $key * @return void */ public function save(array $config, $key) { $this->_cacheFrontend->save($this->getSerializer()->serialize($config), $this->_prefix . $key); } /** * Get serializer * * @return SerializerInterface * @deprecated 101.0.0 */ private function getSerializer() { if (null === $this->serializer) { $this->serializer = \Magento\Framework\App\ObjectManager::getInstance()->get(Serialize::class); } return $this->serializer; } }