JA3 must be enabled in the Suricata config file (set 'app-layer.protocols.tls.ja3-fingerprints' to 'yes').
+JA3 also requires Suricata to be built with LibNSS support.
+
ja3.hash
--------
#ifndef HAVE_NSS
if (ssl_config.enable_ja3) {
SCLogWarning(SC_WARN_NO_JA3_SUPPORT,
- "no MD5 calculation support built in, disabling JA3");
+ "no MD5 calculation support built in (LibNSS), disabling JA3");
ssl_config.enable_ja3 = 0;
}
#else
#ifndef HAVE_NSS
else {
SCLogWarning(SC_WARN_NO_JA3_SUPPORT,
- "no MD5 calculation support build in, skipping %s",
+ "no MD5 calculation support built in (LibNSS), skipping %s",
type);
return 1;
}