Skip to content

Commit

Permalink
fix stix 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mdazam1942 committed Mar 24, 2022
1 parent 7f947cc commit 5ef7d1d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
},
"process" : {
"fields": {
"name": ["destinationProcessName", "sourceProcessName"],
"parent_ref.name": ["sourceProcessName"],
"command_line": ["destinationServiceName", "sourceServiceName"]
}
Expand Down Expand Up @@ -112,7 +111,8 @@
"destination_fqdn": ["fulltextSearch"],
"destination_nt_domain": ["destinationNtDomain"],
"destination_geo_location_info": ["fulltextSearch"],
"destination_geo_postal_code": ["fulltextSearch"]
"destination_geo_postal_code": ["fulltextSearch"],
"destination_process_name": ["destinationProcessName"]
}
},
"x-arcsight-event-source": {
Expand All @@ -123,7 +123,8 @@
"source_fqdn": ["fulltextSearch"],
"source_nt_domain": ["sourceNtDomain"],
"source_geo_location_info": ["fulltextSearch"],
"source_geo_postal_code": ["fulltextSearch"]
"source_geo_postal_code": ["fulltextSearch"],
"source_process_name": ["sourceProcessName"]
}
},
"x-arcsight-event-vulnerability": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,20 +135,13 @@
}
],
"destinationProcessName": {
"key": "process.name",
"object": "process"
"key": "x-arcsight-event-destination.destination_process_name",
"object": "destination"
},
"sourceProcessName": {
"key": "x-arcsight-event-source.source_process_name",
"object": "source"
},
"sourceProcessName": [
{
"key": "process.name",
"object": "parent_process"
},
{
"key": "process.parent_ref",
"object": "process",
"references": "parent_process"
}
],
"destinationServiceName": {
"key": "process.command_line",
"object": "process"
Expand Down Expand Up @@ -676,20 +669,13 @@
}
],
"destinationProcessName": {
"key": "process.name",
"object": "process"
"key": "x-arcsight-event-destination.destination_process_name",
"object": "destination"
},
"sourceProcessName": {
"key": "x-arcsight-event-source.source_process_name",
"object": "source"
},
"sourceProcessName": [
{
"key": "process.name",
"object": "parent_process"
},
{
"key": "process.parent_ref",
"object": "process",
"references": "parent_process"
}
],
"destinationServiceName": {
"key": "process.command_line",
"object": "process"
Expand Down

0 comments on commit 5ef7d1d

Please sign in to comment.