summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXtreak <tir.karthi@gmail.com>2018-12-29 08:53:14 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-12-29 08:53:14 (GMT)
commit78de01198b047347abc5e458851bb12c48429e24 (patch)
tree283cae69008846284c79afa38dcf1ccd148a7238 /Misc
parent1f511e1af060e98fb789319a96076c06e7f98135 (diff)
downloadcpython-78de01198b047347abc5e458851bb12c48429e24.zip
cpython-78de01198b047347abc5e458851bb12c48429e24.tar.gz
cpython-78de01198b047347abc5e458851bb12c48429e24.tar.bz2
bpo-35603: Escape table header of make_table output that can cause potential XSS. (GH-11341)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-12-28-14-53-22.bpo-35603.rVCZAE.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-12-28-14-53-22.bpo-35603.rVCZAE.rst b/Misc/NEWS.d/next/Library/2018-12-28-14-53-22.bpo-35603.rVCZAE.rst
new file mode 100644
index 0000000..03150c3
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-12-28-14-53-22.bpo-35603.rVCZAE.rst
@@ -0,0 +1,2 @@
+Escape table header output of :meth:`difflib.HtmlDiff.make_table`.
+Patch by Karthikeyan Singaravelan.