From 4687f3303f61bb4bd8fbc0264d43f3a3dfb9f3d8 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Mon, 21 Nov 2016 22:33:32 +0900 Subject: New patch 903_input-type.patch to fix null deref [CVE-2016-9430] --- debian/patches/903_input-type.patch | 35 +++++++++++++++++++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 36 insertions(+) create mode 100644 debian/patches/903_input-type.patch (limited to 'debian/patches') diff --git a/debian/patches/903_input-type.patch b/debian/patches/903_input-type.patch new file mode 100644 index 0000000..a7f5aee --- /dev/null +++ b/debian/patches/903_input-type.patch @@ -0,0 +1,35 @@ +Subject: Prevent segfault with malformed input type +Author: Tatsuya Kinoshita +Bug-Debian: https://github.com/tats/w3m/issues/7 [CVE-2016-9430] +Origin: https://anonscm.debian.org/cgit/collab-maint/w3m.git/commit/?id=59b91cd8e30c86f23476fa81ae005cabff49ebb6 + +diff --git a/file.c b/file.c +index 1e363d0..d06b2cf 100644 +--- a/file.c ++++ b/file.c +@@ -3622,9 +3622,10 @@ process_input(struct parsed_tag *tag) + Strcat(tmp, getLinkNumberStr(0)); + Strcat_char(tmp, '('); + } +- Strcat(tmp, Sprintf(""); +- Strcat(tmp, Sprintf("", +- cur_hseq++, cur_form_id, p, html_quote(r), qq)); ++ cur_hseq++, cur_form_id, html_quote(p), ++ html_quote(r), qq)); + return tmp; + } + diff --git a/debian/patches/series b/debian/patches/series index 72bd87c..7df5c12 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -38,3 +38,4 @@ 900_ChangeLog.patch 901_ucsmap.patch 902_johab1.patch +903_input-type.patch -- cgit v1.2.3