orion / rpms / python3x-pip

Forked from rpms/python3x-pip 2 years ago
Clone
78ef14
From d135e45152a88b896b1d3e8770d5d59f694c2419 Mon Sep 17 00:00:00 2001
78ef14
From: Lumir Balhar <lbalhar@redhat.com>
78ef14
Date: Tue, 8 Jun 2021 10:08:49 +0200
78ef14
Subject: [PATCH] CVE-2021-3572
78ef14
78ef14
---
78ef14
 src/pip/_internal/vcs/git.py | 10 ++++++++--
78ef14
 1 file changed, 8 insertions(+), 2 deletions(-)
78ef14
78ef14
diff --git a/src/pip/_internal/vcs/git.py b/src/pip/_internal/vcs/git.py
78ef14
index a9c7fb6..b38625e 100644
78ef14
--- a/src/pip/_internal/vcs/git.py
78ef14
+++ b/src/pip/_internal/vcs/git.py
78ef14
@@ -142,9 +142,15 @@ class Git(VersionControl):
78ef14
             pass
78ef14
 
78ef14
         refs = {}
78ef14
-        for line in output.strip().splitlines():
78ef14
+        # NOTE: We do not use splitlines here since that would split on other
78ef14
+        #       unicode separators, which can be maliciously used to install a
78ef14
+        #       different revision.
78ef14
+        for line in output.strip().split("\n"):
78ef14
+            line = line.rstrip("\r")
78ef14
+            if not line:
78ef14
+                continue
78ef14
             try:
78ef14
-                sha, ref = line.split()
78ef14
+                sha, ref = line.split(" ", maxsplit=2)
78ef14
             except ValueError:
78ef14
                 # Include the offending line to simplify troubleshooting if
78ef14
                 # this error ever occurs.
78ef14
-- 
78ef14
2.31.1
78ef14