mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
Added a try/catch to handle exceptions
Replaced the raise to send message to redis_logger
This commit is contained in:
parent
1c3ad52f5c
commit
a2b28db32e
3 changed files with 20 additions and 9 deletions
|
@ -109,9 +109,12 @@ class Tracker_Regex(AbstractModule):
|
|||
"emailNotification": f'{mail_to_notify}',
|
||||
"trackerType": tracker_type
|
||||
}
|
||||
try:
|
||||
response = requests.post(webhook_to_post, json=json_request)
|
||||
if response.status_code >= 400:
|
||||
raise Exception(f"Webhook request failed for {webhook_to_post}\nReason: {response.reason}")
|
||||
self.redis_logger.error(f"Webhook request failed for {webhook_to_post}\nReason: {response.reason}")
|
||||
except:
|
||||
self.redis_logger.error(f"Webhook request failed for {webhook_to_post}\nReason: Something went wrong")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
|
@ -152,9 +152,13 @@ class Tracker_Term(AbstractModule):
|
|||
"emailNotification": f'{mail_to_notify}',
|
||||
"trackerType": term_type
|
||||
}
|
||||
try:
|
||||
response = requests.post(webhook_to_post, json=json_request)
|
||||
if response.status_code >= 400:
|
||||
raise Exception(f"Webhook request failed for {webhook_to_post}\nReason: {response.reason}")
|
||||
self.redis_logger.error(f"Webhook request failed for {webhook_to_post}\nReason: {response.reason}")
|
||||
except:
|
||||
self.redis_logger.error(f"Webhook request failed for {webhook_to_post}\nReason: Something went wrong")
|
||||
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
@ -109,9 +109,13 @@ class Tracker_Yara(AbstractModule):
|
|||
"emailNotification": f'{mail_to_notify}',
|
||||
"trackerType": "yara"
|
||||
}
|
||||
try:
|
||||
response = requests.post(webhook_to_post, json=json_request)
|
||||
if response.status_code >= 400:
|
||||
raise Exception(f"Webhook request failed for {webhook_to_post}\nReason: {response.reason}")
|
||||
self.redis_logger.error(f"Webhook request failed for {webhook_to_post}\nReason: {response.reason}")
|
||||
except:
|
||||
self.redis_logger.error(f"Webhook request failed for {webhook_to_post}\nReason: Something went wrong")
|
||||
|
||||
|
||||
return yara.CALLBACK_CONTINUE
|
||||
|
||||
|
|
Loading…
Reference in a new issue