ソースを参照

[HttpFoundation] fixed a potential security problem in Request

Fabien Potencier 14 年 前
コミット
c5497c7c67
1 ファイル変更2 行追加1 行削除
  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)