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

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/GraphQl/Query/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/GraphQl/Query/QueryProcessor.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\GraphQl\Query; use Magento\Framework\GraphQl\Exception\ExceptionFormatter; use Magento\Framework\GraphQl\Query\Resolver\ContextInterface; use Magento\Framework\GraphQl\Schema; /** * Wrapper for GraphQl execution of a schema */ class QueryProcessor { /** * @var ExceptionFormatter */ private $exceptionFormatter; /** * @var QueryComplexityLimiter */ private $queryComplexityLimiter; /** * @var \Magento\Framework\GraphQl\Query\ErrorHandlerInterface */ private $errorHandler; /** * @param ExceptionFormatter $exceptionFormatter * @param QueryComplexityLimiter $queryComplexityLimiter * * @param \Magento\Framework\GraphQl\Query\ErrorHandlerInterface $errorHandler * @SuppressWarnings(PHPMD.LongVariable) */ public function __construct( ExceptionFormatter $exceptionFormatter, QueryComplexityLimiter $queryComplexityLimiter, ErrorHandlerInterface $errorHandler ) { $this->exceptionFormatter = $exceptionFormatter; $this->queryComplexityLimiter = $queryComplexityLimiter; $this->errorHandler = $errorHandler; } /** * Process a GraphQl query according to defined schema * * @param Schema $schema * @param string $source * @param ContextInterface $contextValue * @param array|null $variableValues * @param string|null $operationName * @return Promise|array */ public function process( Schema $schema, string $source, ContextInterface $contextValue = null, array $variableValues = null, string $operationName = null ) : array { if (!$this->exceptionFormatter->shouldShowDetail()) { $this->queryComplexityLimiter->execute(); } $rootValue = null; return \GraphQL\GraphQL::executeQuery( $schema, $source, $rootValue, $contextValue, $variableValues, $operationName )->setErrorsHandler( [$this->errorHandler, 'handle'] )->toArray( $this->exceptionFormatter->shouldShowDetail() ? \GraphQL\Error\Debug::INCLUDE_DEBUG_MESSAGE : false ); } }