Merge pull request #75 from securechicken/watcherfix1

FIX watcher crash when remote file does not have a "to_delete" key
This commit is contained in:
Félix Aimé 2021-08-05 09:27:27 +02:00 committed by GitHub
commit 48539a13df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,6 +37,7 @@ def watch_iocs():
if w["status"] == False:
iocs = IOCs()
iocs_list = []
to_delete = []
try:
res = requests.get(w["url"], verify=False)
if res.status_code == 200:
@ -85,6 +86,7 @@ def watch_whitelists():
if w["status"] == False:
whitelist = WhiteList()
elements = []
to_delete = []
try:
res = requests.get(w["url"], verify=False)
if res.status_code == 200: