Skip to content

Commit

Permalink
Merge pull request #893 from colin-stubbs/master
Browse files Browse the repository at this point in the history
[Bug] MineMeld responder domain IOC incorrect type #892
  • Loading branch information
dadokkio authored Nov 11, 2020
2 parents 2af9b23 + 623f331 commit 1f0a04a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions analyzers/MISPWarningLists/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ ipaddress
tld
sqlalchemy
psycopg2-binary
tqdm
2 changes: 1 addition & 1 deletion analyzers/MISPWarningLists/warninglists_create_db.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# coding: utf-8

import re
Expand Down
2 changes: 1 addition & 1 deletion responders/Minemeld/minemeld.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def run(self):
elif self.observable_type == "url":
indicator_type = "URL"
elif self.observable_type == "domain":
indicator_type = "Domain"
indicator_type = "domain"

# Check for comment
if self.observable_description == "":
Expand Down

0 comments on commit 1f0a04a

Please sign in to comment.