Open canarieids opened 3 days ago
Thanks for pointing this out. The issue is in line 73, originally
@if ( Version::info$major >= 5 && Version::info$minor >= 1 )
It will need to be changed to
@if ( ( Version::info$major >= 5 && Version::info$minor >= 1 ) || ( Version::info$major >= 6 ) )
The issue is that (my silly mistake) only adjusts the default behavior for version 5 and up if the minor version is 1 or higher, so any x.0
release would still have the old behavior requiring tx_hosts
and rx_hosts
, which doesn't make sense. With the above information, you should be able to patch in place pretty quickly, if you want, while I work out the release process.
Thank you for your support and contributions to the Zeek community. We've been using this Ransomware detection plugin for a few years now. However, we've run into an issue recently.
When deploying on Zeek version 7+, we are receiving the following error.