From 612cd1205899c4825236a57ba9d8d8dc40e9fa14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 4 Jan 2022 14:15:59 +0100 Subject: [PATCH] new: Add missing types in ssfetcher --- bin/ssfetcher.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/ssfetcher.py b/bin/ssfetcher.py index 36a3e86..2995fc9 100755 --- a/bin/ssfetcher.py +++ b/bin/ssfetcher.py @@ -36,7 +36,7 @@ class ShadowServerFetcher(): self.index_page = 'https://dl.shadowserver.org/reports/index.php' self.vendor = 'shadowserver' self.known_list_types = ('blacklist', 'blocklist', 'botnet', 'cc', 'cisco', 'cwsandbox', - 'device', 'drone', 'event4', 'malware', 'scan6', + 'device', 'drone', 'event4', 'malware', 'scan6', 'event6', 'netis', 'microsoft', 'scan', 'sinkhole6', 'sinkhole', 'outdated', 'compromised', 'hp', 'darknet', 'ddos') self.first_available_day: Optional[date] = None @@ -138,6 +138,10 @@ class ShadowServerFetcher(): config['impact'] = 1 elif main_type == 'event4': config['impact'] = 2 + elif main_type == 'event6': + config['impact'] = 2 + elif main_type == 'netis': + config['impact'] = 2 else: config['impact'] = 1