From d505ca03f6d58f2e44dd6a84319b8e686ad74133 Mon Sep 17 00:00:00 2001 From: Graeme Meyer Date: Wed, 23 Feb 2022 13:11:56 +0000 Subject: [PATCH] Fix for #53 (debug switch not passed to getVTInfo) --- munin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/munin.py b/munin.py index 76ff48d..cd50f7b 100755 --- a/munin.py +++ b/munin.py @@ -171,7 +171,7 @@ def processLine(line, debug): # Get Information # Virustotal - vt_info = munin_vt.getVTInfo(hashVal) + vt_info = munin_vt.getVTInfo(hashVal, args.debug) info.update(vt_info) # MISP misp_info = getMISPInfo(hashVal)