30.4. Global Session Management

The default behavior of sessions can be modified using the static methods in Zend_Session. All management and manipulation of global session management occurs using Zend_Session, including configuration of the usual options provided by ext/session , using Zend_Session::setOptions(). For example, failure to insure the use of a safe save_path or a unique cookie name by ext/session using Zend_Session::setOptions() may result in security issues.

30.4.1. Zend_Session::setOptions()

When the first session namespace is requested, Zend_Session will autostart itself, unless already started explicitly by using Zend_Session::start() . The underlying PHP session will use defaults from Zend_Session, unless modified first by Zend_Session::setOptions().

To pass the options just pass the basename (the non session. part) as part of an array to Zend_Session::setOptions(). Without setting any options, Zend_Session will utilize the recommended options first, then the default php.ini settings. Community feedback about best practices for these options should be sent to fw-auth@lists.zend.com .

To "automatically" configure this component using an ".ini" file with Zend_Config_Ini:

Example 30.17. Using Zend_Config to Configure Zend_Session

<?php
$config = new Zend_Config_Ini('myapp.ini', 'sandbox');
require_once 'Zend/Session.php';
Zend_Session::setOptions($config->toArray());
?>

The corresponding "myapp.ini" file:

Example 30.18. myapp.ini


;  Defaults for our live servers
[live]
; bug_compat_42
; bug_compat_warn
; cache_expire
; cache_limiter
; cookie_domain
; cookie_lifetime
; cookie_path
; cookie_secure
; entropy_file
; entropy_length
; gc_divisor
; gc_maxlifetime
; gc_probability
; hash_bits_per_character
; hash_function
; name should be unique for each PHP application sharing the same domain name
name = UNIQUE_NAME
; referer_check
; save_handler
; save_path
; serialize_handler
; use_cookies
; use_only_cookies
; use_trans_sid

; remember_me_seconds = <integer seconds>
; strict = on|off


; Our sandbox server uses the same settings as our live server,
; except as overridden below:
[sandbox : live]
; Don't forget to create this directory and make it rwx (readable and modifiable) by PHP.
save_path = /home/myaccount/zend_sessions/myapp
use_only_cookies = on
; When persisting session id cookies, request a TTL of 10 days
remember_me_seconds = 864000

30.4.2. Options

