Skip to content

Commit 612cd12

Browse files
committed
new: Add missing types in ssfetcher
1 parent 240fafa commit 612cd12

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

bin/ssfetcher.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def __init__(self, user, password, logger: Logger) -> None:
3636
self.index_page = 'https://dl.shadowserver.org/reports/index.php'
3737
self.vendor = 'shadowserver'
3838
self.known_list_types = ('blacklist', 'blocklist', 'botnet', 'cc', 'cisco', 'cwsandbox',
39-
'device', 'drone', 'event4', 'malware', 'scan6',
39+
'device', 'drone', 'event4', 'malware', 'scan6', 'event6', 'netis',
4040
'microsoft', 'scan', 'sinkhole6', 'sinkhole', 'outdated',
4141
'compromised', 'hp', 'darknet', 'ddos')
4242
self.first_available_day: Optional[date] = None
@@ -138,6 +138,10 @@ def __check_config(self, filename: str) -> Optional[Path]:
138138
config['impact'] = 1
139139
elif main_type == 'event4':
140140
config['impact'] = 2
141+
elif main_type == 'event6':
142+
config['impact'] = 2
143+
elif main_type == 'netis':
144+
config['impact'] = 2
141145
else:
142146
config['impact'] = 1
143147

0 commit comments

Comments
 (0)