From 4a0a578f4394ff9ebb255f5833b488df9a508b31 Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Mon, 6 Aug 2018 23:28:41 +0200 Subject: [PATCH] kamailio-5.x: add fix for CVE-2018-14767 CVE-2018-14767: "In Kamailio before 5.0.7 and 5.1.x before 5.1.4, a crafted SIP message with a double "To" header and an empty "To" tag causes a segmentation fault and crash. The reason is missing input validation in the "build_res_buf_from_sip_req" core function. This could result in denial of service and potentially the execution of arbitrary code." Signed-off-by: Sebastian Kemper --- net/kamailio-5.x/Makefile | 2 +- .../patches/140-CVE-2018-14767.patch | 28 +++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 net/kamailio-5.x/patches/140-CVE-2018-14767.patch diff --git a/net/kamailio-5.x/Makefile b/net/kamailio-5.x/Makefile index ca8adc9..95da485 100644 --- a/net/kamailio-5.x/Makefile +++ b/net/kamailio-5.x/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=kamailio5 PKG_VERSION:=5.1.3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=https://www.kamailio.org/pub/kamailio/$(PKG_VERSION)/src PKG_SOURCE:=kamailio-$(PKG_VERSION)$(PKG_VARIANT)_src.tar.gz diff --git a/net/kamailio-5.x/patches/140-CVE-2018-14767.patch b/net/kamailio-5.x/patches/140-CVE-2018-14767.patch new file mode 100644 index 0000000..801353f --- /dev/null +++ b/net/kamailio-5.x/patches/140-CVE-2018-14767.patch @@ -0,0 +1,28 @@ +commit 281a6c6b6eaaf30058b603325e8ded20b99e1456 +Author: Henning Westerholt +Date: Mon May 7 09:36:53 2018 +0200 + + core: improve to header check guards, str consists of length and pointer + +diff --git a/src/core/msg_translator.c b/src/core/msg_translator.c +index 22122768a..4dd648e87 100644 +--- a/src/core/msg_translator.c ++++ b/src/core/msg_translator.c +@@ -2369,7 +2369,7 @@ char * build_res_buf_from_sip_req( unsigned int code, str *text ,str *new_tag, + case HDR_TO_T: + if (new_tag && new_tag->len) { + to_tag=get_to(msg)->tag_value; +- if ( to_tag.len || to_tag.s ) ++ if ( to_tag.len && to_tag.s ) + len+=new_tag->len-to_tag.len; + else + len+=new_tag->len+TOTAG_TOKEN_LEN/*";tag="*/; +@@ -2497,7 +2497,7 @@ char * build_res_buf_from_sip_req( unsigned int code, str *text ,str *new_tag, + break; + case HDR_TO_T: + if (new_tag && new_tag->len){ +- if (to_tag.s ) { /* replacement */ ++ if (to_tag.len && to_tag.s) { /* replacement */ + /* before to-tag */ + append_str( p, hdr->name.s, to_tag.s-hdr->name.s); + /* to tag replacement */ -- 2.30.2