mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
Fixes CVE-2025-14550: There was a potential DoS vector for users of the ``asgiref.wsgi.WsgiToAsgi`` adapter. Malicious requests, including an unreasonably large number of values for the same header, could lead to resource exhaustion when building the WSGI environment. Changelog: https://github.com/django/asgiref/blob/3.11.1/CHANGELOG.txt Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu> Signed-off-by: Julien Olivain <ju.o@free.fr>
15 lines
553 B
Makefile
15 lines
553 B
Makefile
################################################################################
|
|
#
|
|
# python-asgiref
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_ASGIREF_VERSION = 3.11.1
|
|
PYTHON_ASGIREF_SOURCE = asgiref-$(PYTHON_ASGIREF_VERSION).tar.gz
|
|
PYTHON_ASGIREF_SITE = https://files.pythonhosted.org/packages/63/40/f03da1264ae8f7cfdbf9146542e5e7e8100a4c66ab48e791df9a03d3f6c0
|
|
PYTHON_ASGIREF_SETUP_TYPE = setuptools
|
|
PYTHON_ASGIREF_LICENSE = BSD-3-Clause
|
|
PYTHON_ASGIREF_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|