File tree Expand file tree Collapse file tree 5 files changed +19
-3
lines changed
Expand file tree Collapse file tree 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")
2222set (VERSION_SUFFIX "" )
2323
2424project ( ClamAV
25- VERSION "1.4.1 "
25+ VERSION "1.4.2 "
2626 DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )
2727
2828set (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(
1010 parameters(
1111 [
1212 string(name : ' VERSION' ,
13- defaultValue : ' 1.4.1 ' ,
13+ defaultValue : ' 1.4.2 ' ,
1414 description : ' ClamAV version string' ),
1515 string(name : ' FRAMEWORK_BRANCH' ,
1616 defaultValue : ' 1.4' ,
Original file line number Diff line number Diff line change 33Note: This file refers to the official packages. Things described here may
44differ slightly from third-party binary packages.
55
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+
621## 1.4.1
722
823ClamAV 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 {
194194
195195 FUNC_LEVEL_1_4 = 210 , /**< LibClamAV release 1.4.0 */
196196 FUNC_LEVEL_1_4_1 = 211 , /**< LibClamAV release 1.4.1 */
197+ FUNC_LEVEL_1_4_2 = 212 , /**< LibClamAV release 1.4.2 */
197198};
198199
199200/**
Original file line number Diff line number Diff line change 6969 * in re-enabling affected modules.
7070 */
7171
72- #define CL_FLEVEL 211
72+ #define CL_FLEVEL 212
7373#define CL_FLEVEL_DCONF CL_FLEVEL
7474#define CL_FLEVEL_SIGTOOL CL_FLEVEL
7575
You can’t perform that action at this time.
0 commit comments