Yesterdays weekly release now includes all of the key changes for alert de-duplication :D
By default the "systemic alerts" are turned off.
You can enable them via the Desktop UI - Options / Alerts / Systemic Limit - set this to anything other than zero.
The plan is to enable this in 2.17.0, probably with a default of 5.
We do not have a specific option in the Automation Framework for this limit, but we have just added generic configs:
The ‘configs’ section can be used to define any value that can be set
in the ZAP configuration file, which works in the same way as the ZAP
‘-config’ command line option.
The advantages of using this section instead of the command line are:
- The configuration will be self contained in the plan
- The ZAP team will monitor the keys used in this way (when telemetry
is enabled) and prioritise adding full support for the most frequently
used ones
- Warnings will be raised when a key being used has a better solution available
No validation is performed on the keys and values, so you are
responsible for checking that your configuration is correct. Invalid
keys will be silently ignored.
To enable the systemic alerts in the weekly you can use the following configs section:
configs:
alert.systemicLimit: 5
Feedback appreciated!
Simon