From: Mats Klepsland Date: Thu, 15 Nov 2018 21:58:39 +0000 (+0100) Subject: userguide: add documentation for JA3SGetHash Lua function X-Git-Tag: suricata-5.0.0-rc1~468 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=37a0594417242050900a00053327a423876561bd;p=thirdparty%2Fsuricata.git userguide: add documentation for JA3SGetHash Lua function --- diff --git a/doc/userguide/lua/lua-functions.rst b/doc/userguide/lua/lua-functions.rst index 957fbb0567..5c876dcad8 100644 --- a/doc/userguide/lua/lua-functions.rst +++ b/doc/userguide/lua/lua-functions.rst @@ -561,6 +561,21 @@ Example: end end +Ja3SGetHash +~~~~~~~~~~~ + +Get the JA3S hash (md5sum of JA3S string) through JA3SGetHash. + +Example: + +:: + + function log (args) + hash = Ja3SGetHash() + if hash == nil then + return + end + end SSH ---