Skip to content

Commit 2fb2483

Browse files
committed
Parsed stuff as strings properly for ioc parser
1 parent 8060d87 commit 2fb2483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shuffle-tools/1.2.0/src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2461,7 +2461,7 @@ def parse_ioc(self, input_string, input_type="all"):
24612461

24622462
ioc_types = input_type
24632463

2464-
iocs = find_iocs(input_string, included_ioc_types=ioc_types)
2464+
iocs = find_iocs(str(input_string), included_ioc_types=ioc_types)
24652465
newarray = []
24662466
for key, value in iocs.items():
24672467
if input_type != "all":

0 commit comments

Comments
 (0)