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 20:11:01
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Locale/Currency.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Locale; class Currency implements \Magento\Framework\Locale\CurrencyInterface { /** * Default currency */ const DEFAULT_CURRENCY = 'USD'; /**#@+ * Currency Options */ const CURRENCY_OPTION_SYMBOL = 'symbol'; const CURRENCY_OPTION_CURRENCY = 'currency'; const CURRENCY_OPTION_NAME = 'name'; const CURRENCY_OPTION_DISPLAY = 'display'; /** * @var array */ protected static $_currencyCache = []; /** * Core event manager proxy * * @var \Magento\Framework\Event\ManagerInterface */ protected $_eventManager = null; /** * @var \Magento\Framework\Locale\ResolverInterface */ protected $_localeResolver; /** * @var \Magento\Framework\CurrencyFactory */ protected $_currencyFactory; /** * @param \Magento\Framework\Event\ManagerInterface $eventManager * @param ResolverInterface $localeResolver * @param \Magento\Framework\CurrencyFactory $currencyFactory */ public function __construct( \Magento\Framework\Event\ManagerInterface $eventManager, \Magento\Framework\Locale\ResolverInterface $localeResolver, \Magento\Framework\CurrencyFactory $currencyFactory ) { $this->_eventManager = $eventManager; $this->_localeResolver = $localeResolver; $this->_currencyFactory = $currencyFactory; } /** * @inheritdoc */ public function getDefaultCurrency() { return self::DEFAULT_CURRENCY; } /** * @inheritdoc */ public function getCurrency($currency) { \Magento\Framework\Profiler::start('locale/currency'); if (!isset(self::$_currencyCache[$this->_localeResolver->getLocale()][$currency])) { $options = []; try { $currencyObject = $this->_currencyFactory->create( ['options' => $currency, 'locale' => $this->_localeResolver->getLocale()] ); } catch (\Exception $e) { $currencyObject = $this->_currencyFactory->create( ['options' => $this->getDefaultCurrency(), 'locale' => $this->_localeResolver->getLocale()] ); $options[self::CURRENCY_OPTION_NAME] = $currency; $options[self::CURRENCY_OPTION_CURRENCY] = $currency; $options[self::CURRENCY_OPTION_SYMBOL] = $currency; } $options = new \Magento\Framework\DataObject($options); $this->_eventManager->dispatch( 'currency_display_options_forming', ['currency_options' => $options, 'base_code' => $currency] ); $currencyObject->setFormat($options->toArray()); self::$_currencyCache[$this->_localeResolver->getLocale()][$currency] = $currencyObject; } \Magento\Framework\Profiler::stop('locale/currency'); return self::$_currencyCache[$this->_localeResolver->getLocale()][$currency]; } }