You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the relations supported by FIND are "first" degree: a direct reference from one SCO to another. While trying to write a hunt for DLL hijacking, I hit this:
dropper = FIND process CREATED dlls
[ERROR] UnsupportedRelation: unsupported relation "process--created--file"
check for supported relations and entity types in the documentation.
While STIX lacks and reference between process and file aside from binary_ref/image_ref, most stix-shifter connectors use the extension x-oca-event SCO, which include a process_ref and a file_ref. Certain events, like Windows Sysmon File Create events, are likely mapped so that those 2 refs in a single x-oca-eventcould represent the "process--created--file" relation. This should be true when the provider is the right Windows channel and code is the proper event ID.
There are likely lots of other 2nd degree relations, like network-traffic's src_ref and dst_ref objects (this could be a CONNECTED relation).
The text was updated successfully, but these errors were encountered:
All the relations supported by
FIND
are "first" degree: a direct reference from one SCO to another. While trying to write a hunt for DLL hijacking, I hit this:While STIX lacks and reference between
process
andfile
aside frombinary_ref
/image_ref
, most stix-shifter connectors use the extensionx-oca-event
SCO, which include aprocess_ref
and afile_ref
. Certain events, like Windows Sysmon File Create events, are likely mapped so that those 2 refs in a singlex-oca-event
could represent the "process--created--file" relation. This should be true when theprovider
is the right Windows channel andcode
is the proper event ID.There are likely lots of other 2nd degree relations, like
network-traffic
'ssrc_ref
anddst_ref
objects (this could be aCONNECTED
relation).The text was updated successfully, but these errors were encountered: