From 8f43dc46db82f4b82e699d43599a9f8947f06165 Mon Sep 17 00:00:00 2001 From: Prism Tutaj Date: Wed, 10 Apr 2019 15:53:44 -0500 Subject: [PATCH] Update dissector to work in Wireshark 3 Wireshark 3.0.0 renamed the SSL dissector to TLS. --- dissector.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dissector.lua b/dissector.lua index a5c66de..5526715 100644 --- a/dissector.lua +++ b/dissector.lua @@ -34,7 +34,7 @@ local CONST_MAGIC_HEADER_TLS14 = ByteArray.new("14") local packetDb = {} local partialBuffer = nil -local sslDissector = Dissector.get('ssl') +local sslDissector = Dissector.get('tls') local function decode_aes(ivStr, dataStr) -- body