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

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Api; use Magento\Framework\Api\Data\ImageContentInterface; /** * Image Content data object * * @codeCoverageIgnore */ class ImageContent extends AbstractSimpleObject implements ImageContentInterface { /** * {@inheritdoc} * * @return string */ public function getBase64EncodedData() { return $this->_get(self::BASE64_ENCODED_DATA); } /** * {@inheritdoc} * * @return string */ public function getType() { return $this->_get(self::TYPE); } /** * {@inheritdoc} * * @return string */ public function getName() { return $this->_get(self::NAME); } /** * {@inheritdoc} * * @param string $data * @return $this */ public function setBase64EncodedData($data) { return $this->setData(self::BASE64_ENCODED_DATA, $data); } /** * {@inheritdoc} * * @param string $mimeType * @return $this */ public function setType($mimeType) { return $this->setData(self::TYPE, $mimeType); } /** * {@inheritdoc} * * @param string $name * @return $this */ public function setName($name) { return $this->setData(self::NAME, $name); } }