Skip to content

Commit

Permalink
m365_defender: set network.transport to ssl for ssl type actions (#10730
Browse files Browse the repository at this point in the history
)

Co-authored-by: Peter Rydzynski <[email protected]>
  • Loading branch information
peterydzynski and peterydzynski authored Aug 8, 2024
1 parent df846be commit 80576ff
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions packages/m365_defender/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "2.14.3"
changes:
- description: Fix sslconnectioninspected event `network.protocol` getting set to `dns`.
type: bugfix
link: https://github.com/elastic/integrations/pull/10730
- version: "2.14.2"
changes:
- description: Fix `network.transport` and `network.protocol` processing.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3128,7 +3128,7 @@
},
"network": {
"direction": "outbound",
"protocol": "dns",
"protocol": "ssl",
"transport": "tcp"
},
"process": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2389,7 +2389,7 @@ processors:
override: true
- set:
field: network.protocol
value: dns
value: ssl
tag: set_network_protocol_ssl
if: ctx.m365_defender?.event?.action?.type != null && ctx.m365_defender.event.action.type.toLowerCase().contains('ssl')
override: true
Expand Down
2 changes: 1 addition & 1 deletion packages/m365_defender/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.0.2"
name: m365_defender
title: Microsoft M365 Defender
version: "2.14.2"
version: "2.14.3"
description: Collect logs from Microsoft M365 Defender with Elastic Agent.
categories:
- "security"
Expand Down

0 comments on commit 80576ff

Please sign in to comment.