mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
For more information about the release, see:
- https://github.com/c-ares/c-ares/releases/tag/v1.34.6
Fixes the following vulnerability:
- CVE-2025-62408:
c-ares is an asynchronous resolver library. Versions 1.32.3 through
1.34.5 terminate a query after maximum attempts when using
read_answer() and process_answer(), which can cause a Denial of
Service. This issue is fixed in version 1.34.6.
For more information, see:
- https://www.cve.org/CVERecord?id=CVE-2025-62408
- 714bf5675c
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
Signed-off-by: Julien Olivain <ju.o@free.fr>
17 lines
508 B
Makefile
17 lines
508 B
Makefile
################################################################################
|
|
#
|
|
# c-ares
|
|
#
|
|
################################################################################
|
|
|
|
C_ARES_VERSION = 1.34.6
|
|
C_ARES_SITE = https://github.com/c-ares/c-ares/releases/download/v$(C_ARES_VERSION)
|
|
C_ARES_INSTALL_STAGING = YES
|
|
C_ARES_CONF_OPTS = --with-random=/dev/urandom
|
|
C_ARES_LICENSE = MIT
|
|
C_ARES_LICENSE_FILES = LICENSE.md
|
|
C_ARES_CPE_ID_VENDOR = c-ares
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|