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

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

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

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/Data/Tree/NodeFactory.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Data\Tree; use Magento\Framework\ObjectManagerInterface; /** * Factory class for @see \Magento\Framework\Data\Tree\Node */ class NodeFactory { /** * Object Manager instance * * @var ObjectManagerInterface */ protected $objectManager; /** * Instance name to create * * @var string */ protected $instanceName; /** * Factory constructor * * @param ObjectManagerInterface $objectManager * @param string $instanceName */ public function __construct( ObjectManagerInterface $objectManager, $instanceName = \Magento\Framework\Data\Tree\Node::class ) { $this->objectManager = $objectManager; $this->instanceName = $instanceName; } /** * Create class instance with specified parameters * * @param array $data * @return \Magento\Framework\Data\Tree\Node */ public function create(array $data = []) { return $this->objectManager->create($this->instanceName, $data); } }