-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix mapping references in elastic-ecs connector #1471
fix mapping references in elastic-ecs connector #1471
Conversation
stix_shifter_modules/elastic_ecs/stix_translation/json/to_stix_map.json
Outdated
Show resolved
Hide resolved
stix_shifter_modules/elastic_ecs/stix_translation/json/to_stix_map.json
Outdated
Show resolved
Hide resolved
stix_shifter_modules/elastic_ecs/stix_translation/json/stix_2_1/to_stix_map.json
Outdated
Show resolved
Hide resolved
…tix-shifter into patch-elastic-mapping
…e appropriate ipv4/ipv6 object
…tix-shifter into patch-elastic-mapping
…e appropriate ipv4/ipv6 object
@@ -1015,8 +1089,8 @@ | |||
} | |||
], | |||
"ppid": { | |||
"key": "process.parent_ref.ppid", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if we have process:ppid
and process:pgid
in STIX. May need a double check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both attributes are pid
refs. ppid
refers to the parent process pid
, while pgid
refers to the process group leader pid
. NB: pgid
to be deprecated and referred to as process.group_leader.pid
.
Fixed the refs in to_stix_map
. See new commit.
A new group_leader_ref
reference attribute should be added to Process STIX extensions.
Quick check: in |
This PR fixes mapping errors identified by the to_stix_map validator.