Secure Cookie

This module implements a cookie that is not alterable from the clientbecause it adds a checksum the server checks for. You can use it assession replacement if all you have is a user id or something to marka logged in user.

Keep in mind that the data is still readable from the client as anormal cookie is. However you don’t have to store and flush thesessions you have at the server.

Example usage:

  1. >>> from werkzeug.contrib.securecookie import SecureCookie
  2. >>> x = SecureCookie({"foo": 42, "baz": (1, 2, 3)}, "deadbeef")

Dumping into a string so that one can store it in a cookie:

  1. >>> value = x.serialize()

Loading from that string again:

  1. >>> x = SecureCookie.unserialize(value, "deadbeef")
  2. >>> x["baz"]
  3. (1, 2, 3)

If someone modifies the cookie and the checksum is wrong the unserializemethod will fail silently and return a new empty SecureCookie object.

Keep in mind that the values will be visible in the cookie so do notstore data in a cookie you don’t want the user to see.

Application Integration

If you are using the werkzeug request objects you could integrate thesecure cookie into your application like this:

  1. from werkzeug.utils import cached_property
  2. from werkzeug.wrappers import BaseRequest
  3. from werkzeug.contrib.securecookie import SecureCookie
  4. # don't use this key but a different one; you could just use
  5. # os.urandom(20) to get something random
  6. SECRET_KEY = '\xfa\xdd\xb8z\xae\xe0}4\x8b\xea'
  7. class Request(BaseRequest):
  8. @cached_property
  9. def client_session(self):
  10. data = self.cookies.get('session_data')
  11. if not data:
  12. return SecureCookie(secret_key=SECRET_KEY)
  13. return SecureCookie.unserialize(data, SECRET_KEY)
  14. def application(environ, start_response):
  15. request = Request(environ, start_response)
  16. # get a response object here
  17. response = ...
  18. if request.client_session.should_save:
  19. session_data = request.client_session.serialize()
  20. response.set_cookie('session_data', session_data,
  21. httponly=True)
  22. return response(environ, start_response)

A less verbose integration can be achieved by using shorthand methods:

  1. class Request(BaseRequest):
  2. @cached_property
  3. def client_session(self):
  4. return SecureCookie.load_cookie(self, secret_key=COOKIE_SECRET)
  5. def application(environ, start_response):
  6. request = Request(environ, start_response)
  7. # get a response object here
  8. response = ...
  9. request.client_session.save_cookie(response)
  10. return response(environ, start_response)

Security

The default implementation uses Pickle as this is the only module thatused to be available in the standard library when this module was created.If you have simplejson available it’s strongly recommended to create asubclass and replace the serialization method:

  1. import json
  2. from werkzeug.contrib.securecookie import SecureCookie
  3. class JSONSecureCookie(SecureCookie):
  4. serialization_method = json

The weakness of Pickle is that if someone gains access to the secret keythe attacker can not only modify the session but also execute arbitrarycode on the server.

Reference

  • class _werkzeug.contrib.securecookie.SecureCookie(_data=None, secret_key=None, new=True)
  • Represents a secure cookie. You can subclass this class and providean alternative mac method. The import thing is that the mac methodis a function with a similar interface to the hashlib. Requiredmethods are update() and digest().

Example usage:

  1. >>> x = SecureCookie({"foo": 42, "baz": (1, 2, 3)}, "deadbeef")
  2. >>> x["foo"]
  3. 42
  4. >>> x["baz"]
  5. (1, 2, 3)
  6. >>> x["blafasel"] = 23
  7. >>> x.should_save
  8. True

参数:

  • data – the initial data. Either a dict, list of tuples or None.
  • secret_key – the secret key. If not set None or not specifiedit has to be set before serialize() is called.
  • new – The initial value of the new flag.
  • new
  • True if the cookie was newly created, otherwise False

  • modified

  • Whenever an item on the cookie is set, this attribute is set to True.However this does not track modifications inside mutable objectsin the cookie:
  1. >>> c = SecureCookie()
  2. >>> c["foo"] = [1, 2, 3]
  3. >>> c.modified
  4. True
  5. >>> c.modified = False
  6. >>> c["foo"].append(4)
  7. >>> c.modified
  8. False

In that situation it has to be set to modified by hand so thatshould_save can pick it up.

  • hash_method()
  • The hash method to use. This has to be a module with a new functionor a function that creates a hashlib object. Such as _hashlib.md5_Subclasses can override this attribute. The default hash is sha1.Make sure to wrap this in staticmethod() if you store an arbitraryfunction there such as hashlib.sha1 which might be implementedas a function.

  • classmethod _load_cookie(_request, key='session', secret_key=None)

  • Loads a SecureCookie from a cookie in request. If thecookie is not set, a new SecureCookie instanced isreturned.

参数:

  1. - **request** a request object that has a _cookies_ attributewhich is a dict of all cookie values.
  2. - **key** the name of the cookie.
  3. - **secret_key** the secret key used to unquote the cookie.Always provide the value even though it hasno default!
  • classmethod _quote(_value)
  • Quote the value for the cookie. This can be any object supportedby serialization_method.

参数:value – the value to quote.

  • quotebase64 = True_
  • if the contents should be base64 quoted. This can be disabled if theserialization process returns cookie safe strings only.

  • savecookie(_response, key='session', expires=None, session_expires=None, max_age=None, path='/', domain=None, secure=None, httponly=False, force=False)

  • Saves the SecureCookie in a cookie on response object. Allparameters that are not described here are forwarded directlyto set_cookie().

参数:

  1. - **response** a response object that has aset_cookie() method.
  2. - **key** the name of the cookie.
  3. - **session_expires** the expiration date of the secure cookiestored information. If this is not providedthe cookie _expires_ date is used instead.
  • serializationmethod = _
  • the module used for serialization. Unless overriden by subclassesthe standard pickle module is used.

  • serialize(expires=None)

  • Serialize the secure cookie into a string.

If expires is provided, the session will be automatically invalidatedafter expiration when you unseralize it. This provides betterprotection against session cookie theft.

参数:expires – an optional expiration date for the cookie (adatetime.datetime object)

  • should_save
  • True if the session should be saved. By default this is only truefor modified cookies, not new.

  • classmethod _unquote(_value)

  • Unquote the value for the cookie. If unquoting does not work aUnquoteError is raised.

参数:value – the value to unquote.

  • classmethod _unserialize(_string, secret_key)
  • Load the secure cookie from a serialized string.

参数:

  1. - **string** the cookie value to unserialize.
  2. - **secret_key** the secret key used to serialize the cookie.返回:

a new SecureCookie.

  • _exception _werkzeug.contrib.securecookie.UnquoteError
  • Internal exception used to signal failures on quoting.