analyzer typo

This commit is contained in:
reyesj2
2026-02-20 12:34:28 -06:00
parent 75e1f74244
commit bcb850d98a
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "Threatfox",
"version": "0.2",
"version": "0.3",
"author": "Security Onion Solutions",
"description": "This analyzer queries Threatfox to see if a domain, hash, or IP is considered malicious.",
"supportedTypes" : ["domain","hash","ip"],

View File

@@ -51,7 +51,7 @@ def prepareResults(raw):
status = 'info'
else:
status = 'ok'
elif raw != {} and raw['query_status'] in ['no_result', 'illegal_search_term', 'illegl_hash']:
elif raw != {} and raw['query_status'] in ['no_result', 'illegal_search_term', 'illegal_hash']:
status = 'info'
summary = 'no result'
else: