fix: [tracker typo squatting] fix perf

pull/586/head
Terrtia 2022-07-08 11:27:04 +02:00
parent 7a5c7dc14e
commit 1b6a9febc8
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 4 additions and 5 deletions

View File

@ -54,13 +54,12 @@ class Tracker_Typo_Squatting(AbstractModule):
print('Tracked typosquatting refreshed')
host, id = message.split()
item = Item(id)
# Cast message as Item
for key in self.typosquat_tracked_words_list:
#print(key)
if host in self.typosquat_tracked_words_list[key]:
self.new_tracker_found(key, 'typosquatting', item)
for tracker in self.typosquat_tracked_words_list:
if host in self.typosquat_tracked_words_list[tracker]:
item = Item(id)
self.new_tracker_found(tracker, 'typosquatting', item)
def new_tracker_found(self, tracker, tracker_type, item):
item_id = item.get_id()