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 02:59:48
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Autoload/ClassMap.php

<?php /** * An autoloader that uses class map * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Autoload; class ClassMap { /** * Absolute path to base directory that will be prepended as prefix to the included files * * @var string */ protected $_baseDir; /** * Map of class name to file (relative to the base directory) * * array( * 'Class_Name' => 'relative/path/to/Class/Name.php', * ) * * @var array */ protected $_map = []; /** * Set base directory absolute path * * @param string $baseDir * @throws \InvalidArgumentException */ public function __construct($baseDir) { $this->_baseDir = realpath($baseDir); if (!$this->_baseDir || !is_dir($this->_baseDir)) { throw new \InvalidArgumentException("Specified path is not a valid directory: '{$baseDir}'"); } } /** * Find an absolute path to a file to be included * * @param string $class * @return string|bool */ public function getFile($class) { if (isset($this->_map[$class])) { return $this->_baseDir . '/' . $this->_map[$class]; } return false; } /** * Add classes files declaration to the map. New map will override existing values if such was defined before. * * @param array $map * @return $this */ public function addMap(array $map) { $this->_map = array_merge($this->_map, $map); return $this; } /** * Resolve a class file and include it * * @param string $class * @return void */ public function load($class) { $file = $this->getFile($class); if (file_exists($file)) { include $file; } } }