sessions.txt 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. ===================
  2. How to use sessions
  3. ===================
  4. .. module:: django.contrib.sessions
  5. :synopsis: Provides session management for Django projects.
  6. Django provides full support for anonymous sessions. The session framework
  7. lets you store and retrieve arbitrary data on a per-site-visitor basis. It
  8. stores data on the server side and abstracts the sending and receiving of
  9. cookies. Cookies contain a session ID -- not the data itself (unless you're
  10. using the :ref:`cookie based backend<cookie-session-backend>`).
  11. Enabling sessions
  12. =================
  13. Sessions are implemented via a piece of :doc:`middleware </ref/middleware>`.
  14. To enable session functionality, do the following:
  15. * Edit the :setting:`MIDDLEWARE_CLASSES` setting and make sure
  16. it contains ``'django.contrib.sessions.middleware.SessionMiddleware'``.
  17. The default ``settings.py`` created by ``django-admin startproject``
  18. has ``SessionMiddleware`` activated.
  19. If you don't want to use sessions, you might as well remove the
  20. ``SessionMiddleware`` line from :setting:`MIDDLEWARE_CLASSES` and
  21. ``'django.contrib.sessions'`` from your :setting:`INSTALLED_APPS`.
  22. It'll save you a small bit of overhead.
  23. .. _configuring-sessions:
  24. Configuring the session engine
  25. ==============================
  26. By default, Django stores sessions in your database (using the model
  27. ``django.contrib.sessions.models.Session``). Though this is convenient, in
  28. some setups it's faster to store session data elsewhere, so Django can be
  29. configured to store session data on your filesystem or in your cache.
  30. Using database-backed sessions
  31. ------------------------------
  32. If you want to use a database-backed session, you need to add
  33. ``'django.contrib.sessions'`` to your :setting:`INSTALLED_APPS` setting.
  34. Once you have configured your installation, run ``manage.py migrate``
  35. to install the single database table that stores session data.
  36. .. _cached-sessions-backend:
  37. Using cached sessions
  38. ---------------------
  39. For better performance, you may want to use a cache-based session backend.
  40. To store session data using Django's cache system, you'll first need to make
  41. sure you've configured your cache; see the :doc:`cache documentation
  42. </topics/cache>` for details.
  43. .. warning::
  44. You should only use cache-based sessions if you're using the Memcached
  45. cache backend. The local-memory cache backend doesn't retain data long
  46. enough to be a good choice, and it'll be faster to use file or database
  47. sessions directly instead of sending everything through the file or
  48. database cache backends. Additionally, the local-memory cache backend is
  49. NOT multi-process safe, therefore probably not a good choice for production
  50. environments.
  51. If you have multiple caches defined in :setting:`CACHES`, Django will use the
  52. default cache. To use another cache, set :setting:`SESSION_CACHE_ALIAS` to the
  53. name of that cache.
  54. Once your cache is configured, you've got two choices for how to store data in
  55. the cache:
  56. * Set :setting:`SESSION_ENGINE` to
  57. ``"django.contrib.sessions.backends.cache"`` for a simple caching session
  58. store. Session data will be stored directly in your cache. However, session
  59. data may not be persistent: cached data can be evicted if the cache fills
  60. up or if the cache server is restarted.
  61. * For persistent, cached data, set :setting:`SESSION_ENGINE` to
  62. ``"django.contrib.sessions.backends.cached_db"``. This uses a
  63. write-through cache -- every write to the cache will also be written to
  64. the database. Session reads only use the database if the data is not
  65. already in the cache.
  66. Both session stores are quite fast, but the simple cache is faster because it
  67. disregards persistence. In most cases, the ``cached_db`` backend will be fast
  68. enough, but if you need that last bit of performance, and are willing to let
  69. session data be expunged from time to time, the ``cache`` backend is for you.
  70. If you use the ``cached_db`` session backend, you also need to follow the
  71. configuration instructions for the `using database-backed sessions`_.
  72. Using file-based sessions
  73. -------------------------
  74. To use file-based sessions, set the :setting:`SESSION_ENGINE` setting to
  75. ``"django.contrib.sessions.backends.file"``.
  76. You might also want to set the :setting:`SESSION_FILE_PATH` setting (which
  77. defaults to output from ``tempfile.gettempdir()``, most likely ``/tmp``) to
  78. control where Django stores session files. Be sure to check that your Web
  79. server has permissions to read and write to this location.
  80. .. _cookie-session-backend:
  81. Using cookie-based sessions
  82. ---------------------------
  83. To use cookies-based sessions, set the :setting:`SESSION_ENGINE` setting to
  84. ``"django.contrib.sessions.backends.signed_cookies"``. The session data will be
  85. stored using Django's tools for :doc:`cryptographic signing </topics/signing>`
  86. and the :setting:`SECRET_KEY` setting.
  87. .. note::
  88. It's recommended to leave the :setting:`SESSION_COOKIE_HTTPONLY` setting
  89. on ``True`` to prevent access to the stored data from JavaScript.
  90. .. warning::
  91. **If the SECRET_KEY is not kept secret and you are using the**
  92. :class:`~django.contrib.sessions.serializers.PickleSerializer`, **this can
  93. lead to arbitrary remote code execution.**
  94. An attacker in possession of the :setting:`SECRET_KEY` can not only
  95. generate falsified session data, which your site will trust, but also
  96. remotely execute arbitrary code, as the data is serialized using pickle.
  97. If you use cookie-based sessions, pay extra care that your secret key is
  98. always kept completely secret, for any system which might be remotely
  99. accessible.
  100. **The session data is signed but not encrypted**
  101. When using the cookies backend the session data can be read by the client.
  102. A MAC (Message Authentication Code) is used to protect the data against
  103. changes by the client, so that the session data will be invalidated when being
  104. tampered with. The same invalidation happens if the client storing the
  105. cookie (e.g. your user's browser) can't store all of the session cookie and
  106. drops data. Even though Django compresses the data, it's still entirely
  107. possible to exceed the `common limit of 4096 bytes`_ per cookie.
  108. **No freshness guarantee**
  109. Note also that while the MAC can guarantee the authenticity of the data
  110. (that it was generated by your site, and not someone else), and the
  111. integrity of the data (that it is all there and correct), it cannot
  112. guarantee freshness i.e. that you are being sent back the last thing you
  113. sent to the client. This means that for some uses of session data, the
  114. cookie backend might open you up to `replay attacks`_. Unlike other session
  115. backends which keep a server-side record of each session and invalidate it
  116. when a user logs out, cookie-based sessions are not invalidated when a user
  117. logs out. Thus if an attacker steals a user's cookie, they can use that
  118. cookie to login as that user even if the user logs out. Cookies will only
  119. be detected as 'stale' if they are older than your
  120. :setting:`SESSION_COOKIE_AGE`.
  121. **Performance**
  122. Finally, the size of a cookie can have an impact on the `speed of your site`_.
  123. .. _`common limit of 4096 bytes`: http://tools.ietf.org/html/rfc2965#section-5.3
  124. .. _`replay attacks`: http://en.wikipedia.org/wiki/Replay_attack
  125. .. _`speed of your site`: http://yuiblog.com/blog/2007/03/01/performance-research-part-3/
  126. Using sessions in views
  127. =======================
  128. When ``SessionMiddleware`` is activated, each :class:`~django.http.HttpRequest`
  129. object -- the first argument to any Django view function -- will have a
  130. ``session`` attribute, which is a dictionary-like object.
  131. You can read it and write to ``request.session`` at any point in your view.
  132. You can edit it multiple times.
  133. .. class:: backends.base.SessionBase
  134. This is the base class for all session objects. It has the following
  135. standard dictionary methods:
  136. .. method:: __getitem__(key)
  137. Example: ``fav_color = request.session['fav_color']``
  138. .. method:: __setitem__(key, value)
  139. Example: ``request.session['fav_color'] = 'blue'``
  140. .. method:: __delitem__(key)
  141. Example: ``del request.session['fav_color']``. This raises ``KeyError``
  142. if the given ``key`` isn't already in the session.
  143. .. method:: __contains__(key)
  144. Example: ``'fav_color' in request.session``
  145. .. method:: get(key, default=None)
  146. Example: ``fav_color = request.session.get('fav_color', 'red')``
  147. .. method:: pop(key, default=None)
  148. Example: ``fav_color = request.session.pop('fav_color', 'blue')``
  149. .. method:: keys()
  150. .. method:: items()
  151. .. method:: setdefault()
  152. .. method:: clear()
  153. It also has these methods:
  154. .. method:: flush()
  155. Delete the current session data from the session and delete the session
  156. cookie. This is used if you want to ensure that the previous session data
  157. can't be accessed again from the user's browser (for example, the
  158. :func:`django.contrib.auth.logout()` function calls it).
  159. .. versionchanged:: 1.8
  160. Deletion of the session cookie is a behavior new in Django 1.8.
  161. Previously, the behavior was to regenerate the session key value that
  162. was sent back to the user in the cookie.
  163. .. method:: set_test_cookie()
  164. Sets a test cookie to determine whether the user's browser supports
  165. cookies. Due to the way cookies work, you won't be able to test this
  166. until the user's next page request. See `Setting test cookies`_ below for
  167. more information.
  168. .. method:: test_cookie_worked()
  169. Returns either ``True`` or ``False``, depending on whether the user's
  170. browser accepted the test cookie. Due to the way cookies work, you'll
  171. have to call ``set_test_cookie()`` on a previous, separate page request.
  172. See `Setting test cookies`_ below for more information.
  173. .. method:: delete_test_cookie()
  174. Deletes the test cookie. Use this to clean up after yourself.
  175. .. method:: set_expiry(value)
  176. Sets the expiration time for the session. You can pass a number of
  177. different values:
  178. * If ``value`` is an integer, the session will expire after that
  179. many seconds of inactivity. For example, calling
  180. ``request.session.set_expiry(300)`` would make the session expire
  181. in 5 minutes.
  182. * If ``value`` is a ``datetime`` or ``timedelta`` object, the
  183. session will expire at that specific date/time. Note that ``datetime``
  184. and ``timedelta`` values are only serializable if you are using the
  185. :class:`~django.contrib.sessions.serializers.PickleSerializer`.
  186. * If ``value`` is ``0``, the user's session cookie will expire
  187. when the user's Web browser is closed.
  188. * If ``value`` is ``None``, the session reverts to using the global
  189. session expiry policy.
  190. Reading a session is not considered activity for expiration
  191. purposes. Session expiration is computed from the last time the
  192. session was *modified*.
  193. .. method:: get_expiry_age()
  194. Returns the number of seconds until this session expires. For sessions
  195. with no custom expiration (or those set to expire at browser close), this
  196. will equal :setting:`SESSION_COOKIE_AGE`.
  197. This function accepts two optional keyword arguments:
  198. - ``modification``: last modification of the session, as a
  199. :class:`~datetime.datetime` object. Defaults to the current time.
  200. - ``expiry``: expiry information for the session, as a
  201. :class:`~datetime.datetime` object, an :class:`int` (in seconds), or
  202. ``None``. Defaults to the value stored in the session by
  203. :meth:`set_expiry`, if there is one, or ``None``.
  204. .. method:: get_expiry_date()
  205. Returns the date this session will expire. For sessions with no custom
  206. expiration (or those set to expire at browser close), this will equal the
  207. date :setting:`SESSION_COOKIE_AGE` seconds from now.
  208. This function accepts the same keyword arguments as :meth:`get_expiry_age`.
  209. .. method:: get_expire_at_browser_close()
  210. Returns either ``True`` or ``False``, depending on whether the user's
  211. session cookie will expire when the user's Web browser is closed.
  212. .. method:: clear_expired()
  213. Removes expired sessions from the session store. This class method is
  214. called by :djadmin:`clearsessions`.
  215. .. method:: cycle_key()
  216. Creates a new session key while retaining the current session data.
  217. :func:`django.contrib.auth.login()` calls this method to mitigate against
  218. session fixation.
  219. .. _session_serialization:
  220. Session serialization
  221. ---------------------
  222. Before version 1.6, Django defaulted to using :mod:`pickle` to serialize
  223. session data before storing it in the backend. If you're using the :ref:`signed
  224. cookie session backend<cookie-session-backend>` and :setting:`SECRET_KEY` is
  225. known by an attacker (there isn't an inherent vulnerability in Django that
  226. would cause it to leak), the attacker could insert a string into their session
  227. which, when unpickled, executes arbitrary code on the server. The technique for
  228. doing so is simple and easily available on the internet. Although the cookie
  229. session storage signs the cookie-stored data to prevent tampering, a
  230. :setting:`SECRET_KEY` leak immediately escalates to a remote code execution
  231. vulnerability.
  232. This attack can be mitigated by serializing session data using JSON rather
  233. than :mod:`pickle`. To facilitate this, Django 1.5.3 introduced a new setting,
  234. :setting:`SESSION_SERIALIZER`, to customize the session serialization format.
  235. For backwards compatibility, this setting defaults to
  236. using :class:`django.contrib.sessions.serializers.PickleSerializer` in
  237. Django 1.5.x, but, for security hardening, defaults to
  238. :class:`django.contrib.sessions.serializers.JSONSerializer` in Django 1.6.
  239. Even with the caveats described in :ref:`custom-serializers`, we highly
  240. recommend sticking with JSON serialization *especially if you are using the
  241. cookie backend*.
  242. Bundled Serializers
  243. ^^^^^^^^^^^^^^^^^^^
  244. .. class:: serializers.JSONSerializer
  245. A wrapper around the JSON serializer from :mod:`django.core.signing`. Can
  246. only serialize basic data types.
  247. In addition, as JSON supports only string keys, note that using non-string
  248. keys in ``request.session`` won't work as expected::
  249. >>> # initial assignment
  250. >>> request.session[0] = 'bar'
  251. >>> # subsequent requests following serialization & deserialization
  252. >>> # of session data
  253. >>> request.session[0] # KeyError
  254. >>> request.session['0']
  255. 'bar'
  256. See the :ref:`custom-serializers` section for more details on limitations
  257. of JSON serialization.
  258. .. class:: serializers.PickleSerializer
  259. Supports arbitrary Python objects, but, as described above, can lead to a
  260. remote code execution vulnerability if :setting:`SECRET_KEY` becomes known
  261. by an attacker.
  262. .. _custom-serializers:
  263. Write Your Own Serializer
  264. ^^^^^^^^^^^^^^^^^^^^^^^^^
  265. Note that unlike :class:`~django.contrib.sessions.serializers.PickleSerializer`,
  266. the :class:`~django.contrib.sessions.serializers.JSONSerializer` cannot handle
  267. arbitrary Python data types. As is often the case, there is a trade-off between
  268. convenience and security. If you wish to store more advanced data types
  269. including ``datetime`` and ``Decimal`` in JSON backed sessions, you will need
  270. to write a custom serializer (or convert such values to a JSON serializable
  271. object before storing them in ``request.session``). While serializing these
  272. values is fairly straightforward
  273. (``django.core.serializers.json.DateTimeAwareJSONEncoder`` may be helpful),
  274. writing a decoder that can reliably get back the same thing that you put in is
  275. more fragile. For example, you run the risk of returning a ``datetime`` that
  276. was actually a string that just happened to be in the same format chosen for
  277. ``datetime``\s).
  278. Your serializer class must implement two methods,
  279. ``dumps(self, obj)`` and ``loads(self, data)``, to serialize and deserialize
  280. the dictionary of session data, respectively.
  281. Session object guidelines
  282. -------------------------
  283. * Use normal Python strings as dictionary keys on ``request.session``. This
  284. is more of a convention than a hard-and-fast rule.
  285. * Session dictionary keys that begin with an underscore are reserved for
  286. internal use by Django.
  287. * Don't override ``request.session`` with a new object, and don't access or
  288. set its attributes. Use it like a Python dictionary.
  289. Examples
  290. --------
  291. This simplistic view sets a ``has_commented`` variable to ``True`` after a user
  292. posts a comment. It doesn't let a user post a comment more than once::
  293. def post_comment(request, new_comment):
  294. if request.session.get('has_commented', False):
  295. return HttpResponse("You've already commented.")
  296. c = comments.Comment(comment=new_comment)
  297. c.save()
  298. request.session['has_commented'] = True
  299. return HttpResponse('Thanks for your comment!')
  300. This simplistic view logs in a "member" of the site::
  301. def login(request):
  302. m = Member.objects.get(username=request.POST['username'])
  303. if m.password == request.POST['password']:
  304. request.session['member_id'] = m.id
  305. return HttpResponse("You're logged in.")
  306. else:
  307. return HttpResponse("Your username and password didn't match.")
  308. ...And this one logs a member out, according to ``login()`` above::
  309. def logout(request):
  310. try:
  311. del request.session['member_id']
  312. except KeyError:
  313. pass
  314. return HttpResponse("You're logged out.")
  315. The standard :meth:`django.contrib.auth.logout` function actually does a bit
  316. more than this to prevent inadvertent data leakage. It calls the
  317. :meth:`~backends.base.SessionBase.flush` method of ``request.session``.
  318. We are using this example as a demonstration of how to work with session
  319. objects, not as a full ``logout()`` implementation.
  320. Setting test cookies
  321. ====================
  322. As a convenience, Django provides an easy way to test whether the user's
  323. browser accepts cookies. Just call the
  324. :meth:`~backends.base.SessionBase.set_test_cookie` method of
  325. ``request.session`` in a view, and call
  326. :meth:`~backends.base.SessionBase.test_cookie_worked` in a subsequent view --
  327. not in the same view call.
  328. This awkward split between ``set_test_cookie()`` and ``test_cookie_worked()``
  329. is necessary due to the way cookies work. When you set a cookie, you can't
  330. actually tell whether a browser accepted it until the browser's next request.
  331. It's good practice to use
  332. :meth:`~backends.base.SessionBase.delete_test_cookie()` to clean up after
  333. yourself. Do this after you've verified that the test cookie worked.
  334. Here's a typical usage example::
  335. def login(request):
  336. if request.method == 'POST':
  337. if request.session.test_cookie_worked():
  338. request.session.delete_test_cookie()
  339. return HttpResponse("You're logged in.")
  340. else:
  341. return HttpResponse("Please enable cookies and try again.")
  342. request.session.set_test_cookie()
  343. return render_to_response('foo/login_form.html')
  344. Using sessions out of views
  345. ===========================
  346. .. note::
  347. The examples in this section import the ``SessionStore`` object directly
  348. from the ``django.contrib.sessions.backends.db`` backend. In your own code,
  349. you should consider importing ``SessionStore`` from the session engine
  350. designated by :setting:`SESSION_ENGINE`, as below:
  351. >>> from importlib import import_module
  352. >>> from django.conf import settings
  353. >>> SessionStore = import_module(settings.SESSION_ENGINE).SessionStore
  354. An API is available to manipulate session data outside of a view::
  355. >>> from django.contrib.sessions.backends.db import SessionStore
  356. >>> s = SessionStore()
  357. >>> # stored as seconds since epoch since datetimes are not serializable in JSON.
  358. >>> s['last_login'] = 1376587691
  359. >>> s.save()
  360. >>> s.session_key
  361. '2b1189a188b44ad18c35e113ac6ceead'
  362. >>> s = SessionStore(session_key='2b1189a188b44ad18c35e113ac6ceead')
  363. >>> s['last_login']
  364. 1376587691
  365. In order to mitigate session fixation attacks, sessions keys that don't exist
  366. are regenerated::
  367. >>> from django.contrib.sessions.backends.db import SessionStore
  368. >>> s = SessionStore(session_key='no-such-session-here')
  369. >>> s.save()
  370. >>> s.session_key
  371. 'ff882814010ccbc3c870523934fee5a2'
  372. If you're using the ``django.contrib.sessions.backends.db`` backend, each
  373. session is just a normal Django model. The ``Session`` model is defined in
  374. ``django/contrib/sessions/models.py``. Because it's a normal model, you can
  375. access sessions using the normal Django database API::
  376. >>> from django.contrib.sessions.models import Session
  377. >>> s = Session.objects.get(pk='2b1189a188b44ad18c35e113ac6ceead')
  378. >>> s.expire_date
  379. datetime.datetime(2005, 8, 20, 13, 35, 12)
  380. Note that you'll need to call ``get_decoded()`` to get the session dictionary.
  381. This is necessary because the dictionary is stored in an encoded format::
  382. >>> s.session_data
  383. 'KGRwMQpTJ19hdXRoX3VzZXJfaWQnCnAyCkkxCnMuMTExY2ZjODI2Yj...'
  384. >>> s.get_decoded()
  385. {'user_id': 42}
  386. When sessions are saved
  387. =======================
  388. By default, Django only saves to the session database when the session has been
  389. modified -- that is if any of its dictionary values have been assigned or
  390. deleted::
  391. # Session is modified.
  392. request.session['foo'] = 'bar'
  393. # Session is modified.
  394. del request.session['foo']
  395. # Session is modified.
  396. request.session['foo'] = {}
  397. # Gotcha: Session is NOT modified, because this alters
  398. # request.session['foo'] instead of request.session.
  399. request.session['foo']['bar'] = 'baz'
  400. In the last case of the above example, we can tell the session object
  401. explicitly that it has been modified by setting the ``modified`` attribute on
  402. the session object::
  403. request.session.modified = True
  404. To change this default behavior, set the :setting:`SESSION_SAVE_EVERY_REQUEST`
  405. setting to ``True``. When set to ``True``, Django will save the session to the
  406. database on every single request.
  407. Note that the session cookie is only sent when a session has been created or
  408. modified. If :setting:`SESSION_SAVE_EVERY_REQUEST` is ``True``, the session
  409. cookie will be sent on every request.
  410. Similarly, the ``expires`` part of a session cookie is updated each time the
  411. session cookie is sent.
  412. The session is not saved if the response's status code is 500.
  413. .. _browser-length-vs-persistent-sessions:
  414. Browser-length sessions vs. persistent sessions
  415. ===============================================
  416. You can control whether the session framework uses browser-length sessions vs.
  417. persistent sessions with the :setting:`SESSION_EXPIRE_AT_BROWSER_CLOSE`
  418. setting.
  419. By default, :setting:`SESSION_EXPIRE_AT_BROWSER_CLOSE` is set to ``False``,
  420. which means session cookies will be stored in users' browsers for as long as
  421. :setting:`SESSION_COOKIE_AGE`. Use this if you don't want people to have to
  422. log in every time they open a browser.
  423. If :setting:`SESSION_EXPIRE_AT_BROWSER_CLOSE` is set to ``True``, Django will
  424. use browser-length cookies -- cookies that expire as soon as the user closes
  425. their browser. Use this if you want people to have to log in every time they
  426. open a browser.
  427. This setting is a global default and can be overwritten at a per-session level
  428. by explicitly calling the :meth:`~backends.base.SessionBase.set_expiry` method
  429. of ``request.session`` as described above in `using sessions in views`_.
  430. .. note::
  431. Some browsers (Chrome, for example) provide settings that allow users to
  432. continue browsing sessions after closing and re-opening the browser. In
  433. some cases, this can interfere with the
  434. :setting:`SESSION_EXPIRE_AT_BROWSER_CLOSE` setting and prevent sessions
  435. from expiring on browser close. Please be aware of this while testing
  436. Django applications which have the
  437. :setting:`SESSION_EXPIRE_AT_BROWSER_CLOSE` setting enabled.
  438. Clearing the session store
  439. ==========================
  440. As users create new sessions on your website, session data can accumulate in
  441. your session store. If you're using the database backend, the
  442. ``django_session`` database table will grow. If you're using the file backend,
  443. your temporary directory will contain an increasing number of files.
  444. To understand this problem, consider what happens with the database backend.
  445. When a user logs in, Django adds a row to the ``django_session`` database
  446. table. Django updates this row each time the session data changes. If the user
  447. logs out manually, Django deletes the row. But if the user does *not* log out,
  448. the row never gets deleted. A similar process happens with the file backend.
  449. Django does *not* provide automatic purging of expired sessions. Therefore,
  450. it's your job to purge expired sessions on a regular basis. Django provides a
  451. clean-up management command for this purpose: :djadmin:`clearsessions`. It's
  452. recommended to call this command on a regular basis, for example as a daily
  453. cron job.
  454. Note that the cache backend isn't vulnerable to this problem, because caches
  455. automatically delete stale data. Neither is the cookie backend, because the
  456. session data is stored by the users' browsers.
  457. Settings
  458. ========
  459. A few :ref:`Django settings <settings-sessions>` give you control over session
  460. behavior:
  461. * :setting:`SESSION_CACHE_ALIAS`
  462. * :setting:`SESSION_COOKIE_AGE`
  463. * :setting:`SESSION_COOKIE_DOMAIN`
  464. * :setting:`SESSION_COOKIE_HTTPONLY`
  465. * :setting:`SESSION_COOKIE_NAME`
  466. * :setting:`SESSION_COOKIE_PATH`
  467. * :setting:`SESSION_COOKIE_SECURE`
  468. * :setting:`SESSION_ENGINE`
  469. * :setting:`SESSION_EXPIRE_AT_BROWSER_CLOSE`
  470. * :setting:`SESSION_FILE_PATH`
  471. * :setting:`SESSION_SAVE_EVERY_REQUEST`
  472. .. _topics-session-security:
  473. Session security
  474. ================
  475. Subdomains within a site are able to set cookies on the client for the whole
  476. domain. This makes session fixation possible if cookies are permitted from
  477. subdomains not controlled by trusted users.
  478. For example, an attacker could log into ``good.example.com`` and get a valid
  479. session for their account. If the attacker has control over ``bad.example.com``,
  480. they can use it to send their session key to you since a subdomain is permitted
  481. to set cookies on ``*.example.com``. When you visit ``good.example.com``,
  482. you'll be logged in as the attacker and might inadvertently enter your
  483. sensitive personal data (e.g. credit card info) into the attackers account.
  484. Another possible attack would be if ``good.example.com`` sets its
  485. :setting:`SESSION_COOKIE_DOMAIN` to ``".example.com"`` which would cause
  486. session cookies from that site to be sent to ``bad.example.com``.
  487. Technical details
  488. =================
  489. * The session dictionary accepts any :mod:`json` serializable value when using
  490. :class:`~django.contrib.sessions.serializers.JSONSerializer` or any
  491. pickleable Python object when using
  492. :class:`~django.contrib.sessions.serializers.PickleSerializer`. See the
  493. :mod:`pickle` module for more information.
  494. * Session data is stored in a database table named ``django_session`` .
  495. * Django only sends a cookie if it needs to. If you don't set any session
  496. data, it won't send a session cookie.
  497. Session IDs in URLs
  498. ===================
  499. The Django sessions framework is entirely, and solely, cookie-based. It does
  500. not fall back to putting session IDs in URLs as a last resort, as PHP does.
  501. This is an intentional design decision. Not only does that behavior make URLs
  502. ugly, it makes your site vulnerable to session-ID theft via the "Referer"
  503. header.