Quellcode durchsuchen

[HttpFoundation] fixed a potential security problem in Request

Fabien Potencier vor 14 Jahren
Ursprung
Commit
c5497c7c67
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      src/Symfony/Component/HttpFoundation/Request.php

+ 2 - 1
src/Symfony/Component/HttpFoundation/Request.php

@@ -311,7 +311,8 @@ class Request
 
     public function hasSession()
     {
-        return $this->cookies->has(session_name());
+        // the check for $this->session avoids malicious users trying to fake a session cookie with proper name
+        return $this->cookies->has(session_name()) && null !== $this->session;
     }
 
     public function setSession(Session $session)