sessions.txt 27 KB

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