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 : 18.217.183.10 | Time @ Server : 19 Oct 2024 06:23:59
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Config\File; /** * Stores file key to file name config * @api * @since 100.0.2 */ class ConfigFilePool { const APP_CONFIG = 'app_config'; const APP_ENV = 'app_env'; /** * @deprecated Magento does not support custom config file pools since 2.2.0 version */ const LOCAL = 'local'; /** * @deprecated Magento does not support custom config file pools since 2.2.0 version */ const DIST = 'dist'; /** * Default files for configuration * * @var array */ private $applicationConfigFiles = [ self::APP_CONFIG => 'config.php', self::APP_ENV => 'env.php', ]; /** * Initial files for configuration * * @var array * @deprecated 101.0.0 Magento does not support custom config file pools since 2.2.0 version */ private $initialConfigFiles = [ self::DIST => [ self::APP_CONFIG => 'config.dist.php', self::APP_ENV => 'env.dist.php', ], self::LOCAL => [ self::APP_CONFIG => 'config.local.php', self::APP_ENV => 'env.local.php', ] ]; /** * Constructor * * @param array $additionalConfigFiles */ public function __construct($additionalConfigFiles = []) { $this->applicationConfigFiles = array_merge($this->applicationConfigFiles, $additionalConfigFiles); } /** * Returns application config files. * * @return array */ public function getPaths() { return $this->applicationConfigFiles; } /** * Returns file path by config key * * @param string $fileKey * @return string * @throws \Exception */ public function getPath($fileKey) { if (!isset($this->applicationConfigFiles[$fileKey])) { throw new \Exception('File config key does not exist.'); } return $this->applicationConfigFiles[$fileKey]; } /** * Returns application initial config files. * * @return array * @deprecated 101.0.0 Magento does not support custom config file pools since 2.2.0 version * @since 100.1.3 */ public function getInitialFilePools() { return $this->initialConfigFiles; } /** * Retrieve all config file pools. * * @param string $pool * @return array * @deprecated 101.0.0 Magento does not support custom config file pools since 2.2.0 version * @since 100.1.3 */ public function getPathsByPool($pool) { return $this->initialConfigFiles[$pool]; } }