Control: 5.2.5 Ensure that Activity Log Alert exists for Create or Update Security Solution
Description
Create an activity log alert for the Create or Update Security Solution event.
Monitoring for Create or Update Security Solution events gives insight into changes to the active security solutions and may reduce the time it takes to detect suspicious activity.
Remediation
From Azure Portal
- Navigate to the
Monitor
blade. - Select
Alerts
. - Select
Create
. - Select
Alert rule
. - Under
Filter by subscription
, choose a subscription. - Under
Filter by resource type
, selectNetwork security groups
. - Under
Filter by location
, selectAll
. - From the results, select the subscription.
- Select
Done
. - Select the
Condition
tab. - Under
Signal name
, clickCreate or Update Security Solutions (Microsoft.Security/securitySolutions)
. - Select the
Actions
tab. - To use an existing action group, click
Select action groups
. To create a new action group, clickCreate action group
. Fill out the appropriate details for the selection. - Select the
Details
tab. - Select a
Resource group
, provide anAlert rule name
and an optionalAlert rule description
. - Click
Review + create
. - Click
Create
.
From Azure CLI
az monitor activity-log alert create --resource-group "<resource group name>" --condition category=Administrative and operationName=Microsoft.Security/securitySolutions/write and level=<verbose | information | warning | error | critical>--scope "/subscriptions/<subscription ID>" --name "<activity log rule name>" -- subscription <subscription id> --action-group <action group ID> --location global
From PowerShell
Create the Conditions
object.
$conditions = @()$conditions += New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject - Equal Administrative -Field category$conditions += New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject - Equal Microsoft.Security/securitySolutions/write -Field operationName $conditions += New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject - Equal Verbose -Field level
Retrieve the Action Group
information and store in a variable, then create the Actions
object.
$actionGroup = Get-AzActionGroup -ResourceGroupName <resource group name> - Name <action group name>$actionObject = New-AzActivityLogAlertActionGroupObject -Id $actionGroup.Id
Create the Scope
object
$scope = "/subscriptions/<subscription ID>"
Create the Activity Log Alert Rule
for Microsoft.Security/securitySolutions/write
New-AzActivityLogAlert -Name "<activity log alert rule name>" -ResourceGroupName "<resource group name>" -Condition $conditions -Scope $scope -Location global -Action $actionObject -Subscription <subscription ID> -Enabled $true
Default Value
By default, no monitoring alerts are created.
Usage
Run the control in your terminal:
powerpipe control run azure_compliance.control.cis_v200_5_2_5
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run azure_compliance.control.cis_v200_5_2_5 --share
SQL
This control uses a named query:
monitor_log_alert_create_update_security_solution