]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
doc: update tls.version documentation
authorMats Klepsland <mats.klepsland@gmail.com>
Mon, 27 Aug 2018 10:43:06 +0000 (12:43 +0200)
committerMats Klepsland <mats.klepsland@gmail.com>
Sun, 16 Sep 2018 19:13:10 +0000 (21:13 +0200)
doc/userguide/rules/tls-keywords.rst

index 69ea8ad2b3f75d57826dc3574616c629336be9d0..01517e50255949b1ac430a12b9ecb817d7e29625 100644 (file)
@@ -121,7 +121,17 @@ tls.version
 
 Match on negotiated TLS/SSL version.
 
-Example values: "1.0", "1.1", "1.2"
+Supported values: "1.0", "1.1", "1.2", "1.3"
+
+It is also possible to match versions using a hex string.
+
+Examples::
+
+  tls.version:1.2;
+  tls.version:0x7f12;
+
+The first example matches TLSv1.2, whilst the last example matches TLSv1.3
+draft 16.
 
 tls.subject
 -----------