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 00:36:47
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/App/Config.php

<?php /** * Application configuration object. Used to access configuration when application is initialized and installed. * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\App; use Magento\Framework\App\Config\ConfigTypeInterface; use Magento\Framework\App\Config\ScopeCodeResolver; use Magento\Framework\App\Config\ScopeConfigInterface; /** * Class Config */ class Config implements ScopeConfigInterface { /** * Config cache tag */ const CACHE_TAG = 'CONFIG'; /** * @var ScopeCodeResolver */ private $scopeCodeResolver; /** * @var ConfigTypeInterface[] */ private $types; /** * Config constructor. * * @param ScopeCodeResolver $scopeCodeResolver * @param array $types */ public function __construct( ScopeCodeResolver $scopeCodeResolver, array $types = [] ) { $this->scopeCodeResolver = $scopeCodeResolver; $this->types = $types; } /** * Retrieve config value by path and scope * * @param string $path * @param string $scope * @param null|int|string $scopeCode * @return mixed */ public function getValue( $path = null, $scope = ScopeConfigInterface::SCOPE_TYPE_DEFAULT, $scopeCode = null ) { if ($scope === 'store') { $scope = 'stores'; } elseif ($scope === 'website') { $scope = 'websites'; } $configPath = $scope; if ($scope !== 'default') { if (is_numeric($scopeCode) || $scopeCode === null) { $scopeCode = $this->scopeCodeResolver->resolve($scope, $scopeCode); } elseif ($scopeCode instanceof \Magento\Framework\App\ScopeInterface) { $scopeCode = $scopeCode->getCode(); } if ($scopeCode) { $configPath .= '/' . $scopeCode; } } if ($path) { $configPath .= '/' . $path; } return $this->get('system', $configPath); } /** * Retrieve config flag * * @param string $path * @param string $scope * @param null|int|string $scopeCode * @return bool */ public function isSetFlag($path, $scope = ScopeConfigInterface::SCOPE_TYPE_DEFAULT, $scopeCode = null) { return !!$this->getValue($path, $scope, $scopeCode); } /** * Invalidate cache by type * * Clean scopeCodeResolver * * @return void */ public function clean() { foreach ($this->types as $type) { $type->clean(); } $this->scopeCodeResolver->clean(); } /** * Retrieve configuration. * * ('modules') - modules status configuration data * ('scopes', 'websites/base') - base website data * ('scopes', 'stores/default') - default store data * * ('system', 'default/web/seo/use_rewrites') - default system configuration data * ('system', 'websites/base/web/seo/use_rewrites') - 'base' website system configuration data * * ('i18n', 'default/en_US') - translations for default store and 'en_US' locale * * @param string $configType * @param string|null $path * @param mixed|null $default * @return array */ public function get($configType, $path = '', $default = null) { $result = null; if (isset($this->types[$configType])) { $result = $this->types[$configType]->get($path); } return $result !== null ? $result : $default; } }