mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Stop loading scan detection in local.zeek by default
This commit is contained in:
parent
6cedfe81bb
commit
9c8db5f6ca
5 changed files with 14 additions and 5 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
3.1.0-dev.102 | 2019-09-16 10:50:47 -0700
|
||||||
|
|
||||||
|
* Stop loading scan detection in local.zeek by default (Jon Siwek, Corelight)
|
||||||
|
|
||||||
3.1.0-dev.98 | 2019-09-04 16:28:01 -0700
|
3.1.0-dev.98 | 2019-09-04 16:28:01 -0700
|
||||||
|
|
||||||
* Update Broker include dir search path (Jon Siwek, Corelight)
|
* Update Broker include dir search path (Jon Siwek, Corelight)
|
||||||
|
|
3
NEWS
3
NEWS
|
@ -485,6 +485,9 @@ Changed Functionality
|
||||||
before it is disabled; the default is set to 5. This behavior is customizable using
|
before it is disabled; the default is set to 5. This behavior is customizable using
|
||||||
``DPD::max_violations`` and ``DPD::ignore_violations``.
|
``DPD::max_violations`` and ``DPD::ignore_violations``.
|
||||||
|
|
||||||
|
- The scan detection script, ``policy/misc/scan``, is no longer loaded by
|
||||||
|
default in ``site/local.zeek`` due to it frequenty causing performance issues.
|
||||||
|
|
||||||
Removed Functionality
|
Removed Functionality
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
3.1.0-dev.98
|
3.1.0-dev.102
|
||||||
|
|
|
@ -14,8 +14,9 @@
|
||||||
# Enable logging of memory, packet and lag statistics.
|
# Enable logging of memory, packet and lag statistics.
|
||||||
@load misc/stats
|
@load misc/stats
|
||||||
|
|
||||||
# Load the scan detection script.
|
# Load the scan detection script. It's disabled by default because
|
||||||
@load misc/scan
|
# it often causes performance issues.
|
||||||
|
#@load misc/scan
|
||||||
|
|
||||||
# Detect traceroute being run on the network. This could possibly cause
|
# Detect traceroute being run on the network. This could possibly cause
|
||||||
# performance trouble when there are a lot of traceroutes on your network.
|
# performance trouble when there are a lot of traceroutes on your network.
|
||||||
|
|
|
@ -32,8 +32,9 @@
|
||||||
# Enable logging of memory, packet and lag statistics.
|
# Enable logging of memory, packet and lag statistics.
|
||||||
@load misc/stats
|
@load misc/stats
|
||||||
|
|
||||||
# Load the scan detection script.
|
# Load the scan detection script. It's disabled by default because
|
||||||
@load misc/scan
|
# it often causes performance issues.
|
||||||
|
#@load misc/scan
|
||||||
|
|
||||||
# Detect traceroute being run on the network. This could possibly cause
|
# Detect traceroute being run on the network. This could possibly cause
|
||||||
# performance trouble when there are a lot of traceroutes on your network.
|
# performance trouble when there are a lot of traceroutes on your network.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue