aboutsummaryrefslogtreecommitdiff
path: root/example/reader_util.c
diff options
context:
space:
mode:
authoremanuele-f <faranda@ntop.org>2020-01-02 14:39:51 +0100
committeremanuele-f <faranda@ntop.org>2020-01-02 14:39:51 +0100
commit798bb6e2e113f10d9b710179553e4cef23222a61 (patch)
treee200ef28aca2890291a3a3657a7c1ee3bf20596f /example/reader_util.c
parent2332cbfefec9a64c77e5c30530f0e397a1388470 (diff)
Fix leaks and sha1 certificate detection
Diffstat (limited to 'example/reader_util.c')
-rw-r--r--example/reader_util.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/example/reader_util.c b/example/reader_util.c
index 79104ea91..b8fce9632 100644
--- a/example/reader_util.c
+++ b/example/reader_util.c
@@ -1049,8 +1049,12 @@ 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,
+
+ if(flow->ndpi_flow->l4.tcp.tls.fingerprint_set) {
+ memcpy(flow->ssh_tls.sha1_cert_fingerprint,
flow->ndpi_flow->l4.tcp.tls.sha1_certificate_fingerprint, 20);
+ flow->ssh_tls.sha1_cert_fingerprint_set = 1;
+ }
}
if(flow->detection_completed && (!flow->check_extra_packets)) {