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 15:14:46
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\App\Action\Plugin; use Magento\Framework\App\Action\Action; use Magento\Framework\App\ActionFlag; use Magento\Framework\App\ActionInterface; use Magento\Framework\App\Request\Http; use Magento\Framework\App\RequestInterface; use Magento\Framework\Controller\ResultInterface; use Magento\Framework\Event\ManagerInterface; use Magento\Framework\HTTP\PhpEnvironment\Response; use Magento\Framework\Profiler; /** * Dispatch the controller_action_predispatch and controller_action_post_dispatch events. */ class EventDispatchPlugin { /** * @var Http|RequestInterface */ private $request; /** * @var ManagerInterface */ private $eventManager; /** * @var ActionFlag */ private $actionFlag; /** * @param RequestInterface $request * @param ManagerInterface $eventManager * @param ActionFlag $actionFlag */ public function __construct(RequestInterface $request, ManagerInterface $eventManager, ActionFlag $actionFlag) { $this->request = $request; $this->eventManager = $eventManager; $this->actionFlag = $actionFlag; } /** * Trigger the controller_action_predispatch events * * @param ActionInterface $subject */ public function beforeExecute(ActionInterface $subject) { $this->dispatchPreDispatchEvents($subject); } /** * Build the event parameter array * * @param ActionInterface $subject * @return array */ private function getEventParameters(ActionInterface $subject): array { return ['controller_action' => $subject, 'request' => $this->request]; } /** * Trigger the controller_action_postdispatch events if the suppressing action flag is not set * * @param ActionInterface $subject * @param ResultInterface|Response|null $result * @return ResultInterface|Response|null */ public function afterExecute(ActionInterface $subject, $result) { if (!$this->isSetActionNoPostDispatchFlag()) { $this->dispatchPostDispatchEvents($subject); } return $result; } /** * Check if action flags are set that would suppress the post dispatch events. * * @return bool */ private function isSetActionNoPostDispatchFlag(): bool { return $this->actionFlag->get('', Action::FLAG_NO_DISPATCH) || $this->actionFlag->get('', Action::FLAG_NO_POST_DISPATCH); } /** * Dispatch the controller_action_predispatch events. * * @param ActionInterface $action */ private function dispatchPreDispatchEvents(ActionInterface $action) { $this->eventManager->dispatch('controller_action_predispatch', $this->getEventParameters($action)); $this->eventManager->dispatch( 'controller_action_predispatch_' . $this->request->getRouteName(), $this->getEventParameters($action) ); $this->eventManager->dispatch( 'controller_action_predispatch_' . $this->request->getFullActionName(), $this->getEventParameters($action) ); } /** * Dispatch the controller_action_postdispatch events. * * @param ActionInterface $action */ private function dispatchPostDispatchEvents(ActionInterface $action) { Profiler::start('postdispatch'); $this->eventManager->dispatch( 'controller_action_postdispatch_' . $this->request->getFullActionName(), $this->getEventParameters($action) ); $this->eventManager->dispatch( 'controller_action_postdispatch_' . $this->request->getRouteName(), $this->getEventParameters($action) ); $this->eventManager->dispatch('controller_action_postdispatch', $this->getEventParameters($action)); Profiler::stop('postdispatch'); } }