Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions pycti/entities/opencti_stix_cyber_observable.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,16 @@ def create(self, **kwargs):
if "dst_port" in observable_data
else None
),
"networkSrc": (
observable_data["src_ref"]
if "src_ref" in observable_data
else None
),
"networkDst": (
observable_data["dst_ref"]
if "dst_ref" in observable_data
else None
),
"protocols": (
observable_data["protocols"]
if "protocols" in observable_data
Expand Down