a2381c
From 69d1b3fc29677af8ade8dc15dba83f0589cb63d6 Mon Sep 17 00:00:00 2001
a2381c
From: Lasse Collin <lasse.collin@tukaani.org>
a2381c
Date: Tue, 29 Mar 2022 19:19:12 +0300
a2381c
Subject: [PATCH] xzgrep: Fix escaping of malicious filenames (ZDI-CAN-16587).
a2381c
a2381c
Malicious filenames can make xzgrep to write to arbitrary files
a2381c
or (with a GNU sed extension) lead to arbitrary code execution.
a2381c
a2381c
xzgrep from XZ Utils versions up to and including 5.2.5 are
a2381c
affected. 5.3.1alpha and 5.3.2alpha are affected as well.
a2381c
This patch works for all of them.
a2381c
a2381c
This bug was inherited from gzip's zgrep. gzip 1.12 includes
a2381c
a fix for zgrep.
a2381c
a2381c
The issue with the old sed script is that with multiple newlines,
a2381c
the N-command will read the second line of input, then the
a2381c
s-commands will be skipped because it's not the end of the
a2381c
file yet, then a new sed cycle starts and the pattern space
a2381c
is printed and emptied. So only the last line or two get escaped.
a2381c
a2381c
One way to fix this would be to read all lines into the pattern
a2381c
space first. However, the included fix is even simpler: All lines
a2381c
except the last line get a backslash appended at the end. To ensure
a2381c
that shell command substitution doesn't eat a possible trailing
a2381c
newline, a colon is appended to the filename before escaping.
a2381c
The colon is later used to separate the filename from the grep
a2381c
output so it is fine to add it here instead of a few lines later.
a2381c
a2381c
The old code also wasn't POSIX compliant as it used \n in the
a2381c
replacement section of the s-command. Using \<newline> is the
a2381c
POSIX compatible method.
a2381c
a2381c
LC_ALL=C was added to the two critical sed commands. POSIX sed
a2381c
manual recommends it when using sed to manipulate pathnames
a2381c
because in other locales invalid multibyte sequences might
a2381c
cause issues with some sed implementations. In case of GNU sed,
a2381c
these particular sed scripts wouldn't have such problems but some
a2381c
other scripts could have, see:
a2381c
a2381c
    info '(sed)Locale Considerations'
a2381c
a2381c
This vulnerability was discovered by:
a2381c
cleemy desu wayo working with Trend Micro Zero Day Initiative
a2381c
a2381c
Thanks to Jim Meyering and Paul Eggert discussing the different
a2381c
ways to fix this and for coordinating the patch release schedule
a2381c
with gzip.
a2381c
---
a2381c
 src/scripts/xzgrep.in | 20 ++++++++++++--------
a2381c
 1 file changed, 12 insertions(+), 8 deletions(-)
a2381c
a2381c
diff --git a/src/scripts/xzgrep.in b/src/scripts/xzgrep.in
a2381c
index b180936..e5186ba 100644
a2381c
--- a/src/scripts/xzgrep.in
a2381c
+++ b/src/scripts/xzgrep.in
a2381c
@@ -180,22 +180,26 @@ for i; do
a2381c
          { test $# -eq 1 || test $no_filename -eq 1; }; then
a2381c
       eval "$grep"
a2381c
     else
a2381c
+      # Append a colon so that the last character will never be a newline
a2381c
+      # which would otherwise get lost in shell command substitution.
a2381c
+      i="$i:"
a2381c
+
a2381c
+      # Escape & \ | and newlines only if such characters are present
a2381c
+      # (speed optimization).
a2381c
       case $i in
a2381c
       (*'
a2381c
 '* | *'&'* | *'\'* | *'|'*)
a2381c
-        i=$(printf '%s\n' "$i" |
a2381c
-            sed '
a2381c
-              $!N
a2381c
-              $s/[&\|]/\\&/g
a2381c
-              $s/\n/\\n/g
a2381c
-            ');;
a2381c
+        i=$(printf '%s\n' "$i" | LC_ALL=C sed 's/[&\|]/\\&/;; $!s/$/\\/');;
a2381c
       esac
a2381c
-      sed_script="s|^|$i:|"
a2381c
+
a2381c
+      # $i already ends with a colon so don't add it here.
a2381c
+      sed_script="s|^|$i|"
a2381c
 
a2381c
       # Fail if grep or sed fails.
a2381c
       r=$(
a2381c
         exec 4>&1
a2381c
-        (eval "$grep" 4>&-; echo $? >&4) 3>&- | sed "$sed_script" >&3 4>&-
a2381c
+        (eval "$grep" 4>&-; echo $? >&4) 3>&- |
a2381c
+            LC_ALL=C sed "$sed_script" >&3 4>&-
a2381c
       ) || r=2
a2381c
       exit $r
a2381c
     fi >&3 5>&-
a2381c
-- 
a2381c
2.35.1
a2381c