From 3c1dc7231784dd72189008b1e2152cad313126c2 Mon Sep 17 00:00:00 2001 From: eabdullin Date: Wed, 27 Mar 2024 20:36:50 +0000 Subject: [PATCH] import CS traceroute-2.1.0-8.el8 --- SOURCES/001-traceroute-CVE-2023-46316.patch | 68 +++++++++++++++++++++ SPECS/traceroute.spec | 12 +++- 2 files changed, 78 insertions(+), 2 deletions(-) create mode 100644 SOURCES/001-traceroute-CVE-2023-46316.patch diff --git a/SOURCES/001-traceroute-CVE-2023-46316.patch b/SOURCES/001-traceroute-CVE-2023-46316.patch new file mode 100644 index 0000000..0c25298 --- /dev/null +++ b/SOURCES/001-traceroute-CVE-2023-46316.patch @@ -0,0 +1,68 @@ +From 9a605da8a6c72f0f52f505f38adb3133b7e726f8 Mon Sep 17 00:00:00 2001 +From: Jan Macku +Date: Mon, 30 Oct 2023 12:55:43 +0100 +Subject: [PATCH] Fix command line parsing in wrappers + +Resolves: CVE-2023-46316 +--- + wrappers/tcptraceroute | 2 +- + wrappers/tracepath | 2 +- + wrappers/traceproto | 2 +- + wrappers/traceroute-nanog | 2 +- + 4 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/wrappers/tcptraceroute b/wrappers/tcptraceroute +index b4fc810..9063886 100755 +--- a/wrappers/tcptraceroute ++++ b/wrappers/tcptraceroute +@@ -26,7 +26,7 @@ usage () { + } + + +-PARSED=`getopt 'hvdnNi:l:f:Fm:p:q:w:s:t:SAE' "$@"` ++PARSED=`getopt -- 'hvdnNi:l:f:Fm:p:q:w:s:t:SAE' "$@"` + [ $? != 0 ] && exit 2 + + eval set -- "$PARSED" +diff --git a/wrappers/tracepath b/wrappers/tracepath +index 987b998..448f031 100755 +--- a/wrappers/tracepath ++++ b/wrappers/tracepath +@@ -25,7 +25,7 @@ usage () { + } + + +-PARSED=`getopt 'hnbl:' "$@"` ++PARSED=`getopt -- 'hnbl:' "$@"` + [ $? != 0 ] && exit 2 + + eval set -- "$PARSED" +diff --git a/wrappers/traceproto b/wrappers/traceproto +index 988fdc5..5dfd9a7 100755 +--- a/wrappers/traceproto ++++ b/wrappers/traceproto +@@ -38,7 +38,7 @@ warning () { + } + + +-PARSED=`getopt 'cCTfAhvRp:d:D:s:S:m:M:w:W:a:P:F:k:I:H:i:o:t:' "$@"` ++PARSED=`getopt -- 'cCTfAhvRp:d:D:s:S:m:M:w:W:a:P:F:k:I:H:i:o:t:' "$@"` + [ $? != 0 ] && exit 2 + + eval set -- "$PARSED" +diff --git a/wrappers/traceroute-nanog b/wrappers/traceroute-nanog +index 29fd2a4..aac4c83 100755 +--- a/wrappers/traceroute-nanog ++++ b/wrappers/traceroute-nanog +@@ -31,7 +31,7 @@ warning () { + } + + +-PARSED=`getopt 'adnruvAMOPQU$w:S:m:p:q:g:t:s:I:f:T:' "$@"` ++PARSED=`getopt -- 'adnruvAMOPQU$w:S:m:p:q:g:t:s:I:f:T:' "$@"` + [ $? != 0 ] && { + usage + exit 2 +-- +2.41.0 + diff --git a/SPECS/traceroute.spec b/SPECS/traceroute.spec index 1c03a19..a190e7c 100644 --- a/SPECS/traceroute.spec +++ b/SPECS/traceroute.spec @@ -2,12 +2,14 @@ Summary: Traces the route taken by packets over an IPv4/IPv6 network Name: traceroute Epoch: 3 Version: 2.1.0 -Release: 6%{?dist} +Release: 8%{?dist} Group: Applications/Internet License: GPLv2+ URL: http://traceroute.sourceforge.net Source0: http://downloads.sourceforge.net/project/traceroute/traceroute/traceroute-%{version}/traceroute-%{version}.tar.gz +Patch001: 001-traceroute-CVE-2023-46316.patch + Provides: tcptraceroute = 1.5-1 Obsoletes: tcptraceroute < 1.5-1 @@ -25,7 +27,7 @@ problems. %prep -%setup -q +%autosetup -p1 %build @@ -59,6 +61,12 @@ popd %changelog +* Mon Nov 27 2023 Jan Macku - 3:2.1.0-8 +- add gating.yaml + +* Mon Oct 30 2023 Jan Macku - 3:2.1.0-7 +- fix improper command line parsing (CVE-2023-46316) + * Fri Feb 09 2018 Fedora Release Engineering - 3:2.1.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild