diff options
author | pacant <pacant2@gmail.com> | 2021-07-16 13:52:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-16 13:52:55 +0200 |
commit | 488166833eb233321ac3cb3b4f929ea5eeaf65ca (patch) | |
tree | ddb1307dc5a08919a7af5d85613f195b6b7ebeb2 | |
parent | daf1fbfc7b2fcad8be97896a5dfa9bbf49e03f0f (diff) |
Fixed TLS certificate threshold (#1248)
Co-authored-by: pacant <a.pace97@outlook.com>
-rw-r--r-- | src/lib/protocols/tls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/tls.c b/src/lib/protocols/tls.c index b2d3dc754..73d76ecae 100644 --- a/src/lib/protocols/tls.c +++ b/src/lib/protocols/tls.c @@ -94,7 +94,7 @@ union ja3_info { */ #define NDPI_MAX_TLS_REQUEST_SIZE 10000 -#define TLS_THRESHOLD 34186659 /* Threshold for certificate validity */ +#define TLS_THRESHOLD 34387200 /* Threshold for certificate validity */ #define TLS_LIMIT_DATE 1598918400 /* From 01/09/2020 TLS certificates lifespan is limited to 13 months */ /* skype.c */ |