File tree 5 files changed +19
-3
lines changed
5 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ string(TIMESTAMP TODAY "%Y%m%d")
22
22
set (VERSION_SUFFIX "" )
23
23
24
24
project ( ClamAV
25
- VERSION "1.4.1 "
25
+ VERSION "1.4.2 "
26
26
DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )
27
27
28
28
set (CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake" ${CMAKE_MODULE_PATH} )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ properties(
10
10
parameters(
11
11
[
12
12
string(name : ' VERSION' ,
13
- defaultValue : ' 1.4.1 ' ,
13
+ defaultValue : ' 1.4.2 ' ,
14
14
description : ' ClamAV version string' ),
15
15
string(name : ' FRAMEWORK_BRANCH' ,
16
16
defaultValue : ' 1.4' ,
Original file line number Diff line number Diff line change 3
3
Note: This file refers to the official packages. Things described here may
4
4
differ slightly from third-party binary packages.
5
5
6
+ ## 1.4.2
7
+
8
+ ClamAV 1.4.2 is a patch release with the following fixes:
9
+
10
+ - [ CVE-2025 -20128] ( https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-20128 ) :
11
+ Fixed a possible buffer overflow read bug in the OLE2 file parser that could
12
+ cause a denial-of-service (DoS) condition.
13
+
14
+ This issue was introduced in version 1.0.0 and affects all currently
15
+ supported versions. It will be fixed in:
16
+ - 1.4.2
17
+ - 1.0.8
18
+
19
+ Thank you to OSS-Fuzz for identifying this issue.
20
+
6
21
## 1.4.1
7
22
8
23
ClamAV 1.4.1 is a critical patch release with the following fixes:
Original file line number Diff line number Diff line change @@ -194,6 +194,7 @@ enum FunctionalityLevels {
194
194
195
195
FUNC_LEVEL_1_4 = 210 , /**< LibClamAV release 1.4.0 */
196
196
FUNC_LEVEL_1_4_1 = 211 , /**< LibClamAV release 1.4.1 */
197
+ FUNC_LEVEL_1_4_2 = 212 , /**< LibClamAV release 1.4.2 */
197
198
};
198
199
199
200
/**
Original file line number Diff line number Diff line change 69
69
* in re-enabling affected modules.
70
70
*/
71
71
72
- #define CL_FLEVEL 211
72
+ #define CL_FLEVEL 212
73
73
#define CL_FLEVEL_DCONF CL_FLEVEL
74
74
#define CL_FLEVEL_SIGTOOL CL_FLEVEL
75
75
You can’t perform that action at this time.
0 commit comments