diff options
author | Toni <matzeton@googlemail.com> | 2024-02-05 12:35:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 12:35:38 +0100 |
commit | f2b09014f9c1a1e248ccf3ffa0e7ace1f3bee1af (patch) | |
tree | 7dce5c1af256ca659722afa31a5882cff78a158f /src/lib/ndpi_utils.c | |
parent | 02030ac16e5016b00e0da6ff7512d97751bf87d2 (diff) |
Serialize JA4 to JSON. (#2305)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 5f224f2e2..4d21e7526 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -1195,6 +1195,7 @@ static void ndpi_tls2json(ndpi_serializer *serializer, struct ndpi_flow_struct * ndpi_serialize_string_string(serializer, "ja3", flow->protos.tls_quic.ja3_client); ndpi_serialize_string_string(serializer, "ja3s", flow->protos.tls_quic.ja3_server); + ndpi_serialize_string_string(serializer, "ja4", flow->protos.tls_quic.ja4_client); ndpi_serialize_string_uint32(serializer, "unsafe_cipher", flow->protos.tls_quic.server_unsafe_cipher); ndpi_serialize_string_string(serializer, "cipher", ndpi_cipher2str(flow->protos.tls_quic.server_cipher, unknown_cipher)); |