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:06:42
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework; /** * Registry model. Used to manage values in registry * * Registry usage as a shared service introduces temporal, hard to detect coupling into system. * It's usage should be avoid. Use service classes or data providers instead. * * @api * @deprecated 102.0.0 * @since 100.0.2 */ class Registry { /** * Registry collection * * @var array */ private $_registry = []; /** * Retrieve a value from registry by a key * * @param string $key * @return mixed * * @deprecated 102.0.0 */ public function registry($key) { if (isset($this->_registry[$key])) { return $this->_registry[$key]; } return null; } /** * Register a new variable * * @param string $key * @param mixed $value * @param bool $graceful * @return void * @throws \RuntimeException * * @deprecated 102.0.0 */ public function register($key, $value, $graceful = false) { if (isset($this->_registry[$key])) { if ($graceful) { return; } throw new \RuntimeException('Registry key "' . $key . '" already exists'); } $this->_registry[$key] = $value; } /** * Unregister a variable from register by key * * @param string $key * @return void * * @deprecated 102.0.0 */ public function unregister($key) { if (isset($this->_registry[$key])) { if (is_object($this->_registry[$key]) && method_exists($this->_registry[$key], '__destruct') && is_callable([$this->_registry[$key], '__destruct']) ) { $this->_registry[$key]->__destruct(); } unset($this->_registry[$key]); } } /** * Destruct registry items */ public function __destruct() { $keys = array_keys($this->_registry); array_walk($keys, [$this, 'unregister']); } }