Browse code

Updating version numbers and adding information about the security patch release to the readme.

Micah Snyder authored on 2018/01/19 01:27:39
Showing 6 changed files
... ...
@@ -1,3 +1,7 @@
1
+Mon, 18 Jan 2018 12:45:00 -0500 (Steven Morgan)
2
+------------------------------------------
3
+ * ClamAV 0.99.2.1 security patch release.
4
+
1 5
 Thu, 22 Apr 2016 12:45:00 -0500 (Steven Morgan)
2 6
 ------------------------------------------
3 7
  * ClamAV 0.99.2 release.
... ...
@@ -2,6 +2,29 @@ Note: This README/NEWS file refers to the source tarball. Some things described
2 2
 here may not be available in binary packages.
3 3
 --
4 4
 
5
+0.99.2.1
6
+------
7
+
8
+ClamAV 0.99.2.1 is a hotfix release to patch a set of vulnerabilities.
9
+
10
+    - fixes for the following CVE's: CVE-2017-6418, CVE-2017-6420, 
11
+      CVE-2017-12374, CVE-2017-12375, CVE-2017-12376, CVE-2017-12377, 
12
+      CVE-2017-12378, CVE-2017-12379, CVE-2017-12380. 
13
+    - also included are 2 minor fixes to properly detect openssl install
14
+      locations on FreeBSD 11, and prevent false warnings about zlib 1.2.1#
15
+      version numbers. 
16
+
17
+Thank you to the following ClamAV community members for your code
18
+submissions and bug reports! 
19
+
20
+Alberto Garcia
21
+Daniel J. Luke
22
+Francisco Oca
23
+Sebastian A. Siewior
24
+Suleman Ali
25
+
26
+Special thanks to Offensive Research at Salesforce.com for responsible disclosure.
27
+
5 28
 0.99.2
6 29
 ------
7 30
 
... ...
@@ -2052,7 +2075,7 @@ Noteworthy changes in this version:
2052 2052
 -) documentation:
2053 2053
     + new Spanish documentation on ClamAV and Sendmail integration by
2054 2054
       Erick Ivaan Lopez Carreon
2055

                
2055
+    + included clamdoc.pdf Turkish translation by yavuz kaya and �brahim erken
2056 2056
     + included clamav-mirror-howto.pdf by Luca Gibelli
2057 2057
     + included clamd+daemontools HOWTO by Jesse D. Guardiani
2058 2058
     + included signatures.pdf
... ...
@@ -20,7 +20,7 @@ dnl   MA 02110-1301, USA.
20 20
 AC_PREREQ([2.59])
21 21
 dnl For a release change [devel] to the real version [0.xy]
22 22
 dnl also change VERSION below
23
-AC_INIT([ClamAV], [0.99.2], [http://bugs.clamav.net/], [clamav], [http://www.clamav.net/])
23
+AC_INIT([ClamAV], [0.99.2.1], [http://bugs.clamav.net/], [clamav], [http://www.clamav.net/])
24 24
 
25 25
 AH_BOTTOM([#include "platform.h"])
26 26
 dnl put configure auxiliary into config
... ...
@@ -1,6 +1,6 @@
1 1
 %  Clam AntiVirus: User Manual
2 2
 %
3
-%  Copyright (C) 2016 Cisco Systems, Inc.
3
+%  Copyright (C) 2016-2018 Cisco Systems, Inc.
4 4
 %  Copyright (C) 2008-2013 Sourcefire, Inc.
5 5
 %  Copyright (C) 2002 - 2007 Tomasz Kojm <tkojm*clamav.net>
6 6
 %  Version 0.2x corrected by Dennis Leeuw <dleeuw*made-it.com>
... ...
@@ -72,7 +72,7 @@
72 72
     \vspace{3cm}
73 73
     \begin{flushright}
74 74
 	\rule[-1ex]{8cm}{3pt}\\
75
-	\huge Clam AntiVirus 0.99.2\\
75
+	\huge Clam AntiVirus 0.99.2.1\\
76 76
 	\huge \emph{User Manual}\\
77 77
     \end{flushright}
78 78
 
... ...
@@ -84,6 +84,7 @@
84 84
     \noindent
85 85
     \begin{boxedminipage}[b]{\textwidth}
86 86
     ClamAV User Manual,
87
+87d
87 88
     \copyright \  2016 Cisco Systems, Inc.
88 89
     Authors: Tomasz Kojm\\
89 90
     This document is distributed under the terms of the GNU General
... ...
@@ -1740,7 +1741,7 @@ Verification OK.
1740 1740
 	\item Stefano Rizzetto
1741 1741
 	\item Roaring Penguin Software Inc. (\url{http://www.roaringpenguin.com/})
1742 1742
 	\item Luke Rosenthal
1743

                
1743
+	\item Jenny S�fstr�m (\url{http://PokerListings.com})
1744 1744
 	\item School of Engineering, University of Pennsylvania (\url{http://www.seas.upenn.edu/})
1745 1745
 	\item Tim Scoff
1746 1746
 	\item Seattle Server (\url{http://www.seattleserver.com/})
... ...
@@ -1,6 +1,6 @@
1 1
 dnl change this on a release
2 2
 dnl VERSION="devel-`date +%Y%m%d`"
3
-VERSION="0.99.2"
3
+VERSION="0.99.2.1"
4 4
 
5 5
 LC_CURRENT=8
6 6
 LC_REVISION=1
... ...
@@ -6,8 +6,8 @@
6 6
 #define REPO_VERSION VERSION
7 7
 #endif
8 8
 
9
-#define RES_VER_Q 0,99,2,0
10
-#define RES_VER_S "ClamAV 0.99.2"
9
+#define RES_VER_Q 0,99,2,1
10
+#define RES_VER_S "ClamAV 0.99.2.1"
11 11
 
12 12
 VS_VERSION_INFO VERSIONINFO
13 13
     FILEVERSION RES_VER_Q
... ...
@@ -21,11 +21,14 @@ VS_VERSION_INFO VERSIONINFO
21 21
     FILEOS VOS_NT_WINDOWS32
22 22
 #ifdef THIS_IS_LIBCLAMAV
23 23
     FILETYPE VFT_DLL
24
-#else

24
+#else
25
+
25 26
     FILETYPE VFT_APP
26
-#endif

27
+#endif
28
+
27 29
     FILESUBTYPE 0
28
-BEGIN

30
+BEGIN
31
+
29 32
     BLOCK "StringFileInfo" {
30 33
 	BLOCK "040904B0" {
31 34
 	    VALUE "CompanyName", "Cisco Systems, Inc."