diff options
author | emanuele-f <faranda@ntop.org> | 2020-01-02 14:39:51 +0100 |
---|---|---|
committer | emanuele-f <faranda@ntop.org> | 2020-01-02 14:39:51 +0100 |
commit | 798bb6e2e113f10d9b710179553e4cef23222a61 (patch) | |
tree | e200ef28aca2890291a3a3657a7c1ee3bf20596f /example/ndpiReader.c | |
parent | 2332cbfefec9a64c77e5c30530f0e397a1388470 (diff) |
Fix leaks and sha1 certificate detection
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index c88df245a..15e4d1016 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -1224,11 +1224,7 @@ static void printFlow(u_int16_t id, struct ndpi_flow_info *flow, u_int16_t threa if((flow->detected_protocol.master_protocol == NDPI_PROTOCOL_TLS) || (flow->detected_protocol.app_protocol == NDPI_PROTOCOL_TLS)) { - if((flow->ssh_tls.sha1_cert_fingerprint[0] == 0) - && (flow->ssh_tls.sha1_cert_fingerprint[1] == 0) - && (flow->ssh_tls.sha1_cert_fingerprint[2] == 0)) - ; /* Looks empty */ - else { + if(flow->ssh_tls.sha1_cert_fingerprint_set) { fprintf(out, "[Certificate SHA-1: "); for(i=0; i<20; i++) fprintf(out, "%s%02X", (i > 0) ? ":" : "", |