All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/samba4: security bump version to 4.14.10
@ 2021-11-10  5:58 Bernd Kuhls
  2021-11-11 10:33 ` Peter Korsgaard
  2021-11-17 21:21 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2021-11-10  5:58 UTC (permalink / raw)
  To: buildroot

Release notes:
https://www.samba.org/samba/history/samba-4.14.10.html

This is a security release in order to address the following defects:

o CVE-2016-2124:  SMB1 client connections can be downgraded to plaintext
                  authentication.
                  https://www.samba.org/samba/security/CVE-2016-2124.html

o CVE-2020-25717: A user on the domain can become root on domain members.
                  https://www.samba.org/samba/security/CVE-2020-25717.html
                  (PLEASE READ! There are important behaviour changes described)

o CVE-2020-25718: Samba AD DC did not correctly sandbox Kerberos tickets issued
                  by an RODC.
                  https://www.samba.org/samba/security/CVE-2020-25718.html

o CVE-2020-25719: Samba AD DC did not always rely on the SID and PAC in Kerberos
                  tickets.
                  https://www.samba.org/samba/security/CVE-2020-25719.html

o CVE-2020-25721: Kerberos acceptors need easy access to stable AD identifiers
                  (eg objectSid).
                  https://www.samba.org/samba/security/CVE-2020-25721.html

o CVE-2020-25722: Samba AD DC did not do suffienct access and conformance
                  checking of data stored.
                  https://www.samba.org/samba/security/CVE-2020-25722.html

o CVE-2021-3738:  Use after free in Samba AD DC RPC server.
                  https://www.samba.org/samba/security/CVE-2021-3738.html

o CVE-2021-23192: Subsequent DCE/RPC fragment injection vulnerability.
                  https://www.samba.org/samba/security/CVE-2021-23192.html

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/samba4/samba4.hash | 4 ++--
 package/samba4/samba4.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/samba4/samba4.hash b/package/samba4/samba4.hash
index a571ba79f4..033d932732 100644
--- a/package/samba4/samba4.hash
+++ b/package/samba4/samba4.hash
@@ -1,4 +1,4 @@
 # Locally calculated after checking pgp signature
-# https://download.samba.org/pub/samba/stable/samba-4.14.9.tar.asc
-sha256  7fb11818ef7f9bb817a3b21019358b1469aec98799057cc9e55933563361c409  samba-4.14.9.tar.gz
+# https://download.samba.org/pub/samba/stable/samba-4.14.10.tar.asc
+sha256  107ee862f58062682cec362ec68a24251292805f89aa4c97e7ab80237f91c7af  samba-4.14.10.tar.gz
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  COPYING
diff --git a/package/samba4/samba4.mk b/package/samba4/samba4.mk
index 83eb2dacda..eb1f3b830e 100644
--- a/package/samba4/samba4.mk
+++ b/package/samba4/samba4.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-SAMBA4_VERSION = 4.14.9
+SAMBA4_VERSION = 4.14.10
 SAMBA4_SITE = https://download.samba.org/pub/samba/stable
 SAMBA4_SOURCE = samba-$(SAMBA4_VERSION).tar.gz
 SAMBA4_INSTALL_STAGING = YES
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/samba4: security bump version to 4.14.10
  2021-11-10  5:58 [Buildroot] [PATCH 1/1] package/samba4: security bump version to 4.14.10 Bernd Kuhls
@ 2021-11-11 10:33 ` Peter Korsgaard
  2021-11-17 21:21 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2021-11-11 10:33 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Release notes:
 > https://www.samba.org/samba/history/samba-4.14.10.html

 > This is a security release in order to address the following defects:

 > o CVE-2016-2124:  SMB1 client connections can be downgraded to plaintext
 >                   authentication.
 >                   https://www.samba.org/samba/security/CVE-2016-2124.html

 > o CVE-2020-25717: A user on the domain can become root on domain members.
 >                   https://www.samba.org/samba/security/CVE-2020-25717.html
 >                   (PLEASE READ! There are important behaviour changes described)

 > o CVE-2020-25718: Samba AD DC did not correctly sandbox Kerberos tickets issued
 >                   by an RODC.
 >                   https://www.samba.org/samba/security/CVE-2020-25718.html

 > o CVE-2020-25719: Samba AD DC did not always rely on the SID and PAC in Kerberos
 >                   tickets.
 >                   https://www.samba.org/samba/security/CVE-2020-25719.html

 > o CVE-2020-25721: Kerberos acceptors need easy access to stable AD identifiers
 >                   (eg objectSid).
 >                   https://www.samba.org/samba/security/CVE-2020-25721.html

 > o CVE-2020-25722: Samba AD DC did not do suffienct access and conformance
 >                   checking of data stored.
 >                   https://www.samba.org/samba/security/CVE-2020-25722.html

 > o CVE-2021-3738:  Use after free in Samba AD DC RPC server.
 >                   https://www.samba.org/samba/security/CVE-2021-3738.html

 > o CVE-2021-23192: Subsequent DCE/RPC fragment injection vulnerability.
 >                   https://www.samba.org/samba/security/CVE-2021-23192.html

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/samba4: security bump version to 4.14.10
  2021-11-10  5:58 [Buildroot] [PATCH 1/1] package/samba4: security bump version to 4.14.10 Bernd Kuhls
  2021-11-11 10:33 ` Peter Korsgaard
@ 2021-11-17 21:21 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2021-11-17 21:21 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Release notes:
 > https://www.samba.org/samba/history/samba-4.14.10.html

 > This is a security release in order to address the following defects:

 > o CVE-2016-2124:  SMB1 client connections can be downgraded to plaintext
 >                   authentication.
 >                   https://www.samba.org/samba/security/CVE-2016-2124.html

 > o CVE-2020-25717: A user on the domain can become root on domain members.
 >                   https://www.samba.org/samba/security/CVE-2020-25717.html
 >                   (PLEASE READ! There are important behaviour changes described)

 > o CVE-2020-25718: Samba AD DC did not correctly sandbox Kerberos tickets issued
 >                   by an RODC.
 >                   https://www.samba.org/samba/security/CVE-2020-25718.html

 > o CVE-2020-25719: Samba AD DC did not always rely on the SID and PAC in Kerberos
 >                   tickets.
 >                   https://www.samba.org/samba/security/CVE-2020-25719.html

 > o CVE-2020-25721: Kerberos acceptors need easy access to stable AD identifiers
 >                   (eg objectSid).
 >                   https://www.samba.org/samba/security/CVE-2020-25721.html

 > o CVE-2020-25722: Samba AD DC did not do suffienct access and conformance
 >                   checking of data stored.
 >                   https://www.samba.org/samba/security/CVE-2020-25722.html

 > o CVE-2021-3738:  Use after free in Samba AD DC RPC server.
 >                   https://www.samba.org/samba/security/CVE-2021-3738.html

 > o CVE-2021-23192: Subsequent DCE/RPC fragment injection vulnerability.
 >                   https://www.samba.org/samba/security/CVE-2021-23192.html

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed to 2021.02.x and 2021.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-11-17 21:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-10  5:58 [Buildroot] [PATCH 1/1] package/samba4: security bump version to 4.14.10 Bernd Kuhls
2021-11-11 10:33 ` Peter Korsgaard
2021-11-17 21:21 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.