Skip to content

Commit 05433e9

Browse files
authored
Merge pull request #63 from kareem-wolfssl/v5.8.4
Prepare for v5.8.4 release
2 parents 45a4151 + 0073fec commit 05433e9

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

ChangeLog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
wolfSSL-py Release 5.8.4 (Dec 29, 2025)
2+
============================================
3+
* Fix an issue which allowed a client without a cert to connect despite setting verify_mode to CERT_REQUIRED (CVE-2025-15346):
4+
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.
5+
Thanks to Matan Radomski from Microsoft for the report.
6+
* Update wolfSSL to version 5.8.4
7+
18
wolfSSL-py Release 5.8.2 (Jul 24, 2025)
29
============================================
310
* Update wolfSSL to version 5.8.2

lib/wolfssl

Submodule wolfssl updated 809 files

wolfssl/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# When bumping the C library version, reset the POST count to 0
22

3-
__wolfssl_version__ = "v5.8.2-stable"
3+
__wolfssl_version__ = "v5.8.4-stable"
44

55
# We're using implicit post releases [PEP 440] to bump package version
66
# while maintaining the C library version intact for better reference.
77
# https://www.python.org/dev/peps/pep-0440/#implicit-post-releases
88
#
99
# MAJOR.MINOR.BUILD-POST
1010

11-
__version__ = "5.8.2-0"
11+
__version__ = "5.8.4-0"

0 commit comments

Comments
 (0)