summaryrefslogtreecommitdiff
path: root/libre/grub/0001-Fix-security-issue-when-reading-username-and-passwor.patch
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2017-02-05 20:54:35 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2017-02-05 22:24:22 -0300
commitfabcd1879cdfaac762a307a26bdee4bfef3876f9 (patch)
treec1916ca546f3eb2d3962d8657b4eb726c8f26923 /libre/grub/0001-Fix-security-issue-when-reading-username-and-passwor.patch
parent59b2db03d1ded22f236c5ee6f01bb0c9e86877e5 (diff)
downloadabslibre-fabcd1879cdfaac762a307a26bdee4bfef3876f9.tar.gz
abslibre-fabcd1879cdfaac762a307a26bdee4bfef3876f9.tar.bz2
abslibre-fabcd1879cdfaac762a307a26bdee4bfef3876f9.zip
grub-1:2.02.rc1-1.parabola1: updating version
Diffstat (limited to 'libre/grub/0001-Fix-security-issue-when-reading-username-and-passwor.patch')
-rw-r--r--libre/grub/0001-Fix-security-issue-when-reading-username-and-passwor.patch47
1 files changed, 0 insertions, 47 deletions
diff --git a/libre/grub/0001-Fix-security-issue-when-reading-username-and-passwor.patch b/libre/grub/0001-Fix-security-issue-when-reading-username-and-passwor.patch
deleted file mode 100644
index aa07f2ffc..000000000
--- a/libre/grub/0001-Fix-security-issue-when-reading-username-and-passwor.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From e16eeda1200deabd0d3a4af968d526d62845a85f Mon Sep 17 00:00:00 2001
-From: Hector Marco-Gisbert <hecmargi@upv.es>
-Date: Fri, 13 Nov 2015 16:21:09 +0100
-Subject: [PATCH] Fix security issue when reading username and password
-
- This patch fixes two integer underflows at:
- * grub-core/lib/crypto.c
- * grub-core/normal/auth.c
-
-Resolves: CVE-2015-8370
-
-Signed-off-by: Hector Marco-Gisbert <hecmargi@upv.es>
-Signed-off-by: Ismael Ripoll-Ripoll <iripoll@disca.upv.es>
----
- grub-core/lib/crypto.c | 2 +-
- grub-core/normal/auth.c | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/grub-core/lib/crypto.c b/grub-core/lib/crypto.c
-index 010e550..524a3d8 100644
---- a/grub-core/lib/crypto.c
-+++ b/grub-core/lib/crypto.c
-@@ -468,7 +468,7 @@ grub_password_get (char buf[], unsigned buf_size)
- break;
- }
-
-- if (key == '\b')
-+ if (key == '\b' && cur_len)
- {
- cur_len--;
- continue;
-diff --git a/grub-core/normal/auth.c b/grub-core/normal/auth.c
-index c6bd96e..5782ec5 100644
---- a/grub-core/normal/auth.c
-+++ b/grub-core/normal/auth.c
-@@ -172,7 +172,7 @@ grub_username_get (char buf[], unsigned buf_size)
- break;
- }
-
-- if (key == '\b')
-+ if (key == '\b' && cur_len)
- {
- cur_len--;
- grub_printf ("\b");
---
-2.6.4
-