mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-19 10:23:17 +00:00
Set version to 1.4.2, FLEVEL to 212; Update NEWS.md
This commit is contained in:
parent
537500d1e9
commit
1de7092d6f
5 changed files with 19 additions and 3 deletions
|
@ -22,7 +22,7 @@ string(TIMESTAMP TODAY "%Y%m%d")
|
||||||
set(VERSION_SUFFIX "")
|
set(VERSION_SUFFIX "")
|
||||||
|
|
||||||
project( ClamAV
|
project( ClamAV
|
||||||
VERSION "1.4.1"
|
VERSION "1.4.2"
|
||||||
DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )
|
DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )
|
||||||
|
|
||||||
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
|
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
|
||||||
|
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -10,7 +10,7 @@ properties(
|
||||||
parameters(
|
parameters(
|
||||||
[
|
[
|
||||||
string(name: 'VERSION',
|
string(name: 'VERSION',
|
||||||
defaultValue: '1.4.1',
|
defaultValue: '1.4.2',
|
||||||
description: 'ClamAV version string'),
|
description: 'ClamAV version string'),
|
||||||
string(name: 'FRAMEWORK_BRANCH',
|
string(name: 'FRAMEWORK_BRANCH',
|
||||||
defaultValue: '1.4',
|
defaultValue: '1.4',
|
||||||
|
|
15
NEWS.md
15
NEWS.md
|
@ -3,6 +3,21 @@
|
||||||
Note: This file refers to the official packages. Things described here may
|
Note: This file refers to the official packages. Things described here may
|
||||||
differ slightly from third-party binary packages.
|
differ slightly from third-party binary packages.
|
||||||
|
|
||||||
|
## 1.4.2
|
||||||
|
|
||||||
|
ClamAV 1.4.2 is a patch release with the following fixes:
|
||||||
|
|
||||||
|
- [CVE-2025-20128](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-20128):
|
||||||
|
Fixed a possible buffer overflow read bug in the OLE2 file parser that could
|
||||||
|
cause a denial-of-service (DoS) condition.
|
||||||
|
|
||||||
|
This issue was introduced in version 1.0.0 and affects all currently
|
||||||
|
supported versions. It will be fixed in:
|
||||||
|
- 1.4.2
|
||||||
|
- 1.0.8
|
||||||
|
|
||||||
|
Thank you to OSS-Fuzz for identifying this issue.
|
||||||
|
|
||||||
## 1.4.1
|
## 1.4.1
|
||||||
|
|
||||||
ClamAV 1.4.1 is a critical patch release with the following fixes:
|
ClamAV 1.4.1 is a critical patch release with the following fixes:
|
||||||
|
|
|
@ -194,6 +194,7 @@ enum FunctionalityLevels {
|
||||||
|
|
||||||
FUNC_LEVEL_1_4 = 210, /**< LibClamAV release 1.4.0 */
|
FUNC_LEVEL_1_4 = 210, /**< LibClamAV release 1.4.0 */
|
||||||
FUNC_LEVEL_1_4_1 = 211, /**< LibClamAV release 1.4.1 */
|
FUNC_LEVEL_1_4_1 = 211, /**< LibClamAV release 1.4.1 */
|
||||||
|
FUNC_LEVEL_1_4_2 = 212, /**< LibClamAV release 1.4.2 */
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
* in re-enabling affected modules.
|
* in re-enabling affected modules.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define CL_FLEVEL 211
|
#define CL_FLEVEL 212
|
||||||
#define CL_FLEVEL_DCONF CL_FLEVEL
|
#define CL_FLEVEL_DCONF CL_FLEVEL
|
||||||
#define CL_FLEVEL_SIGTOOL CL_FLEVEL
|
#define CL_FLEVEL_SIGTOOL CL_FLEVEL
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue