MEDIUM: ssl: capture the supported_versions extension from Client Hello

Activate the capture of the TLS supported_versions extension from the
Client Hello. This list is stored in the ssl_capture buffer when the
global option "tune.ssl.capture-cipherlist-size" is enabled.
This commit is contained in:
William Lallemand
2024-08-23 17:35:10 +02:00
parent 3c0a0f1e1b
commit ce7fb6628e
2 changed files with 27 additions and 0 deletions

View File

@@ -219,6 +219,8 @@ struct ssl_capture {
uint ec_offset;
uint ec_formats_offset;
uchar ec_formats_len;
uchar supver_len;
uint supver_offset;
char data[VAR_ARRAY];
};