summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Palmer <dan@danpalmer.me>2020-05-20 11:45:31 +0200
committerCarlton Gibson <carlton.gibson@noumenal.es>2020-06-03 09:34:29 +0200
commit07e59caa02831c4569bbebb9eb773bdd9cb4b206 (patch)
treeb1725081dd77ed3a4ae82e2b4b9cc0e81f5b4e3a /docs
parent6d61860b22875f358fac83d903dc629897934815 (diff)
[2.2.x] Fixed CVE-2020-13254 -- Enforced cache key validation in memcached backends.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.2.13.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/releases/2.2.13.txt b/docs/releases/2.2.13.txt
index ee381fdcce..3e455e7b4a 100644
--- a/docs/releases/2.2.13.txt
+++ b/docs/releases/2.2.13.txt
@@ -6,6 +6,14 @@ Django 2.2.13 release notes
Django 2.2.13 fixes two security issues and a regression in 2.2.12.
+CVE-2020-13254: Potential data leakage via malformed memcached keys
+===================================================================
+
+In cases where a memcached backend does not perform key validation, passing
+malformed cache keys could result in a key collision, and potential data
+leakage. In order to avoid this vulnerability, key validation is added to the
+memcached cache backends.
+
CVE-2020-13596: Possible XSS via admin ``ForeignKeyRawIdWidget``
================================================================