-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11220 from illumio-shield/illumio-sentinel-m2-mor…
…e-analytic-rules Added more analytic rules, modified existing queries, changed alerttype
- Loading branch information
Showing
10 changed files
with
645 additions
and
68 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
Solutions/IllumioSaaS/Analytic Rules/Illumio_VEN_Clone_Detection_Query.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
id: b3c4b8f4-c12c-471e-9999-023c05852276 | ||
name: Illumio VEN Clone Detection Rule | ||
description: | | ||
'Create Microsoft Sentinel Incident When A Cloned Ven Is Detected' | ||
severity: High | ||
status: Available | ||
requiredDataConnectors: | ||
- connectorId: IllumioSaaSDataConnector | ||
dataTypes: | ||
- Illumio_Auditable_Events_CL | ||
queryFrequency: 60m | ||
queryPeriod: 60m | ||
triggerOperator: gt | ||
triggerThreshold: 0 | ||
tactics: | ||
- DefenseEvasion | ||
relevantTechniques: | ||
- T1562 | ||
query: | | ||
Illumio_Auditable_Events_CL | ||
| where event_type has 'agent.clone_detected' | ||
| extend hostname = created_by.agent.hostname, | ||
ven_href = created_by.ven.href | ||
eventGroupingSettings: | ||
aggregationKind: SingleAlert | ||
entityMappings: | ||
- entityType: Host | ||
fieldMappings: | ||
- identifier: HostName | ||
columnName: hostname | ||
alertDetailsOverride: | ||
alertDisplayNameFormat: | | ||
Illumio VEN Clone Detection Incident for {{hostname}} | ||
alertDescriptionFormat: | | ||
Illumio VEN Clone Detection for {{hostname}} generated at {{TimeGenerated}} | ||
version: 1.0.5 | ||
kind: Scheduled |
46 changes: 46 additions & 0 deletions
46
Solutions/IllumioSaaS/Analytic Rules/Illumio_VEN_Deactivated_Query.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
id: c18bd8c2-50f0-4aa2-8122-d449243627d7 | ||
name: Illumio VEN Deactivated Detection Rule | ||
description: | | ||
'Create Microsoft Sentinel Incident When Ven Goes Into Deactivated state' | ||
severity: High | ||
status: Available | ||
requiredDataConnectors: | ||
- connectorId: IllumioSaaSDataConnector | ||
dataTypes: | ||
- Illumio_Auditable_Events_CL | ||
queryFrequency: 60m | ||
queryPeriod: 60m | ||
triggerOperator: gt | ||
triggerThreshold: 0 | ||
tactics: | ||
- DefenseEvasion | ||
relevantTechniques: | ||
- T1562 | ||
query: | | ||
Illumio_Auditable_Events_CL | ||
| where event_type has 'agent.deactivate' | ||
| mv-expand resource_changes | ||
| extend hostname = resource_changes['resource']['workload']['hostname'], | ||
workload_href = resource_changes['resource']['workload']['href'], | ||
workload_labels = resource_changes['resource']['workload']['labels'] | ||
| extend ipaddress = action.src_ip, | ||
ven_href = created_by.ven.href | ||
| project-away resource_changes, action, version | ||
eventGroupingSettings: | ||
aggregationKind: SingleAlert | ||
entityMappings: | ||
- entityType: Host | ||
fieldMappings: | ||
- identifier: HostName | ||
columnName: hostname | ||
- entityType: IP | ||
fieldMappings: | ||
- identifier: Address | ||
columnName: ipaddress | ||
alertDetailsOverride: | ||
alertDisplayNameFormat: | | ||
Illumio VEN Deactivated Incident for {{hostname}} | ||
alertDescriptionFormat: | | ||
Illumio VEN Deactivated Incident for {{hostname}} generated at {{TimeGenerated}} | ||
version: 1.0.5 | ||
kind: Scheduled |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
Solutions/IllumioSaaS/Analytic Rules/Illumio_VEN_Suspend_Query.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
id: 7379f752-18a2-43ca-8b74-70747dd792f8 | ||
name: Illumio VEN Suspend Detection Rule | ||
description: | | ||
'Create Microsoft Sentinel Incident When Ven Goes Into Suspended state' | ||
severity: High | ||
status: Available | ||
requiredDataConnectors: | ||
- connectorId: IllumioSaaSDataConnector | ||
dataTypes: | ||
- Illumio_Auditable_Events_CL | ||
queryFrequency: 60m | ||
queryPeriod: 60m | ||
triggerOperator: gt | ||
triggerThreshold: 0 | ||
tactics: | ||
- DefenseEvasion | ||
relevantTechniques: | ||
- T1562 | ||
query: | | ||
Illumio_Auditable_Events_CL | ||
| where event_type has 'agent.suspend' | ||
| extend ipaddress = action.src_ip, | ||
hostname = created_by.agent.hostname | ||
| project-away resource_changes, action, version | ||
eventGroupingSettings: | ||
aggregationKind: SingleAlert | ||
entityMappings: | ||
- entityType: Host | ||
fieldMappings: | ||
- identifier: HostName | ||
columnName: hostname | ||
- entityType: IP | ||
fieldMappings: | ||
- identifier: Address | ||
columnName: ipaddress | ||
alertDetailsOverride: | ||
alertDisplayNameFormat: | | ||
Illumio VEN Suspended Incident for {{hostname}} | ||
alertDescriptionFormat: | | ||
Illumio VEN Suspended Incident for {{hostname}} generated at {{TimeGenerated}} | ||
version: 1.0.5 | ||
kind: Scheduled |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters