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.139.237.82 | Time @ Server : 19 Oct 2024 05:39:35
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/magento/framework/Session/

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

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/Session/Storage.php

<?php /** * Default session storage * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Session; class Storage extends \Magento\Framework\DataObject implements StorageInterface { /** * Namespace of storage * * @var string */ protected $namespace; /** * Constructor * * @param string $namespace * @param array $data */ public function __construct($namespace = 'default', array $data = []) { $this->namespace = $namespace; parent::__construct($data); } /** * {@inheritdoc} */ public function init(array $data) { $namespace = $this->getNamespace(); if (isset($data[$namespace])) { $this->setData($data[$namespace]); } $_SESSION[$namespace] = & $this->_data; } /** * {@inheritdoc} */ public function getNamespace() { return $this->namespace; } /** * Additional get data with clear mode * * @param string $key * @param bool $clear * @return mixed */ public function getData($key = '', $clear = false) { $data = parent::getData($key); if ($clear && isset($this->_data[$key])) { unset($this->_data[$key]); } return $data; } }