orion / rpms / python3x-pip

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