Skip to content

Commit

Permalink
Creation of the common module and notification system
Browse files Browse the repository at this point in the history
Created a new Django App to centralize the generic functions of Watcher used by multiple modules.
Refactored the notification system to integrate SMTPS protocol (replacing SMTP).
Added automatic alert creation in TheHive via Feeder.
Integrated notifications through the Citadel enterprise application (via APIs).
Added Slack notifications (via APIs).
  • Loading branch information
ygalnezri committed Dec 4, 2024
1 parent e6f9346 commit 2ef3f67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ EMAIL_CLASSIFICATION=INTERNAL
# THE HIVE Setup
THE_HIVE_URL=
THE_HIVE_VERIFY_SSL=False
THE_HIVE_API_KEY=
THEHIVE_API_KEY=
THE_HIVE_CASE_ASSIGNEE=watcher
THE_HIVE_TAGS=Watcher,Impersonation,Malicious Domain,Typosquatting
THE_HIVE_CUSTOM_FIELD=watcher-id
Expand Down
2 changes: 1 addition & 1 deletion Watcher/Watcher/watcher/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
THE_HIVE_VERIFY_SSL = True
if THE_HIVE_VERIFY_SSL == "False":
THE_HIVE_VERIFY_SSL = False
THE_HIVE_API_KEY = os.environ.get('THE_HIVE_API_KEY', '')
THEHIVE_API_KEY = os.environ.get('THEHIVE_API_KEY', '')
THE_HIVE_CASE_ASSIGNEE = os.environ.get('THE_HIVE_CASE_ASSIGNEE', 'watcher')
THE_HIVE_TAGS = os.environ.get('THE_HIVE_TAGS', "Watcher,Impersonation,Malicious Domain,Typosquatting").split(",")
THE_HIVE_CUSTOM_FIELD = os.environ.get('THE_HIVE_CUSTOM_FIELD', 'watcher-id')
Expand Down

0 comments on commit 2ef3f67

Please sign in to comment.