diff options
| author | Tim Graham <timograham@gmail.com> | 2013-09-11 08:17:15 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-09-11 08:18:56 -0400 |
| commit | cca302cde6b524992d89add9b9f293d86ac8fba0 (patch) | |
| tree | d70a01cd2bfbff98dea35cb54416cc272d13ef77 /docs | |
| parent | 434d122a74647c647f906aaabe235ae62601682d (diff) | |
[1.4.x] Fixed #20887 -- Added a warning to GzipMiddleware in light of BREACH.
Thanks EvilDMP for the report and Russell Keith-Magee
for the draft text.
Backport of da843e7dba from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/middleware.txt | 14 | ||||
| -rw-r--r-- | docs/topics/cache.txt | 5 |
2 files changed, 18 insertions, 1 deletions
diff --git a/docs/ref/middleware.txt b/docs/ref/middleware.txt index 1bba12e821..a9c67dbf11 100644 --- a/docs/ref/middleware.txt +++ b/docs/ref/middleware.txt @@ -90,6 +90,20 @@ GZip middleware .. class:: GZipMiddleware +.. warning:: + + Security researchers recently revealed that when compression techniques + (including ``GZipMiddleware``) are used on a website, the site becomes + exposed to a number of possible attacks. These approaches can be used to + compromise, amongst other things, Django's CSRF protection. Before using + ``GZipMiddleware`` on your site, you should consider very carefully whether + you are subject to these attacks. If you're in *any* doubt about whether + you're affected, you should avoid using ``GZipMiddleware``. For more + details, see the `the BREACH paper (PDF)`_ and `breachattack.com`_. + + .. _the BREACH paper (PDF): http://breachattack.com/resources/BREACH%20-%20SSL,%20gone%20in%2030%20seconds.pdf + .. _breachattack.com: http://breachattack.com + Compresses content for browsers that understand GZip compression (all modern browsers). diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt index 99d764b60d..fa0a18c8f7 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -1164,7 +1164,10 @@ site's performance: and ``Last-Modified`` headers. * :class:`django.middleware.gzip.GZipMiddleware` compresses responses for all - modern browsers, saving bandwidth and transfer time. + modern browsers, saving bandwidth and transfer time. Be warned, however, + that compression techniques like ``GZipMiddleware`` are subject to attacks. + See the warning in :class:`~django.middleware.gzip.GZipMiddleware` for + details. Order of MIDDLEWARE_CLASSES =========================== |
