TLS decryption: remove payload from ssl_encrypted_data again.

There is no reason to make the payload available in the event - it is
still encrypted.
This commit is contained in:
Johanna Amann 2021-10-19 17:28:59 +02:00
parent eabb6eb743
commit fe4e06e8ca
8 changed files with 7 additions and 12 deletions

View file

@ -37,7 +37,7 @@ event ssl_established(c: connection)
print "established", c$id;
}
event ssl_encrypted_data(c: connection, is_orig: bool, record_version: count, content_type: count, length: count, payload: string)
event ssl_encrypted_data(c: connection, is_orig: bool, record_version: count, content_type: count, length: count)
{
print "encrypted", c$id, is_orig, SSL::version_strings[record_version], content_type;
}