Microsoft Sentinel Analytic Rules
cloudbrothers.infoAzure Sentinel RepoToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

Silverfort - UserBruteForce Incident

Back
Id46ff357b-9e98-465b-9e45-cd52fa4a7522
RulenameSilverfort - UserBruteForce Incident
DescriptionA security weakness that allows attackers to gain unauthorized access to user accounts by systematically guessing the username and password combinations.
SeverityHigh
TacticsCredentialAccess
TechniquesT1110
Required data connectorsSilverfortAma
KindScheduled
Query frequency15m
Query period15m
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Silverfort/Analytic Rules/User_Brute_Force.yaml
Version1.0.0
Arm template46ff357b-9e98-465b-9e45-cd52fa4a7522.json
Deploy To Azure
CommonSecurityLog 
| where DeviceVendor has 'Silverfort'
| where DeviceProduct has 'Admin Console'
| where DeviceEventClassID == "NewIncident"
| where Message has "UserBruteForce"
| extend UserName = parse_json(replace('^""|""$', '', Message))['userName']
name: Silverfort - UserBruteForce Incident
id: 46ff357b-9e98-465b-9e45-cd52fa4a7522
description: |
    'A security weakness that allows attackers to gain unauthorized access to user accounts by systematically guessing the username and password combinations.'
triggerThreshold: 0
entityMappings:
- fieldMappings:
  - columnName: UserName
    identifier: Name
  entityType: Account
version: 1.0.0
triggerOperator: gt
query: |-
  CommonSecurityLog 
  | where DeviceVendor has 'Silverfort'
  | where DeviceProduct has 'Admin Console'
  | where DeviceEventClassID == "NewIncident"
  | where Message has "UserBruteForce"
  | extend UserName = parse_json(replace('^""|""$', '', Message))['userName']  
tactics:
- CredentialAccess
kind: Scheduled
queryFrequency: 15m
severity: High
queryPeriod: 15m
requiredDataConnectors:
- dataTypes:
  - CommonSecurityLog
  connectorId: SilverfortAma
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Silverfort/Analytic Rules/User_Brute_Force.yaml
relevantTechniques:
- T1110