Skip to content

Commit 6fb2a25

Browse files
committed
Preparing release 2.5.11
version.m4, ChangeLog, Changes.rst Signed-off-by: Gert Doering <[email protected]>
1 parent dddb87f commit 6fb2a25

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
OpenVPN Change Log
22
Copyright (C) 2002-2022 OpenVPN Inc <[email protected]>
33

4+
2024.07.18 -- Version 2.5.11
5+
6+
Arne Schwabe (2):
7+
Properly handle null bytes and invalid characters in control messages
8+
Allow trailing \r and \n in control channel message
9+
410
2024.03.21 -- Version 2.5.10
511

612
Arne Schwabe (1):

Changes.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Overview of changes in 2.5.11
2+
=============================
3+
Security fixes
4+
--------------
5+
- CVE-2024-5594: control channel: refuse control channel messages with
6+
nonprintable characters in them. Security scope: a malicious openvpn
7+
peer can send garbage to openvpn log, or cause high CPU load.
8+
(Reynir Björnsson)
9+
10+
(Backport of the security fix in 2.6.11 and the fix for the bugfix
11+
in 2.6.12)
12+
113
Overview of changes in 2.5.10
214
=============================
315
Security fixes

version.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ define([PRODUCT_NAME], [OpenVPN])
33
define([PRODUCT_TARNAME], [openvpn])
44
define([PRODUCT_VERSION_MAJOR], [2])
55
define([PRODUCT_VERSION_MINOR], [5])
6-
define([PRODUCT_VERSION_PATCH], [.10])
6+
define([PRODUCT_VERSION_PATCH], [.11])
77
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MAJOR])
88
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MINOR], [[.]])
99
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_PATCH], [[]])
1010
define([PRODUCT_BUGREPORT], [[email protected]])
11-
define([PRODUCT_VERSION_RESOURCE], [2,5,10,0])
11+
define([PRODUCT_VERSION_RESOURCE], [2,5,11,0])
1212
dnl define the TAP version
1313
define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901])
1414
define([PRODUCT_TAP_WIN_MIN_MAJOR], [9])

0 commit comments

Comments
 (0)