]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
templatetags: Do not mark output of msgid tag as safe
authorAndrew Donnellan <ajd@linux.ibm.com>
Mon, 1 Jul 2019 05:28:03 +0000 (15:28 +1000)
committerDaniel Axtens <dja@axtens.net>
Fri, 5 Jul 2019 01:09:02 +0000 (11:09 +1000)
The msgid template tag exists to remove angle brackets from either side of
the Message-ID header.

It also marks its output as safe, meaning it does not get autoescaped by
Django templating.

Its output is not safe. A maliciously crafted email can include HTML tags
inside the Message-ID header, and as long as the angle brackets are not at
the start and end of the header, we will quite happily render them.

Rather than using mark_safe(), use escape() to explicitly escape the
Message-ID.

Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
Signed-off-by: Daniel Axtens <dja@axtens.net>
patchwork/templatetags/patch.py

index ea5a71de362fbf2b6936268bf5dbc8ce293a989b..757f873b6043b495a044810eb89527821eb9fd94 100644 (file)
@@ -5,6 +5,7 @@
 # SPDX-License-Identifier: GPL-2.0-or-later
 
 from django import template
+from django.utils.html import escape
 from django.utils.safestring import mark_safe
 from django.template.defaultfilters import stringfilter
 
@@ -64,4 +65,4 @@ def patch_checks(patch):
 @register.filter
 @stringfilter
 def msgid(value):
-    return mark_safe(value.strip('<>'))
+    return escape(value.strip('<>'))