grub2/0062-Fix-security-issue-when-reading-username-and-passwor.patch

48 lines
1.3 KiB
Diff
Raw Normal View History

2020-07-29 20:47:36 +08:00
From 8483464867a872744a2c40a3b4016d3b81033a5d Mon Sep 17 00:00:00 2001
2019-09-30 10:52:04 -04:00
From: Hector Marco-Gisbert <hecmargi@upv.es>
Date: Fri, 13 Nov 2015 16:21:09 +0100
2020-07-29 20:47:36 +08:00
Subject: [PATCH 062/220] Fix security issue when reading username and password
2019-09-30 10:52:04 -04:00
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
2020-07-29 20:47:36 +08:00
index ca334d5..e6c78d1 100644
2019-09-30 10:52:04 -04:00
--- 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)
{
if (cur_len)
cur_len--;
diff --git a/grub-core/normal/auth.c b/grub-core/normal/auth.c
2020-07-29 20:47:36 +08:00
index 6be678c..c35ce97 100644
2019-09-30 10:52:04 -04:00
--- 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 == GRUB_TERM_BACKSPACE)
+ if (key == GRUB_TERM_BACKSPACE && cur_len)
{
if (cur_len)
{
2020-07-29 20:47:36 +08:00
--
1.8.3.1