Skip to content

Xdm.event.outcome bulk6 #24668

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

Merged
merged 6 commits into from
Feb 16, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ filter
xdm.intermediate.host.fqdn = HOST,
xdm.source.user.username = username,
xdm.event.outcome_reason = reason,
xdm.event.outcome = result,
xdm.event.outcome = if(result = "FAILURE", XDM_CONST.OUTCOME_FAILED, result = "SUCCESS", XDM_CONST.OUTCOME_SUCCESS, result = "ERROR", XDM_CONST.OUTCOME_UNKNOWN, result = null, null, to_string(result)),
xdm.source.application.name = integration,
xdm.auth.auth_method = factor;

Expand Down
4 changes: 4 additions & 0 deletions Packs/DuoAdminApi/ReleaseNotes/3_2_5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

#### Modeling Rules
##### Duo Modeling Rule
- Updated Modeling Rules
2 changes: 1 addition & 1 deletion Packs/DuoAdminApi/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "DUO Admin",
"description": "DUO for admins.\nMust have access to the admin api in order to use this",
"support": "xsoar",
"currentVersion": "3.2.4",
"currentVersion": "3.2.5",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[MODEL: dataset=fireeye_mps_raw]
alter xdm.target.port = to_number(dpt),
xdm.source.port = to_number(spt),
xdm.event.outcome = act,
xdm.event.operation_sub_type = act,
xdm.target.ipv4 = dst,
xdm.source.ipv4 = src,
xdm.target.host.mac_addresses = arraycreate(coalesce(dmac,"")) ,
Expand Down
4 changes: 4 additions & 0 deletions Packs/FireEyeNX/ReleaseNotes/1_1_15.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

#### Modeling Rules
##### FireEye NX Modeling Rule
- Updated Modeling Rules
2 changes: 1 addition & 1 deletion Packs/FireEyeNX/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "FireEye Network Security (NX)",
"description": "FireEye Network Security is an effective cyber threat protection solution that helps organizations minimize the risk of costly breaches by accurately detecting and immediately stopping advanced, targeted, and other evasive attacks hiding in Internet traffic.",
"support": "xsoar",
"currentVersion": "1.1.14",
"currentVersion": "1.1.15",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ filter
xdm.target.host.ipv4_addresses = arraycreate(coalesce(source_ip, "")),
xdm.source.host.ipv4_addresses = arraycreate(coalesce(destination_ip, "")),
xdm.event.type = event_type,
xdm.event.outcome = action,
xdm.event.outcome = if(action ~= "block", XDM_CONST.OUTCOME_FAILED, action = "allow", XDM_CONST.OUTCOME_SUCCESS, action = null, null, to_string(action)),
xdm.event.outcome_reason = message,
xdm.source.process.executable.sha256 = sha_256,
xdm.source.process.executable.filename = found_malisious,
Expand Down Expand Up @@ -81,6 +81,7 @@ filter
protocl = arrayindex(regextract(_raw_log,"protocol\=(\w+)"),0),
protocl_type = arrayindex(regextract(_raw_log,"type\=(\d+)"),0)
| alter
xdm.observer.name = appliance_name,
xdm.source.ipv4 = source_ip,
xdm.source.port = to_number(source_port),
xdm.target.ipv4 = destination_ip,
Expand All @@ -89,7 +90,7 @@ filter
xdm.target.interface = destination_mac,
xdm.alert.description = Message,
xdm.network.dhcp.dns_server = arraycreate(coalesce(Dns_server_ips, "")),
xdm.event.outcome = connectivity,
xdm.event.outcome = if(connectivity = "false", XDM_CONST.OUTCOME_FAILED, connectivity = "true", XDM_CONST.OUTCOME_SUCCESS, connectivity = null, null, to_string(connectivity)),
xdm.event.operation_sub_type = vpn_type,
xdm.network.session_id = spi_unique_identifier,
xdm.observer.unique_identifier = peer_unique_identifier,
Expand Down
4 changes: 4 additions & 0 deletions Packs/cisco-meraki/ReleaseNotes/1_0_6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

#### Modeling Rules
##### Cisco Meraki
- Updated Modeling Rules
2 changes: 1 addition & 1 deletion Packs/cisco-meraki/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Cisco Meraki",
"description": "Cloud controlled WiFi, routing, and security.",
"support": "xsoar",
"currentVersion": "1.0.5",
"currentVersion": "1.0.6",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down