aboutsummaryrefslogtreecommitdiff
path: root/example/reader_util.c
diff options
context:
space:
mode:
authorRavi Kerur <ravi.kerur@viasat.com>2019-09-16 13:56:17 -0700
committerRavi Kerur <ravi.kerur@viasat.com>2019-09-16 13:56:17 -0700
commitce79626679f5ac1a173bccbf4385791cfba956e3 (patch)
treea97437edda25963d9e96afff77d5cc8f1a7f421a /example/reader_util.c
parent23780a655d8e16842f3a16946e2a12defde83f2c (diff)
parent8f4e8d8254d79404e9b9490f9ab9bb5296194d68 (diff)
Merge branch 'dev' of https://github.com/ntop/nDPI into ndpi_icmp
Diffstat (limited to 'example/reader_util.c')
-rw-r--r--example/reader_util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/example/reader_util.c b/example/reader_util.c
index b4f5d984a..0b4e6c2c8 100644
--- a/example/reader_util.c
+++ b/example/reader_util.c
@@ -994,6 +994,8 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl
flow->ndpi_flow->protos.stun_ssl.ssl.ja3_server);
flow->ssh_tls.server_unsafe_cipher = flow->ndpi_flow->protos.stun_ssl.ssl.server_unsafe_cipher;
flow->ssh_tls.server_cipher = flow->ndpi_flow->protos.stun_ssl.ssl.server_cipher;
+ memcpy(flow->ssh_tls.sha1_cert_fingerprint,
+ flow->ndpi_flow->l4.tcp.tls_sha1_certificate_fingerprint, 20);
}
}
@@ -1171,8 +1173,8 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow,
if(enough_packets || (flow->detected_protocol.app_protocol != NDPI_PROTOCOL_UNKNOWN)) {
if((!enough_packets)
&& (flow->detected_protocol.master_protocol == NDPI_PROTOCOL_TLS)
- && (flow->ndpi_flow->protos.stun_ssl.ssl.ja3_server[0] == '\0'))
- ; /* Wait for JA3S certificate */
+ && (!flow->ndpi_flow->l4.tcp.tls_srv_cert_fingerprint_processed))
+ ; /* Wait for certificate fingerprint */
else {
/* New protocol detected or give up */
flow->detection_completed = 1;