From 37a0594417242050900a00053327a423876561bd Mon Sep 17 00:00:00 2001 From: Mats Klepsland Date: Thu, 15 Nov 2018 22:58:39 +0100 Subject: [PATCH] userguide: add documentation for JA3SGetHash Lua function --- doc/userguide/lua/lua-functions.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 ---