From: Mats Klepsland Date: Thu, 15 Nov 2018 22:04:20 +0000 (+0100) Subject: userguide: add documentation for Ja3SGetString Lua function X-Git-Tag: suricata-5.0.0-rc1~466 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d15903a2efb4f3e209bbbee3ca545344d95dad25;p=thirdparty%2Fsuricata.git userguide: add documentation for Ja3SGetString Lua function --- diff --git a/doc/userguide/lua/lua-functions.rst b/doc/userguide/lua/lua-functions.rst index 5c876dcad8..98ee284ba5 100644 --- a/doc/userguide/lua/lua-functions.rst +++ b/doc/userguide/lua/lua-functions.rst @@ -577,6 +577,22 @@ Example: end end +JA3SGetString +~~~~~~~~~~~~~ + +Get the JA3S string through Ja3SGetString. + +Example: + +:: + + function log (args) + str = Ja3SGetString() + if str == nil then + return + end + end + SSH ---