* [Buildroot] [PATCH] pakage/apache: security bump to version 2.4.52
@ 2021-12-22 17:42 Peter Korsgaard
2021-12-23 17:37 ` Thomas Petazzoni
2022-01-23 19:49 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Peter Korsgaard @ 2021-12-22 17:42 UTC (permalink / raw)
To: buildroot; +Cc: Bernd Kuhls
Fixes the following security issues:
*) SECURITY: CVE-2021-44790: Possible buffer overflow when parsing
multipart content in mod_lua of Apache HTTP Server 2.4.51 and
earlier (cve.mitre.org)
A carefully crafted request body can cause a buffer overflow in
the mod_lua multipart parser (r:parsebody() called from Lua
scripts).
The Apache httpd team is not aware of an exploit for the
vulnerabilty though it might be possible to craft one.
This issue affects Apache HTTP Server 2.4.51 and earlier.
Credits: Chamal
*) SECURITY: CVE-2021-44224: Possible NULL dereference or SSRF in
forward proxy configurations in Apache HTTP Server 2.4.51 and
earlier (cve.mitre.org)
A crafted URI sent to httpd configured as a forward proxy
(ProxyRequests on) can cause a crash (NULL pointer dereference)
or, for configurations mixing forward and reverse proxy
declarations, can allow for requests to be directed to a
declared Unix Domain Socket endpoint (Server Side Request
Forgery).
This issue affects Apache HTTP Server 2.4.7 up to 2.4.51
(included).
For more details, see the changes file:
https://downloads.apache.org/httpd/CHANGES_2.4.52
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/apache/apache.hash | 6 +++---
package/apache/apache.mk | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/apache/apache.hash b/package/apache/apache.hash
index 138717c336..014d920772 100644
--- a/package/apache/apache.hash
+++ b/package/apache/apache.hash
@@ -1,5 +1,5 @@
-# From https://downloads.apache.org/httpd/httpd-2.4.51.tar.bz2.{sha256,sha512}
-sha256 20e01d81fecf077690a4439e3969a9b22a09a8d43c525356e863407741b838f4 httpd-2.4.51.tar.bz2
-sha512 9fb07c4b176f5c0485a143e2b1bb1085345ca9120b959974f68c37a8911a57894d2cb488b1b42fdf3102860b99e890204f5e9fa7ae3828b481119c563812cc66 httpd-2.4.51.tar.bz2
+# From https://downloads.apache.org/httpd/httpd-2.4.52.tar.bz2.{sha256,sha512}
+sha256 0127f7dc497e9983e9c51474bed75e45607f2f870a7675a86dc90af6d572f5c9 httpd-2.4.52.tar.bz2
+sha512 97c021c576022a9d32f4a390f62e07b5f550973aef2f299fd52defce1a9fa5d27bd4a676e7bf214373ba46063d34aecce42de62fdd93678a4e925cfcbb2afdf6 httpd-2.4.52.tar.bz2
# Locally computed
sha256 47b8c2b6c3309282a99d4a3001575c790fead690cc14734628c4667d2bbffc43 LICENSE
diff --git a/package/apache/apache.mk b/package/apache/apache.mk
index ff01b25106..5fcb887fbc 100644
--- a/package/apache/apache.mk
+++ b/package/apache/apache.mk
@@ -4,7 +4,7 @@
#
################################################################################
-APACHE_VERSION = 2.4.51
+APACHE_VERSION = 2.4.52
APACHE_SOURCE = httpd-$(APACHE_VERSION).tar.bz2
APACHE_SITE = https://downloads.apache.org/httpd
APACHE_LICENSE = Apache-2.0
--
2.20.1
_______________________________________________
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] pakage/apache: security bump to version 2.4.52
2021-12-22 17:42 [Buildroot] [PATCH] pakage/apache: security bump to version 2.4.52 Peter Korsgaard
@ 2021-12-23 17:37 ` Thomas Petazzoni
2022-01-23 19:49 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2021-12-23 17:37 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: Bernd Kuhls, buildroot
On Wed, 22 Dec 2021 18:42:45 +0100
Peter Korsgaard <peter@korsgaard.com> wrote:
> Fixes the following security issues:
>
> *) SECURITY: CVE-2021-44790: Possible buffer overflow when parsing
> multipart content in mod_lua of Apache HTTP Server 2.4.51 and
> earlier (cve.mitre.org)
> A carefully crafted request body can cause a buffer overflow in
> the mod_lua multipart parser (r:parsebody() called from Lua
> scripts).
> The Apache httpd team is not aware of an exploit for the
> vulnerabilty though it might be possible to craft one.
> This issue affects Apache HTTP Server 2.4.51 and earlier.
> Credits: Chamal
>
> *) SECURITY: CVE-2021-44224: Possible NULL dereference or SSRF in
> forward proxy configurations in Apache HTTP Server 2.4.51 and
> earlier (cve.mitre.org)
> A crafted URI sent to httpd configured as a forward proxy
> (ProxyRequests on) can cause a crash (NULL pointer dereference)
> or, for configurations mixing forward and reverse proxy
> declarations, can allow for requests to be directed to a
> declared Unix Domain Socket endpoint (Server Side Request
> Forgery).
> This issue affects Apache HTTP Server 2.4.7 up to 2.4.51
> (included).
>
> For more details, see the changes file:
> https://downloads.apache.org/httpd/CHANGES_2.4.52
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
> package/apache/apache.hash | 6 +++---
> package/apache/apache.mk | 2 +-
> 2 files changed, 4 insertions(+), 4 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
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] pakage/apache: security bump to version 2.4.52
2021-12-22 17:42 [Buildroot] [PATCH] pakage/apache: security bump to version 2.4.52 Peter Korsgaard
2021-12-23 17:37 ` Thomas Petazzoni
@ 2022-01-23 19:49 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-01-23 19:49 UTC (permalink / raw)
To: buildroot; +Cc: Bernd Kuhls
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
> Fixes the following security issues:
> *) SECURITY: CVE-2021-44790: Possible buffer overflow when parsing
> multipart content in mod_lua of Apache HTTP Server 2.4.51 and
> earlier (cve.mitre.org)
> A carefully crafted request body can cause a buffer overflow in
> the mod_lua multipart parser (r:parsebody() called from Lua
> scripts).
> The Apache httpd team is not aware of an exploit for the
> vulnerabilty though it might be possible to craft one.
> This issue affects Apache HTTP Server 2.4.51 and earlier.
> Credits: Chamal
> *) SECURITY: CVE-2021-44224: Possible NULL dereference or SSRF in
> forward proxy configurations in Apache HTTP Server 2.4.51 and
> earlier (cve.mitre.org)
> A crafted URI sent to httpd configured as a forward proxy
> (ProxyRequests on) can cause a crash (NULL pointer dereference)
> or, for configurations mixing forward and reverse proxy
> declarations, can allow for requests to be directed to a
> declared Unix Domain Socket endpoint (Server Side Request
> Forgery).
> This issue affects Apache HTTP Server 2.4.7 up to 2.4.51
> (included).
> For more details, see the changes file:
> https://downloads.apache.org/httpd/CHANGES_2.4.52
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Committed to 2021.02.x and 2021.11.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:[~2022-01-23 19:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-22 17:42 [Buildroot] [PATCH] pakage/apache: security bump to version 2.4.52 Peter Korsgaard
2021-12-23 17:37 ` Thomas Petazzoni
2022-01-23 19:49 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox