Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] dovecot: bump version to 2.2.29.1 (security)
@ 2017-04-12 15:56 Vicente Olivert Riera
  2017-04-12 19:01 ` Thomas Petazzoni
  2017-04-24 19:19 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Vicente Olivert Riera @ 2017-04-12 15:56 UTC (permalink / raw)
  To: buildroot

Security fix:

  passdb/userdb dict: Don't double-expand %variables in keys. If dict
  was used as the authentication passdb, using specially crafted
  %variables in the username could be used to cause DoS (CVE-2017-2669)

Full ChangeLog 2.2.29 (including CVE fix):
  https://www.dovecot.org/list/dovecot-news/2017-April/000341.html

Full ChangeLog 2.2.29.1 (some fixes forgotten in the 2.2.29 release):

  https://www.dovecot.org/list/dovecot-news/2017-April/000344.html

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 package/dovecot/dovecot.hash | 2 +-
 package/dovecot/dovecot.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/dovecot/dovecot.hash b/package/dovecot/dovecot.hash
index b52ea8d..46e7c5a 100644
--- a/package/dovecot/dovecot.hash
+++ b/package/dovecot/dovecot.hash
@@ -1,2 +1,2 @@
 # Locally computed after checking signature
-sha256 e0288f59e326ab87cb3881fdabadafe542f4dc7ab9996db13863a439ebbc1f25  dovecot-2.2.28.tar.gz
+sha256 ccfa9ffb7eb91e9e87c21c108324b911250c9ffa838bffb64b1caafadcb0f388  dovecot-2.2.29.1.tar.gz
diff --git a/package/dovecot/dovecot.mk b/package/dovecot/dovecot.mk
index a7f6de4..3f71f68 100644
--- a/package/dovecot/dovecot.mk
+++ b/package/dovecot/dovecot.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 DOVECOT_VERSION_MAJOR = 2.2
-DOVECOT_VERSION = $(DOVECOT_VERSION_MAJOR).28
+DOVECOT_VERSION = $(DOVECOT_VERSION_MAJOR).29.1
 DOVECOT_SITE = http://www.dovecot.org/releases/$(DOVECOT_VERSION_MAJOR)
 DOVECOT_INSTALL_STAGING = YES
 DOVECOT_LICENSE = LGPL-2.1
-- 
2.10.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] dovecot: bump version to 2.2.29.1 (security)
  2017-04-12 15:56 [Buildroot] [PATCH] dovecot: bump version to 2.2.29.1 (security) Vicente Olivert Riera
@ 2017-04-12 19:01 ` Thomas Petazzoni
  2017-04-24 19:19 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2017-04-12 19:01 UTC (permalink / raw)
  To: buildroot

Hello,

On Wed, 12 Apr 2017 16:56:47 +0100, Vicente Olivert Riera wrote:
> Security fix:
> 
>   passdb/userdb dict: Don't double-expand %variables in keys. If dict
>   was used as the authentication passdb, using specially crafted
>   %variables in the username could be used to cause DoS (CVE-2017-2669)
> 
> Full ChangeLog 2.2.29 (including CVE fix):
>   https://www.dovecot.org/list/dovecot-news/2017-April/000341.html
> 
> Full ChangeLog 2.2.29.1 (some fixes forgotten in the 2.2.29 release):
> 
>   https://www.dovecot.org/list/dovecot-news/2017-April/000344.html
> 
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
>  package/dovecot/dovecot.hash | 2 +-
>  package/dovecot/dovecot.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Applied to master, thanks.

Peter: wanted for the LTS branch.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] dovecot: bump version to 2.2.29.1 (security)
  2017-04-12 15:56 [Buildroot] [PATCH] dovecot: bump version to 2.2.29.1 (security) Vicente Olivert Riera
  2017-04-12 19:01 ` Thomas Petazzoni
@ 2017-04-24 19:19 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2017-04-24 19:19 UTC (permalink / raw)
  To: buildroot

>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:

 > Security fix:
 >   passdb/userdb dict: Don't double-expand %variables in keys. If dict
 >   was used as the authentication passdb, using specially crafted
 >   %variables in the username could be used to cause DoS (CVE-2017-2669)

 > Full ChangeLog 2.2.29 (including CVE fix):
 >   https://www.dovecot.org/list/dovecot-news/2017-April/000341.html

 > Full ChangeLog 2.2.29.1 (some fixes forgotten in the 2.2.29 release):

 >   https://www.dovecot.org/list/dovecot-news/2017-April/000344.html

 > Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Committed to 2017.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-04-24 19:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-12 15:56 [Buildroot] [PATCH] dovecot: bump version to 2.2.29.1 (security) Vicente Olivert Riera
2017-04-12 19:01 ` Thomas Petazzoni
2017-04-24 19:19 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox