* [PATCH] sudo: Upgrade to 1.9.5p2
@ 2021-01-27 20:14 Adolf Belka
2021-01-27 20:48 ` Peter Müller
0 siblings, 1 reply; 3+ messages in thread
From: Adolf Belka @ 2021-01-27 20:14 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1928 bytes --]
- Update sudo from 1.9.5p1 to 1.9.5p2
- Major changes between version 1.9.5p2 and 1.9.5p1:
Fixed sudo's setprogname(3) emulation on systems that don't provide it.
Fixed a problem with the sudoers log server client where a partial write to the server could result the sudo process consuming large amounts of CPU time due to a cycle in the buffer queue. Bug #954.
Added a missing dependency on libsudo_util in libsudo_eventlog. Fixes a link error when building sudo statically.
The user's KRB5CCNAME environment variable is now preserved when performing PAM authentication. This fixes GSSAPI authentication when the user has a non-default ccache.
When invoked as sudoedit, the same set of command line options are now accepted as for sudo -e. The -H and -P options are now rejected for sudoedit and sudo -e which matches the sudo 1.7 behavior. This is part of the fix for CVE-2021-3156.
Fixed a potential buffer overflow when unescaping backslashes in the command's arguments. Normally, sudo escapes special characters when running a command via a shell (sudo -s or sudo -i). However, it was also possible to run sudoedit with the -s or -i flags in which case no escaping had actually been done, making a buffer overflow possible. This fixes CVE-2021-3156.
- No change to rootfile
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/sudo | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/sudo b/lfs/sudo
index feba249cd..bb2279e8f 100644
--- a/lfs/sudo
+++ b/lfs/sudo
@@ -24,7 +24,7 @@
include Config
-VER = 1.9.5p1
+VER = 1.9.5p2
THISAPP = sudo-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 145f6e69c116f82cf0377ccf459344eb
+$(DL_FILE)_MD5 = e6bc4c18c06346e6b3431637a2b5f3d5
install : $(TARGET)
--
2.30.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] sudo: Upgrade to 1.9.5p2
2021-01-27 20:14 [PATCH] sudo: Upgrade to 1.9.5p2 Adolf Belka
@ 2021-01-27 20:48 ` Peter Müller
2021-01-27 21:11 ` Michael Tremer
0 siblings, 1 reply; 3+ messages in thread
From: Peter Müller @ 2021-01-27 20:48 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2144 bytes --]
Hello Adolf,
thank you. Looks good to me.
Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
Thanks, and best regards,
Peter Müller
> - Update sudo from 1.9.5p1 to 1.9.5p2
> - Major changes between version 1.9.5p2 and 1.9.5p1:
> Fixed sudo's setprogname(3) emulation on systems that don't provide it.
> Fixed a problem with the sudoers log server client where a partial write to the server could result the sudo process consuming large amounts of CPU time due to a cycle in the buffer queue. Bug #954.
> Added a missing dependency on libsudo_util in libsudo_eventlog. Fixes a link error when building sudo statically.
> The user's KRB5CCNAME environment variable is now preserved when performing PAM authentication. This fixes GSSAPI authentication when the user has a non-default ccache.
> When invoked as sudoedit, the same set of command line options are now accepted as for sudo -e. The -H and -P options are now rejected for sudoedit and sudo -e which matches the sudo 1.7 behavior. This is part of the fix for CVE-2021-3156.
> Fixed a potential buffer overflow when unescaping backslashes in the command's arguments. Normally, sudo escapes special characters when running a command via a shell (sudo -s or sudo -i). However, it was also possible to run sudoedit with the -s or -i flags in which case no escaping had actually been done, making a buffer overflow possible. This fixes CVE-2021-3156.
> - No change to rootfile
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/sudo | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lfs/sudo b/lfs/sudo
> index feba249cd..bb2279e8f 100644
> --- a/lfs/sudo
> +++ b/lfs/sudo
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 1.9.5p1
> +VER = 1.9.5p2
>
> THISAPP = sudo-$(VER)
> DL_FILE = $(THISAPP).tar.gz
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_MD5 = 145f6e69c116f82cf0377ccf459344eb
> +$(DL_FILE)_MD5 = e6bc4c18c06346e6b3431637a2b5f3d5
>
> install : $(TARGET)
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] sudo: Upgrade to 1.9.5p2
2021-01-27 20:48 ` Peter Müller
@ 2021-01-27 21:11 ` Michael Tremer
0 siblings, 0 replies; 3+ messages in thread
From: Michael Tremer @ 2021-01-27 21:11 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2348 bytes --]
Thank you to both of you for working on this. I have merged this into next :)
> On 27 Jan 2021, at 20:48, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>
> Hello Adolf,
>
> thank you. Looks good to me.
>
> Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
>
> Thanks, and best regards,
> Peter Müller
>
>
>> - Update sudo from 1.9.5p1 to 1.9.5p2
>> - Major changes between version 1.9.5p2 and 1.9.5p1:
>> Fixed sudo's setprogname(3) emulation on systems that don't provide it.
>> Fixed a problem with the sudoers log server client where a partial write to the server could result the sudo process consuming large amounts of CPU time due to a cycle in the buffer queue. Bug #954.
>> Added a missing dependency on libsudo_util in libsudo_eventlog. Fixes a link error when building sudo statically.
>> The user's KRB5CCNAME environment variable is now preserved when performing PAM authentication. This fixes GSSAPI authentication when the user has a non-default ccache.
>> When invoked as sudoedit, the same set of command line options are now accepted as for sudo -e. The -H and -P options are now rejected for sudoedit and sudo -e which matches the sudo 1.7 behavior. This is part of the fix for CVE-2021-3156.
>> Fixed a potential buffer overflow when unescaping backslashes in the command's arguments. Normally, sudo escapes special characters when running a command via a shell (sudo -s or sudo -i). However, it was also possible to run sudoedit with the -s or -i flags in which case no escaping had actually been done, making a buffer overflow possible. This fixes CVE-2021-3156.
>> - No change to rootfile
>>
>> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
>> ---
>> lfs/sudo | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/lfs/sudo b/lfs/sudo
>> index feba249cd..bb2279e8f 100644
>> --- a/lfs/sudo
>> +++ b/lfs/sudo
>> @@ -24,7 +24,7 @@
>>
>> include Config
>>
>> -VER = 1.9.5p1
>> +VER = 1.9.5p2
>>
>> THISAPP = sudo-$(VER)
>> DL_FILE = $(THISAPP).tar.gz
>> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>>
>> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>>
>> -$(DL_FILE)_MD5 = 145f6e69c116f82cf0377ccf459344eb
>> +$(DL_FILE)_MD5 = e6bc4c18c06346e6b3431637a2b5f3d5
>>
>> install : $(TARGET)
>>
>>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-01-27 21:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-27 20:14 [PATCH] sudo: Upgrade to 1.9.5p2 Adolf Belka
2021-01-27 20:48 ` Peter Müller
2021-01-27 21:11 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox