diff options
author | Luca Deri <deri@ntop.org> | 2019-09-10 00:34:48 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-09-10 00:34:48 +0200 |
commit | 086c511a113eced0dca65d505d9baae47bed7be1 (patch) | |
tree | 3016d62974552cf745a290f76066a63b3fbf9d0f /example/reader_util.c | |
parent | c5fffce96cb538023d495161960812cf27558757 (diff) |
Parsed TLS certificate validity
Diffstat (limited to 'example/reader_util.c')
-rw-r--r-- | example/reader_util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/example/reader_util.c b/example/reader_util.c index c716d1766..9ec50486c 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -977,6 +977,8 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl flow->ndpi_flow->protos.stun_ssl.ssl.server_certificate); snprintf(flow->ssh_tls.server_organization, sizeof(flow->ssh_tls.server_organization), "%s", flow->ndpi_flow->protos.stun_ssl.ssl.server_organization); + flow->ssh_tls.notBefore = flow->ndpi_flow->protos.stun_ssl.ssl.notBefore; + flow->ssh_tls.notAfter = flow->ndpi_flow->protos.stun_ssl.ssl.notAfter; snprintf(flow->ssh_tls.ja3_client, sizeof(flow->ssh_tls.ja3_client), "%s", flow->ndpi_flow->protos.stun_ssl.ssl.ja3_client); snprintf(flow->ssh_tls.ja3_server, sizeof(flow->ssh_tls.ja3_server), "%s", |