mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
ssl: Prevent unbounded ssl_history growth
The ssl_history field may grow unbounded (e.g., ssl_alert event). Prevent this by capping using a configurable limit (default 100) and raise a weird once reached.
This commit is contained in:
parent
c960d279a2
commit
560f8a4a84
6 changed files with 33 additions and 0 deletions
5
NEWS
5
NEWS
|
@ -192,6 +192,11 @@ Changed Functionality
|
|||
If there are more alerts, a new weird "SSL_excessive_alerts_in_record" is raised.
|
||||
For non-TLS 1.3, the maximum can be redefined via ``SSL::max_alerts_per_record``.
|
||||
|
||||
- The ``ssl_history`` field in the ssl.log is now capped at a configurable
|
||||
limit of 100 characters prevent unbounded growth. The limit can be changed
|
||||
via the option ``SSL::max_ssl_history_length``. When reached, a new weird
|
||||
named "SSL_max_ssl_history_length_reached" is raised.
|
||||
|
||||
Deprecated Functionality
|
||||
------------------------
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue