We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8779e38 commit 4db7e20Copy full SHA for 4db7e20
1 file changed
python_catalyst/client.py
@@ -649,6 +649,12 @@ def create_report_from_member_content_with_references(
649
for threat_actor in all_entities.get("threatactor", []) + all_entities.get(
650
"threat_actor", []
651
):
652
+ if not self.catalyst_authenticated:
653
+ if self.logger:
654
+ self.logger.debug(
655
+ f"Skipping threat actor {threat_actor.get('value')} because user is not authenticated... This will be implemented in the future."
656
+ )
657
+ continue
658
self._process_threat_actor(
659
threat_actor,
660
related_objects,
0 commit comments