Merge pull request #63 from kareem-wolfssl/v5.8.4

Prepare for v5.8.4 release
pull/64/head v5.8.4-stable
David Garske 2025-12-29 17:20:39 -08:00 committed by GitHub
commit 05433e92b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
wolfSSL-py Release 5.8.4 (Dec 29, 2025)
============================================
* Fix an issue which allowed a client without a cert to connect despite setting verify_mode to CERT_REQUIRED (CVE-2025-15346):
A vulnerability in the handling of verify_mode = CERT_REQUIRED in the wolfssl Python package (wolfssl-py) causes client certificate requirements to not be fully enforced. Because the WOLFSSL_VERIFY_FAIL_IF_NO_PEER_CERT flag was not included, the behavior effectively matched CERT_OPTIONAL: a peer certificate was verified if presented, but connections were incorrectly authenticated when no client certificate was provided. This results in improper authentication, allowing attackers to bypass mutual TLS (mTLS) client authentication by omitting a client certificate during the TLS handshake.
Thanks to Matan Radomski from Microsoft for the report.
* Update wolfSSL to version 5.8.4
wolfSSL-py Release 5.8.2 (Jul 24, 2025)
============================================
* Update wolfSSL to version 5.8.2

@ -1 +1 @@
Subproject commit decea12e223869c8f8f3ab5a53dc90b69f436eb2
Subproject commit 59f4fa568615396fbf381b073b220d1e8d61e4c2

View File

@ -1,6 +1,6 @@
# When bumping the C library version, reset the POST count to 0
__wolfssl_version__ = "v5.8.2-stable"
__wolfssl_version__ = "v5.8.4-stable"
# We're using implicit post releases [PEP 440] to bump package version
# while maintaining the C library version intact for better reference.
@ -8,4 +8,4 @@ __wolfssl_version__ = "v5.8.2-stable"
#
# MAJOR.MINOR.BUILD-POST
__version__ = "5.8.2-0"
__version__ = "5.8.4-0"