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

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Session; use Magento\Framework\Session\Config\ConfigInterface; use Magento\Framework\Exception\SessionException; /** * Magento session save handler. */ class SaveHandler implements SaveHandlerInterface { /** * Session handler * * @var \SessionHandler */ protected $saveHandlerAdapter; /** * @var SaveHandlerFactory */ private $saveHandlerFactory; /** * @var ConfigInterface */ private $sessionConfig; /** * @var string */ private $defaultHandler; /** * @param SaveHandlerFactory $saveHandlerFactory * @param ConfigInterface $sessionConfig * @param string $default */ public function __construct( SaveHandlerFactory $saveHandlerFactory, ConfigInterface $sessionConfig, $default = self::DEFAULT_HANDLER ) { $this->saveHandlerFactory = $saveHandlerFactory; $this->sessionConfig = $sessionConfig; $this->defaultHandler = $default; } /** * Open Session - retrieve resources. * * @param string $savePath * @param string $name * @return bool */ public function open($savePath, $name) { return $this->callSafely('open', $savePath, $name); } /** * Close Session - free resources. * * @return bool */ public function close() { return $this->callSafely('close'); } /** * Read session data. * * @param string $sessionId * @return string */ public function read($sessionId) { return $this->callSafely('read', $sessionId); } /** * Write Session - commit data to resource. * * @param string $sessionId * @param string $data * @return bool */ public function write($sessionId, $data) { return $this->callSafely('write', $sessionId, $data); } /** * Destroy Session - remove data from resource for given session id. * * @param string $sessionId * @return bool */ public function destroy($sessionId) { return $this->callSafely('destroy', $sessionId); } /** * Garbage Collection - remove old session data older than $maxLifetime (in seconds). * * @param int $maxLifetime * @return bool * @SuppressWarnings(PHPMD.ShortMethodName) */ public function gc($maxLifetime) { return $this->callSafely('gc', $maxLifetime); } /** * Call save handler adapter method. * * In case custom handler failed, default files handler is used. * * @param string $method * @param mixed $arguments * * @return mixed */ private function callSafely(string $method, ...$arguments) { try { if ($this->saveHandlerAdapter === null) { $saveMethod = $this->sessionConfig->getOption('session.save_handler') ?: $this->defaultHandler; $this->saveHandlerAdapter = $this->saveHandlerFactory->create($saveMethod); } return $this->saveHandlerAdapter->{$method}(...$arguments); } catch (SessionException $exception) { $this->saveHandlerAdapter = $this->saveHandlerFactory->create($this->defaultHandler); return $this->saveHandlerAdapter->{$method}(...$arguments); } } }