rfc:session-use-strict-mode

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
rfc:session-use-strict-mode [2016/07/04 22:35] – Add more details yohgakirfc:session-use-strict-mode [2017/09/22 13:28] – external edit 127.0.0.1
Line 1: Line 1:
-====== PHP RFC: Your Title Here ====== +====== PHP RFC: Enable session.use_strict_mode by default ====== 
-  * Version: 0.9+  * Version: 1.0
   * Date: 2016-07-05   * Date: 2016-07-05
   * Author: Yasuo Ohgaki <yohgaki@ohgaki.net>   * Author: Yasuo Ohgaki <yohgaki@ohgaki.net>
Line 8: Line 8:
 ===== Introduction ===== ===== Introduction =====
 Due to HTTP cookie implementation, it is easy to create unchangeable/undeletable cookies via JavaScript injections. Single JavaScript injection vulnerability or cookie storage modification via physical access to the client allows attackers to steal user session forever without session.use_strict_mode=1. Due to HTTP cookie implementation, it is easy to create unchangeable/undeletable cookies via JavaScript injections. Single JavaScript injection vulnerability or cookie storage modification via physical access to the client allows attackers to steal user session forever without session.use_strict_mode=1.
 +
 +NOTE: When multiple cookies are valid for a request, browser sends a highest precedence cookie. Cookie sent by browsers differs browser by browser because there is no cookie precedence standard. Attacker can exploit this browser behavior to set unchangeable cookies by using httponly, secure, domain and path cookie attributes. Security impact differs according to web site setup, used browser and session handling code. 
  
 ===== Proposal ===== ===== Proposal =====
Line 20: Line 22:
     * PS_FUNCS     * PS_FUNCS
  
 +===== Performance Impact =====
 +
 +session.use_strict_mode=1 requires
 + 
 +  * Session ID existence validation. (Additional query to session data storage may be needed depending on save handler implementation.)
 +  * New session ID regeneration required when nonexistent session ID is passed.
 +
 +Files save handler will not be affected much, but external session data storage may have noticeable impact.
  
 ===== Backward Incompatible Changes ===== ===== Backward Incompatible Changes =====
Line 29: Line 39:
 However, lost sessions are far better than stolen sessions.  However, lost sessions are far better than stolen sessions. 
  
-When attackers set unchangeable session ID cookie for a user, the user will not be able to get valid session ID. i.e. Cannot login, etc.+When attackers set unchangeable session ID cookie for a user, the user will not be able to get valid session ID. i.e. Cannot login via attacker supplied unchangeable session ID, etc.
  
-3rf party session save handlers must implement session ID validation handler for session.use_strict_mode=1 to work actually. i.e. 3rf party session save handlers must use PS_FUNCS_SID or PS_FUNCS_UPDATE_TIMESTAMP. **PS_FUNCS_UPDATE_TIMESTAMP is strongly recommended.**+3rd party session save handlers must implement session ID validation handler for session.use_strict_mode=1 to work actually. i.e. 3rd party session save handlers must use PS_FUNCS_SID or PS_FUNCS_UPDATE_TIMESTAMP. **PS_FUNCS_UPDATE_TIMESTAMP is strongly recommended.**
  
  
Line 70: Line 80:
 ===== Future Scope ===== ===== Future Scope =====
  
-Session ID should be managed by TTL timestamp precisely in order to session ID is managed correctly.+  * Session ID should be managed by TTL timestamp in order to manage session ID correctly and precisely. 
 +  * Remove session.use_strict_mode setting and enable it always. 
 +  * Remove session_regenerate_id()'s immediate session ID data removal option. i.e. Manage session data lifetime by TTL. 
 +  * Remove additional session data storage access by extending session save handler API.
  
-===== Proposed Voting Choices =====+===== Vote =====
  
-This project requires 2/3+This project requires 2/3 majority
  
 +<doodle title="Enable session.use_strict_mode by default" auth="Yasuo Ohgaki" voteType="single" closed="true">
 +   * Yes
 +   * No
 +</doodle>
  
 +Vote starts 2016/7/12, ends 2016/07/19 23:59:59 UTC.
  
 ===== Patches and Tests ===== ===== Patches and Tests =====
rfc/session-use-strict-mode.txt · Last modified: 2020/08/01 23:51 by carusogabriel