Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 23 Aug 2025 23:38:32
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/Validator/Entity/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Validator/Entity/Properties.php

<?php /** * Validates properties of entity (\Magento\Framework\DataObject). * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Validator\Entity; use Magento\Framework\DataObject; use Magento\Framework\Model\AbstractModel; class Properties extends \Magento\Framework\Validator\AbstractValidator { /** * @var string[] */ protected $_readOnlyProperties = []; /** * Set read-only properties. * * @param string[] $readOnlyProperties * @return void */ public function setReadOnlyProperties(array $readOnlyProperties) { $this->_readOnlyProperties = $readOnlyProperties; } /** * Successful if $value is \Magento\Framework\Model\AbstractModel an all condition are fulfilled. * * If read-only properties are set than $value mustn't have changes in them. * * @param AbstractModel $value * @return bool * @throws \InvalidArgumentException when $value is not instanceof \Magento\Framework\DataObject * @api */ public function isValid($value) { $this->_clearMessages(); if (!$value instanceof AbstractModel) { throw new \InvalidArgumentException('Instance of \Magento\Framework\Model\AbstractModel is expected.'); } if ($this->_readOnlyProperties) { if (!$value->hasDataChanges()) { return true; } foreach ($this->_readOnlyProperties as $property) { if ($this->_hasChanges($value->getData($property), $value->getOrigData($property))) { $this->_messages[__CLASS__] = [ (string)new \Magento\Framework\Phrase("Read-only property cannot be changed.") ]; break; } } } return !count($this->_messages); } /** * Compare two values as numbers and as other types * * @param mixed $firstValue * @param mixed $secondValue * @return bool */ protected function _hasChanges($firstValue, $secondValue) { if ($firstValue === $secondValue || $firstValue == $secondValue && is_numeric( $firstValue ) && is_numeric( $secondValue ) ) { return false; } return true; } }