From: Mats Klepsland Date: Thu, 28 Dec 2017 20:51:44 +0000 (+0100) Subject: doc: add documentation for Ja3GetString Lua function X-Git-Tag: suricata-4.1.0-beta1~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb0bfb614f60dba746152311393ac7323426e753;p=thirdparty%2Fsuricata.git doc: add documentation for Ja3GetString Lua function --- diff --git a/doc/userguide/output/lua-output.rst b/doc/userguide/output/lua-output.rst index f95b17a8d0..bd844cdc3e 100644 --- a/doc/userguide/output/lua-output.rst +++ b/doc/userguide/output/lua-output.rst @@ -539,6 +539,22 @@ Example: end end +Ja3GetString +~~~~~~~~~~~~ + +Get the JA3 string through Ja3GetString. + +Example: + +:: + + function log (args) + str = Ja3GetString() + if str == nil then + return + end + end + SSH ---