Compare commits
No commits in common. "3ae582e97b72cb821c06dcff6126d32abec1c945" and "88ab024267b7f6f76210ab29ba433d1cba94f29d" have entirely different histories.
3ae582e97b
...
88ab024267
48
0001-Fix-CVE-2020-13757.patch
Normal file
48
0001-Fix-CVE-2020-13757.patch
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
From 93af6f2f89a9bf28361e67716c4240e691520f30 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= <sybren@stuvel.eu>
|
||||||
|
Date: Wed, 3 Jun 2020 14:39:23 +0200
|
||||||
|
Subject: [PATCH] Fix CVE-2020-13757: detect cyphertext modifications by
|
||||||
|
prepending zero bytes
|
||||||
|
|
||||||
|
Reject cyphertexts that have been modified by prepending zero bytes, by
|
||||||
|
checking the cyphertext length against the expected size (given the
|
||||||
|
decryption key). This resolves CVE-2020-13757.
|
||||||
|
|
||||||
|
The same approach is used when verifying a signature.
|
||||||
|
|
||||||
|
Thanks Carnil for pointing this out on https://github.com/sybrenstuvel/python-rsa/issues/146
|
||||||
|
---
|
||||||
|
rsa/pkcs1.py | 9 +++++++++
|
||||||
|
1 files changed, 9 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/rsa/pkcs1.py b/rsa/pkcs1.py
|
||||||
|
index 28f0dc5..cdf830b 100644
|
||||||
|
--- a/rsa/pkcs1.py
|
||||||
|
+++ b/rsa/pkcs1.py
|
||||||
|
@@ -232,6 +232,12 @@ def decrypt(crypto, priv_key):
|
||||||
|
decrypted = priv_key.blinded_decrypt(encrypted)
|
||||||
|
cleartext = transform.int2bytes(decrypted, blocksize)
|
||||||
|
|
||||||
|
+ # Detect leading zeroes in the crypto. These are not reflected in the
|
||||||
|
+ # encrypted value (as leading zeroes do not influence the value of an
|
||||||
|
+ # integer). This fixes CVE-2020-13757.
|
||||||
|
+ if len(crypto) > blocksize:
|
||||||
|
+ raise DecryptionError('Decryption failed')
|
||||||
|
+
|
||||||
|
# If we can't find the cleartext marker, decryption failed.
|
||||||
|
if cleartext[0:2] != b('\x00\x02'):
|
||||||
|
raise DecryptionError('Decryption failed')
|
||||||
|
@@ -310,6 +316,9 @@ def verify(message, signature, pub_key):
|
||||||
|
cleartext = HASH_ASN1[method_name] + message_hash
|
||||||
|
expected = _pad_for_signing(cleartext, keylength)
|
||||||
|
|
||||||
|
+ if len(signature) != keylength:
|
||||||
|
+ raise VerificationError('Verification failed')
|
||||||
|
+
|
||||||
|
# Compare with the signed one
|
||||||
|
if expected != clearsig:
|
||||||
|
raise VerificationError('Verification failed')
|
||||||
|
|
||||||
|
--
|
||||||
|
1.8.3.1
|
||||||
|
|
||||||
132
python-rsa.spec
132
python-rsa.spec
@ -1,106 +1,88 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
|
||||||
Name: python-rsa
|
Name: python-rsa
|
||||||
Version: 4.9
|
Version: 3.4.2
|
||||||
Release: 1
|
Release: 12
|
||||||
Summary: Pure-Python RSA implementation
|
Summary: Pure-Python RSA implementation
|
||||||
License: Apache-2.0
|
License: ASL 2.0
|
||||||
URL: https://stuvel.eu/rsa
|
URL: http://stuvel.eu/rsa
|
||||||
Source0: https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-%{version}.tar.gz
|
Source0: https://pypi.python.org/packages/source/r/rsa/rsa-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
|
Patch1: 0001-Fix-CVE-2020-13757.patch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Python-RSA is a pure-Python RSA implementation. It supports
|
Python-RSA is a pure-Python RSA implementation. It supports
|
||||||
encryption and decryption, signing and verifying signatures,
|
encryption and decryption, signing and verifying signatures,
|
||||||
and key generation according to PKCS#1 version 1.5.
|
and key generation according to PKCS#1 version 1.5.
|
||||||
|
|
||||||
%package -n python3-rsa
|
%package -n python2-rsa
|
||||||
|
%{?python_provide:%python_provide python2-rsa}
|
||||||
Summary: Pure-Python RSA implementation
|
Summary: Pure-Python RSA implementation
|
||||||
Provides: python-rsa
|
BuildRequires: python2-devel, python2-setuptools, python2-pyasn1 >= 0.1.3
|
||||||
# Base build requires
|
Requires: python2-pyasn1 >= 0.1.3, python2-setuptools
|
||||||
BuildRequires: python3-devel
|
|
||||||
BuildRequires: python3-setuptools
|
%description -n python2-rsa
|
||||||
BuildRequires: python3-pbr
|
Python-RSA is a pure-Python RSA implementation. It supports
|
||||||
BuildRequires: python3-pip
|
encryption and decryption, signing and verifying signatures,
|
||||||
BuildRequires: python3-wheel
|
and key generation according to PKCS#1 version 1.5.
|
||||||
# General requires
|
|
||||||
BuildRequires: python3-pyasn1
|
%package -n python3-rsa
|
||||||
# General requires
|
%{?python_provide:%python_provide python3-rsa}
|
||||||
Requires: python3-pyasn1
|
Summary: Pure-Python RSA implementation
|
||||||
|
BuildRequires: python3-devel, python3-setuptools, python3-pyasn1 >= 0.1.3, python3-unittest2
|
||||||
|
Requires: python3-pyasn1 >= 0.1.3, python3-setuptools
|
||||||
|
|
||||||
%description -n python3-rsa
|
%description -n python3-rsa
|
||||||
Python-RSA is a pure-Python RSA implementation. It supports
|
Python-RSA is a pure-Python RSA implementation. It supports
|
||||||
encryption and decryption, signing and verifying signatures,
|
encryption and decryption, signing and verifying signatures,
|
||||||
and key generation according to PKCS#1 version 1.5.
|
and key generation according to PKCS#1 version 1.5.
|
||||||
|
|
||||||
%package help
|
|
||||||
Summary: Pure-Python RSA implementation
|
|
||||||
Provides: python3-rsa-doc
|
|
||||||
%description help
|
|
||||||
Python-RSA is a pure-Python RSA implementation. It supports
|
|
||||||
encryption and decryption, signing and verifying signatures,
|
|
||||||
and key generation according to PKCS#1 version 1.5.
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n rsa-%{version}
|
%autosetup -n rsa-%{version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%py2_build
|
||||||
%py3_build
|
%py3_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_install
|
%py2_install
|
||||||
|
cp $RPM_BUILD_ROOT%{_bindir}/pyrsa-priv2pub $RPM_BUILD_ROOT%{_bindir}/pyrsa-priv2pub-2
|
||||||
|
cp $RPM_BUILD_ROOT%{_bindir}/pyrsa-keygen $RPM_BUILD_ROOT%{_bindir}/pyrsa-keygen-2
|
||||||
|
cp $RPM_BUILD_ROOT%{_bindir}/pyrsa-encrypt $RPM_BUILD_ROOT%{_bindir}/pyrsa-encrypt-2
|
||||||
|
cp $RPM_BUILD_ROOT%{_bindir}/pyrsa-decrypt $RPM_BUILD_ROOT%{_bindir}/pyrsa-decrypt-2
|
||||||
|
cp $RPM_BUILD_ROOT%{_bindir}/pyrsa-sign $RPM_BUILD_ROOT%{_bindir}/pyrsa-sign-2
|
||||||
|
cp $RPM_BUILD_ROOT%{_bindir}/pyrsa-verify $RPM_BUILD_ROOT%{_bindir}/pyrsa-verify-2
|
||||||
|
cp $RPM_BUILD_ROOT%{_bindir}/pyrsa-encrypt-bigfile $RPM_BUILD_ROOT%{_bindir}/pyrsa-encrypt-bigfile-2
|
||||||
|
cp $RPM_BUILD_ROOT%{_bindir}/pyrsa-decrypt-bigfile $RPM_BUILD_ROOT%{_bindir}/pyrsa-decrypt-bigfile-2
|
||||||
|
|
||||||
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
%py3_install
|
||||||
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
mv $RPM_BUILD_ROOT%{_bindir}/pyrsa-priv2pub $RPM_BUILD_ROOT%{_bindir}/pyrsa-priv2pub-3
|
||||||
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
mv $RPM_BUILD_ROOT%{_bindir}/pyrsa-keygen $RPM_BUILD_ROOT%{_bindir}/pyrsa-keygen-3
|
||||||
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
mv $RPM_BUILD_ROOT%{_bindir}/pyrsa-encrypt $RPM_BUILD_ROOT%{_bindir}/pyrsa-encrypt-3
|
||||||
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
mv $RPM_BUILD_ROOT%{_bindir}/pyrsa-decrypt $RPM_BUILD_ROOT%{_bindir}/pyrsa-decrypt-3
|
||||||
pushd %{buildroot}
|
mv $RPM_BUILD_ROOT%{_bindir}/pyrsa-sign $RPM_BUILD_ROOT%{_bindir}/pyrsa-sign-3
|
||||||
if [ -d usr/lib ]; then
|
mv $RPM_BUILD_ROOT%{_bindir}/pyrsa-verify $RPM_BUILD_ROOT%{_bindir}/pyrsa-verify-3
|
||||||
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
mv $RPM_BUILD_ROOT%{_bindir}/pyrsa-encrypt-bigfile $RPM_BUILD_ROOT%{_bindir}/pyrsa-encrypt-bigfile-3
|
||||||
fi
|
mv $RPM_BUILD_ROOT%{_bindir}/pyrsa-decrypt-bigfile $RPM_BUILD_ROOT%{_bindir}/pyrsa-decrypt-bigfile-3
|
||||||
if [ -d usr/lib64 ]; then
|
|
||||||
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
|
%files -n python2-rsa
|
||||||
fi
|
%doc README.md
|
||||||
if [ -d usr/bin ]; then
|
%license LICENSE
|
||||||
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
|
%{_bindir}/pyrsa-*-2
|
||||||
fi
|
%{python2_sitelib}/*
|
||||||
if [ -d usr/sbin ]; then
|
|
||||||
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
|
%files -n python3-rsa
|
||||||
fi
|
%doc README.md
|
||||||
touch doclist.lst
|
%license LICENSE
|
||||||
if [ -d usr/share/man ]; then
|
%{_bindir}/pyrsa-*-3
|
||||||
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
|
%{python3_sitelib}/*
|
||||||
fi
|
|
||||||
popd
|
|
||||||
mv %{buildroot}/filelist.lst .
|
|
||||||
mv %{buildroot}/doclist.lst .
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
%{__python2} setup.py test
|
||||||
%{__python3} setup.py test
|
%{__python3} setup.py test
|
||||||
|
|
||||||
%files -n python3-rsa -f filelist.lst
|
|
||||||
%dir %{python3_sitelib}/*
|
|
||||||
|
|
||||||
%files help -f doclist.lst
|
|
||||||
%{_docdir}/*
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Aug 03 2022 kkz <zhaoshuag@uniontech.com> - 4.9-1
|
|
||||||
- Upgrade package python3-rsa to version 4.9
|
|
||||||
|
|
||||||
* Tue May 31 2022 OpenStack_SIG <openstack@openeuler.org> - 4.8-1
|
|
||||||
- Upgrade package python3-rsa to version 4.8
|
|
||||||
|
|
||||||
* Mon Aug 09 2021 OpenStack_SIG <openstack@openeuler.org> - 4.7.2-1
|
|
||||||
- Package update to 4.7.2
|
|
||||||
|
|
||||||
* Tue Dec 15 2020 yanglongkang <yanglongkang@huawei.com> - 3.4.2-14
|
|
||||||
- fix CVE-2020-25658
|
|
||||||
|
|
||||||
* Fri Oct 30 2020 yanglongkang <yanglongkang@huawei.com> - 3.4.2-13
|
|
||||||
- remove python2 dependency
|
|
||||||
|
|
||||||
* Tue Aug 4 2020 yanglongkang <yanglongkang@huawei.com> - 3.4.2-12
|
* Tue Aug 4 2020 yanglongkang <yanglongkang@huawei.com> - 3.4.2-12
|
||||||
- fix CVE-2020-13757
|
- fix CVE-2020-13757
|
||||||
|
|
||||||
* Mon Feb 10 2020 Ruijun Ge <geruijun@huawei.com> - 3.4.2-11
|
* Mon Feb 10 2020 Ruijun Ge <geruijun@huawei.com> - 3.4.2-11
|
||||||
- package init
|
- package init
|
||||||
|
|
||||||
|
|||||||
@ -2,4 +2,3 @@ version_control: github
|
|||||||
src_repo: sybrenstuevl/python-rsa
|
src_repo: sybrenstuevl/python-rsa
|
||||||
tag_prefix: version-
|
tag_prefix: version-
|
||||||
seperator: .
|
seperator: .
|
||||||
|
|
||||||
|
|||||||
BIN
rsa-3.4.2.tar.gz
Normal file
BIN
rsa-3.4.2.tar.gz
Normal file
Binary file not shown.
BIN
rsa-4.9.tar.gz
BIN
rsa-4.9.tar.gz
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user