ae699d7f9a
Fix CVE-2022-24302: Creation of new private key files using PKey subclasses was subject to a race condition between file creation & mode modification, which could be exploited by an attacker with knowledge of where the Paramiko-using code would write out such files. https://github.com/paramiko/paramiko/blob/2.10.3/sites/www/changelog.rst Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
17 lines
642 B
Makefile
17 lines
642 B
Makefile
################################################################################
|
|
#
|
|
# python-paramiko
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_PARAMIKO_VERSION = 2.10.3
|
|
PYTHON_PARAMIKO_SOURCE = paramiko-$(PYTHON_PARAMIKO_VERSION).tar.gz
|
|
PYTHON_PARAMIKO_SITE = https://files.pythonhosted.org/packages/d4/93/1a1eb7f214e6774099d56153db9e612f93cb8ffcdfd2eca243fcd5bb3a78
|
|
PYTHON_PARAMIKO_SETUP_TYPE = setuptools
|
|
PYTHON_PARAMIKO_LICENSE = LGPL-2.1+
|
|
PYTHON_PARAMIKO_LICENSE_FILES = LICENSE
|
|
PYTHON_PARAMIKO_CPE_ID_VENDOR = paramiko
|
|
PYTHON_PARAMIKO_CPE_ID_PRODUCT = paramiko
|
|
|
|
$(eval $(python-package))
|