security/zeek: Update to 4.0.3

https://github.com/zeek/zeek/releases/tag/v4.0.3

This release fixes the following bugs:

 - Zeek now accepts unset fields in the input data only when the
   corresponding record field is &optional.

 - The version field in ssh.log is now optional and will not be set
   if we cannot determine the version that was negotiated by the
   client and server.

 - Zeekctl could crash at startup on certain compilers and platforms
   due to a memory corruption issue in the Broker python bindings.

 - The highwayhash submodule was updated to fix a build failure on
   FreeBSD for PowerPC.

This release deprecates the following functionality:

 - The stepping-stone analyzer is marked as deprecated. It was
   partially marked as deprecated in 2.0, and will be fully removed
   in v4.1.

Reported by:	Tim Wojtulewicz
This commit is contained in:
Craig Leres 2021-07-06 14:31:18 -07:00
parent 8eb874634f
commit 9ffa415373
3 changed files with 4 additions and 16 deletions

View file

@ -1,8 +1,7 @@
# Created by: David O'Brien <obrien@FreeBSD.org>
PORTNAME= zeek
PORTVERSION= 4.0.2
PORTREVISION= 1
PORTVERSION= 4.0.3
CATEGORIES= security
MASTER_SITES= https://download.zeek.org/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}

View file

@ -1,5 +1,5 @@
TIMESTAMP = 1622678290
SHA256 (zeek-4.0.2.tar.gz) = 550713a9d3fd348783f39c959af7e569164c95b96cc3be28d7d5557bdeebfd95
SIZE (zeek-4.0.2.tar.gz) = 29428156
TIMESTAMP = 1625606511
SHA256 (zeek-4.0.3.tar.gz) = 33ee6b2aa96d127b7273ce337552bc7b2abf4910aa7a431dfc9ec606a4e233db
SIZE (zeek-4.0.3.tar.gz) = 29432987
SHA256 (zeek-zeek-netmap-v2.0.0_GH0.tar.gz) = d37a69babfbb62a51a2413d6b83ae792ce1e7f1ccb1d51bd6b209a10fe5c4d75
SIZE (zeek-zeek-netmap-v2.0.0_GH0.tar.gz) = 9100

View file

@ -1,11 +0,0 @@
--- auxil/highwayhash/highwayhash/arch_specific.cc.orig 2021-03-23 17:45:40 UTC
+++ auxil/highwayhash/highwayhash/arch_specific.cc
@@ -150,7 +150,7 @@ double DetectNominalClockRate() {
}
#elif __FreeBSD__
size_t length = sizeof(freq);
- sysctlbyname("dev.cpu.0.freq"), &freq, &length, NULL, 0);
+ sysctlbyname("dev.cpu.0.freq", &freq, &length, NULL, 0);
freq *= 1E6;
return freq;
#endif