Fixes: CVE-2024-47081
Fixed an issue where a maliciously crafted URL and
trusted environment will retrieve credentials for
the wrong hostname/machine from a netrc file.
Release notes: https://github.com/psf/requests/releases/tag/v2.32.4
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit aefdca1e5c)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
23 lines
808 B
Makefile
23 lines
808 B
Makefile
################################################################################
|
|
#
|
|
# python-requests
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_REQUESTS_VERSION = 2.32.4
|
|
PYTHON_REQUESTS_SOURCE = requests-$(PYTHON_REQUESTS_VERSION).tar.gz
|
|
PYTHON_REQUESTS_SITE = https://files.pythonhosted.org/packages/e1/0a/929373653770d8a0d7ea76c37de6e41f11eb07559b103b1c02cafb3f7cf8
|
|
PYTHON_REQUESTS_SETUP_TYPE = setuptools
|
|
PYTHON_REQUESTS_LICENSE = Apache-2.0
|
|
PYTHON_REQUESTS_LICENSE_FILES = LICENSE
|
|
PYTHON_REQUESTS_CPE_ID_VENDOR = python
|
|
PYTHON_REQUESTS_CPE_ID_PRODUCT = requests
|
|
HOST_PYTHON_REQUESTS_DEPENDENCIES = \
|
|
host-python-certifi \
|
|
host-python-charset-normalizer \
|
|
host-python-idna \
|
|
host-python-urllib3
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|