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

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

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

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/Module/Setup/MigrationData.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Module\Setup; /** * Replace patterns needed for migration process between Magento versions * @SuppressWarnings(PHPMD.ExcessiveParameterList) * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class MigrationData { /** * List of required params * * @var string[] */ protected $_requiredParams = ['plain', 'wiki', 'xml', 'serialized']; /** * List of replace patterns * * @var string[] */ protected $_patterns = []; /** * @param array $data * @throws \InvalidArgumentException */ public function __construct( array $data ) { foreach ($this->_requiredParams as $param) { if (!isset($data[$param])) { throw new \InvalidArgumentException("Missing required param " . $param); } $this->_patterns[$param] = $data[$param]; } } /** * Get replace pattern * * @return string */ public function getPlainFindPattern() { return $this->_patterns['plain']; } /** * Get replace pattern * * @return string */ public function getWikiFindPattern() { return $this->_patterns['wiki']; } /** * Get replace pattern * * @return string */ public function getXmlFindPattern() { return $this->_patterns['xml']; } /** * Get replace pattern * * @return string */ public function getSerializedFindPattern() { return $this->_patterns['serialized']; } }