mirror of
https://github.com/valitydev/Cortex-Analyzers.git
synced 2024-11-07 09:28:58 +00:00
Fixes #221, converts input to lower.
This commit is contained in:
parent
c5100de872
commit
fcf7df16e0
@ -67,7 +67,7 @@ class MISPWarninglistsAnalyzer(Analyzer):
|
||||
if self.data_type not in list.get('dataTypes'):
|
||||
continue
|
||||
|
||||
if self.data in list.get('values', []):
|
||||
if self.data.lower() in list.get('values', []):
|
||||
results.append({
|
||||
"name": list.get('name')
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user