Skip to content

Commit

Permalink
Parsed stuff as strings properly for ioc parser
Browse files Browse the repository at this point in the history
  • Loading branch information
frikky committed Feb 6, 2024
1 parent 8060d87 commit 2fb2483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shuffle-tools/1.2.0/src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2461,7 +2461,7 @@ def parse_ioc(self, input_string, input_type="all"):

ioc_types = input_type

iocs = find_iocs(input_string, included_ioc_types=ioc_types)
iocs = find_iocs(str(input_string), included_ioc_types=ioc_types)
newarray = []
for key, value in iocs.items():
if input_type != "all":
Expand Down

0 comments on commit 2fb2483

Please sign in to comment.