Skip to content

Commit

Permalink
Moved RAW_RIR_DATA reporting a little further down to ensure result…
Browse files Browse the repository at this point in the history
…s exist.
  • Loading branch information
smicallef committed Jul 6, 2021
1 parent 5ea8774 commit f3ec4b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/sfp_hybrid_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,6 @@ def handleEvent(self, event):
self.sf.debug("No information found for %s" % eventData)
return None

evt = SpiderFootEvent('RAW_RIR_DATA', str(data), self.__name__, event)
self.notifyListeners(evt)

results = data.get("result")

if not results:
Expand All @@ -250,6 +247,9 @@ def handleEvent(self, event):

self.sf.info("Found %s results for %s" % (len(hashes), eventData))

evt = SpiderFootEvent('RAW_RIR_DATA', str(data), self.__name__, event)
self.notifyListeners(evt)

urls = []
domains = []

Expand Down

0 comments on commit f3ec4b4

Please sign in to comment.