Most options shown above need no explanation beyond that found in the standard PHP documentation.

  • boolean strict - disables automatic starting of Zend_Session when using new Zend_Session_Namespace().

  • integer remember_me_seconds - how long should session id cookie persist, after user agent has ended (i.e. browser window closed)

  • string save_path - The correct value is system dependent, and should be provided by the developer using an absolute path to a directory readable and writable by the PHP process. If a writable path is not supplied, then Zend_Session will throw an exception when started (i.e. when start() is called).

    [Note] Security Risk

    If the path is readable by other applications, then session hijacking might be possible. If the path is writable by other applications, then session poisoning might be possible. If this path is shared with other users or other PHP applications, various security issues might occur, including theft of session content, hijacking of sessions, and collision of garbage collection (e.g. another user's application might cause PHP to delete your application's session files).

    For example, an attacker can visit the victim's website to obtain a session cookie. Then edit the cookie path to his own domain on the same server, before visiting his own website to execute var_dump($_SESSION). Armed with detailed knowledge of the victim's use of data in their sessions, the attacker can then modify the session state (poisoning the session), alter the cookie path back to the victim's website, and then make requests from the victim's website using the poisoned session. Even if two applications on the same server do not have read/write access to the other application's save_path, if the save_path is guessable, and the attacker has control over one of these two websites, the attacker could alter their website's save_path to use the other's save_path, and thus accomplish session poisoning, under some common configurations of PHP. Thus, the value for save_path should not be made public knowledge, and should be altered to a secure location unique to each application.

  • string name - The correct value is system dependent, and should be provided by the developer using a short value unique to the ZF application.

    [Note] Security Risk

    If the php.ini setting for session.name is the same (e.g. the default "PHPSESSID"), and there are two or more PHP applications accessible through the same domain name (e.g. http://www.somewebhost.com/~youraccount/index.php), then they will share the same session data for website visitors that visit both websites. Additionally, possible corruption of session data may result.

  • boolean use_only_cookies - In order to avoid introducing additional security risks, do not alter the default value of this option.

    [Note] Security Risk

    If this setting is not enabled, an attacker can easily fix victim's session ids, using links on the attacker's website, such as http://www.victim-website.com/index.php?PHPSESSID=fixed_session_id. The fixation works, if the victim does not already have a session id cookie for victim-website.com. Once a victim is using a known session id, the attacker can then attempt to hijack the session by pretending to be the victim, and emulating the victim's user agent.

30.4.3. Errors

30.4.3.1. Headers already sent

If you see the error message, "Cannot modify header information - headers already sent", or, "You must call .. before any output has been sent to the browser; output started in ...", then carefully examine the immediate cause (function or method) associated with the message. Any actions that require sending HTTP headers, such as modifying the browser's cookie, must be done before sending normal output (unbuffered output), except when using PHP's output buffering.

  • Using output buffering often is sufficient to prevent this issue, and may help improve performance. For example, in php.ini, "output_buffering = 65535" enables output buffering with a 64K buffer. Even though output buffering might be a good tactic on production servers to increase performance, relying only on buffering to resolve the "headers already sent" problem is not sufficient. Make sure the application will never exceed this buffer size, or else the problem will occur intermittently, whenever the output sent (prior to the HTTP headers) exceeds the buffer size.

  • Alternatively, try rearranging the application logic, so that actions manipulating headers are performed prior to sending any output whatsoever.

  • If a Zend_Session method is involved in causing the error message, examine the method carefully, and make sure it's use really is needed in the application. For example, the default usage of destroy() also sends an HTTP header to expire the client-side session cookie. If this is not needed, then use destroy(false). In HTTP, the instructions for modifying (e.g. expiring) cookies are sent with HTTP headers.

  • Alternatively, try rearranging the application logic, so that actions manipulating headers are performed prior to sending any output whatsoever.

  • Remove any closing "?>" tags, if they occur at the end of a PHP source file. They are not needed, and newlines and other nearly invisible whitespace following the closing tag can trigger output to the client.

30.4.4. regenerateId()

30.4.4.1. Introduction: Session Identifiers

Introduction: Best practice in relation to using sessions with ZF calls for using a browser cookie (i.e. a normal cookie stored in your web browser), instead of embedding a unique session identifier in URLs as a means to track individual users. By default this component uses only cookies to maintain session identifiers. The cookie's value is the unique identifier of your browser's session. PHP's ext/session uses this identifier to maintain a unique one-to-one relationship between website visitors, and persistent session data storage unique to each visitor. Zend_Session* wraps this storage mechanism ($_SESSION) with an object-oriented interface. Unfortunately, if an attacker gains access to the value of the cookie (the session id), an attacker might be able to hijack a visitor's session. This problem is not unique to PHP, or the Zend Framework. The regenerateId() method allows an application to change the session id (stored in the visitor's cookie) to a new, random, unpredictable value. Note: Although not the same, to make this section easier to read, we use the terms "user agent" and "web browser" interchangeably.

Why?: If an attacker obtains a valid session identifier, an attacker might be able to impersonate a valid user (the victim), and then obtain access to confidential information or otherwise manipulate the victim's data managed by your application. Changing session ids helps protect against session hijacking. If the session id is changed, and an attacker does not know the new value, the attacker can not use the new session id in their attempts to hijack the visitor's session. Even if an attacker gains access to an old session id, regenerateId() also moves the session data from the old session id "handle" to the new one, so no data remains accessible via the old session id.

When to use regenerateId(): Adding Zend_Session::regenerateId() to your Zend Framework bootstrap yields one of the safest and most secure ways to regenerate session id's in user agent cookies. If there is no conditional logic to determine when to regenerate the session id, then there are no flaws in that logic. Although regenerating on every request prevents several possible avenues of attack, not everyone wants the associated small performance and bandwidth cost. Thus, applications commonly try to dynamically determine situations of greater risk, and only regenerate the session ids in those situations. Whenever a website visitor's session's privileges are "escalated" (e.g. a visitor re-authenticates their identity before editing their personal "profile"), or whenever a security "sensitive" session parameter change occurs, consider using regenerateId() to create a new session id. If you call the rememberMe() function, then don't use regenerateId(), since the former calls the latter. If a user has successfully logged into your website, use rememberMe() instead of regenerateId().

30.4.4.2. Session Hijacking and Fixation

Avoiding cross-site script (XSS) vulnerabilities helps preventing session hijacking. According to Secunia's statistics XSS problems occur frequently, regardless of the languages used to create web applications. Rather than expecting to never have a XSS problem with an application, plan for it by following best practices to help minimize damage, if it occurs. With XSS, an attacker does not need direct access to a victim's network traffic. If the victim already has a session cookie, Javascript XSS might allow an attacker to read the cookie and steal the session. For victims with no session cookies, using XSS to inject Javascript, an attacker could create a session id cookie on the victim's browser with a known value, then set an identical cookie on the attacker's system, in order to hijack the victim's session. If the victim visited an attacker's website, then the attacker can also emulate most other identifiable characteristics of the victim's user agent. If your website has an XSS vulnerability, the attacker might be able to insert an AJAX Javascript that secretly "visits" the attacker's website, so that the attacker knows the victim's browser characteristics and becomes aware of a compromised session at the victim website. However, the attacker can not arbitrarily alter the server-side state of PHP sessions, provided the developer has correctly set the value for the save_path option.

By itself, calling Zend_Session::regenerateId() when the user's session is first used, does not prevent session fixation attacks, unless you can distinguish between a session originated by an attacker emulating the victim. At first, this might sound contradictory to the previous statement above, until we consider an attacker who first initiates a real session on your website. The session is "first used" by the attacker, who then knows the result of the initialization (regenerateId()). The attacker then uses the new session id in combination with an XSS vulnerability, or injects the session id via a link on the attacker's website (works if use_only_cookies = off).

If you can distinguish between an attacker and victim using the same session id, then session hijacking can be dealt with directly. However, such distinctions usually involve some form of usability tradeoffs, because the methods of distinction are often imprecise. For example, if a request is received from an IP in a different country than the IP of the request when the session was created, then the new request probably belongs to an attacker. Under the following conditions, there might not be any way for a website application to distinguish between a victim and an attacker:

  • - attacker first initiates a session on your website to obtain a valid session id

  • - attacker uses XSS vulnerability on your website to create a cookie on the victim's browser with the same, valid session id (i.e. session fixation)

  • - both the victim and attacker originate from the same proxy farm (e.g. both are behind the same firewall at a large company, like AOL)

The sample code below makes it much harder for an attacker to know the current victim's session id, unless the attacker has already performed the first two steps above.

Example 30.19. Anonymous Sessions and Session Fixation

<?php
require_once 'Zend/Session.php';
$defaultNamespace = new Zend_Session_Namespace();

if (!isset($defaultNamespace->initialized))
{
    Zend_Session::regenerateId();
    $defaultNamespace->initialized = true;
}
?>

30.4.5. rememberMe(integer $seconds)

Ordinarily, sessions end when the user agent ends its "session", such as when an end user closes their browser window. However, when a user logs in to your website, they might want their virtual session to last for 24 hours, or even longer. Forum software commonly gives the user a choice for how long their session should last. Use Zend_Session::rememberMe() to send an updated session cookie to the user agent with a lifetime defaulting to remember_me_seconds, which is set to 2 weeks, unless you modify that value using Zend_Session::setOptions(). To help thwart session fixation/hijacking, use this function when a user successfully authenticates and you application performs a "login".

30.4.6. forgetMe()

This function complements rememberMe() by changing the session cookie back to a lifetime ending when the user agent ends its session (e.g. user closes their browser window).

30.4.7. sessionExists()

Use this method to determine if a session already exists for the current user agent/request. It may be used before starting a session, and independently of all other Zend_Session and Zend_Session_Namespace methods.

30.4.8. destroy(bool $remove_cookie = true, bool $readonly = true)

Zend_Session::destroy() destroys all of the persistent data associated with the current session. However, no variables in PHP are affected, so your namespaced sessions (instances of Zend_Session_Namespace) remain readable. To complete a "logout", set the optional parameter to true (default is true) to also delete the user agent's session id cookie. The optional $readonly parameter removes the ability for Zend_Session_Namespace instances, and Zend_Session methods to write to the session data store (i.e. $_SESSION).

If you see the error message, "Cannot modify header information - headers already sent", then either avoid using true as the value for the first argument (requesting removal of the session cookie), or see Section 30.4.3.1, “Headers already sent” . Thus, "Zend_Session::destroy(true)" must either be called before PHP has sent HTTP headers, or output buffering must be enabled. Also, the total output sent must not exceed the set buffer size, in order to prevent triggering sending the output before the call to destroy().

[Note] Throws

By default, $readonly is enabled and further actions involving writing to the session data store will throw an error.

30.4.9. stop()

This method does absolutely nothing more than toggle a flag in Zend_Session to prevent further writing to the session data store (i.e. $_SESSION). We are specifically requesting feedback on this feature. Potential uses/abuses might include temporarily disabling the use of Zend_Session_Namespace instances or Zend_Session methods to write to the session data store, while execution is transfered to view-related code. Attempts to perform actions involving writes via these instances or methods will throw an error.

30.4.10. writeClose($readonly = true)

Shutdown the sesssion, close writing and detach $_SESSION from the back-end storage mechanism. This will complete the internal data transformation on this request. The optional $readonly boolean parameter can remove write access (i.e. throw error if any Zend_Session_Namespace or Zend_Session methods attempt writes).

[Note] Throws

By default, $readonly is enabled and further actions involving writing to the session data store will throw an error. However, some legacy application might expect $_SESSION to remain writeable after ending the session via session_write_close(). Although not considered "best practice", the $readonly option is available for those who need it.

30.4.11. expireSessionCookie()

This method sends an expired session id cookie, causing the client to delete the session cookie. Sometimes this technique is used to perform a client-side logout.

30.4.12. setSaveHandler(Zend_Session_SaveHandler_Interface $interface)

Most developers will find the default save handler sufficient. This method provides an object-oriented wrapper for session_set_save_handler() .

30.4.13. namespaceIsset($namespace)

Use this method to determine if a session namespace exists, or if a particular index exists in a particular namespace.

[Note] Throws

An error will be thrown if Zend_Session is not marked as readable (e.g. before Zend_Session has been started).

30.4.14. namespaceUnset($namespace)

Instead of creating a Zend_Session instance for a namespace, and iterating over its contents to unset each entry, use Zend_Session::namespaceUnset($namespace) to efficiently unset (remove) an entire namespace and its contents. As with all arrays in PHP, if a variable containing an array is unset, and the array contains other objects, those objects will remain available, if they were also stored by reference in other array/objects that remain accessible via other variables. So namespaceUnset() does not perform a "deep" unsetting/deleting of the contents of the entries in the namespace. For a more detailed explanation, please see References Explained in the PHP manual.

[Note] Throws

An error will be thrown if the namespace is not writable (e.g. after destroy()).

30.4.15. namespaceGet($namespace)

DEPRECATED: Use getIterator() in Zend_Session_Namespace. This method returns an array of the contents of $namespace. If you have logical reasons to keep this method publicly accessible, please provide feedback to the fw-auth@lists.zend.com mail list. Actually, all participation on any relevant topic is welcome :)

[Note] Throws

An error will be thrown if Zend_Session is not marked as readable (e.g. before Zend_Session has been started).

30.4.16. getIterator()

Use getIterator() to obtain an iterable array containing the names of all namespaces.

Example 30.20. Unsetting All Namespaces

<?php
foreach(Zend_Session::getIterator() as $space) {
    try {
        $core->namespaceUnset($space);
    } catch (Zend_Session_Exception $e) {
        return; // possible if Zend_Session::stop() has been executed
    }
}

?>
[Note] Throws

An error will be thrown if Zend_Session is not marked as readable (e.g. before Zend_Session has been started).