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 03:09:19
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Locale\Deployed; use Magento\Framework\App\Filesystem\DirectoryList; use Magento\Framework\Filesystem; use Magento\Framework\Locale\AvailableLocalesInterface; use Magento\Framework\View\Design\Theme\FlyweightFactory; use Magento\Framework\View\DesignInterface; /** * Returns array of deployed locale codes for the theme. */ class Codes implements AvailableLocalesInterface { /** * Works with file system. * * @var Filesystem */ private $fileSystem; /** * Factory for creating objects that implements \Magento\Framework\View\Design\ThemeInterface. * * @var FlyweightFactory */ private $flyweightFactory; /** * @param FlyweightFactory $flyweightFactory factory for creating objects * that implements \Magento\Framework\View\Design\ThemeInterface * @param Filesystem $fileSystem works with file system */ public function __construct( FlyweightFactory $flyweightFactory, Filesystem $fileSystem ) { $this->fileSystem = $fileSystem; $this->flyweightFactory = $flyweightFactory; } /** * {@inheritdoc} * * If theme or file directory for theme static content does not exist then return an empty array. */ public function getList($code, $area = DesignInterface::DEFAULT_AREA) { try { $theme = $this->flyweightFactory->create($code, $area); $reader = $this->fileSystem->getDirectoryRead(DirectoryList::STATIC_VIEW); $dirs = $reader->read($theme->getFullPath()); } catch (\Exception $e) { return []; } return array_map('basename', $dirs); } }