Skip to content

Commit

Permalink
[CrowdStrike] Fix KeyError in CrowdStrike processing (OpenCTI-Platfor…
Browse files Browse the repository at this point in the history
  • Loading branch information
initstring authored Sep 23, 2024
1 parent 0842217 commit 47abe92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ def create_stix2_report_from_report(
report_tags = report["tags"]
if report_tags is not None:
for tag in report_tags:
value = tag["value"]
value = tag.get("value")
if value is None or not value:
continue

Expand Down

0 comments on commit 47abe92

Please sign in to comment.