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

Excessive Failed Authentication from Invalid Inputs

Back
Idc775a46b-21b1-46d7-afa6-37e3e577a27b
RulenameExcessive Failed Authentication from Invalid Inputs
DescriptionCreates an incident in the event that a user generates an excessive amount of failed authentications due to invalid inputs, indications of a potential brute force.
SeverityMedium
TacticsCredentialAccess
TechniquesT1110
Required data connectorsSyslogAma
KindScheduled
Query frequency1h
Query period1h
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Symantec VIP/Analytic Rules/ExcessiveFailedAuthenticationsfromInvalidInputs.yaml
Version1.0.4
Arm templatec775a46b-21b1-46d7-afa6-37e3e577a27b.json
Deploy To Azure
let threshold = 15;
SymantecVIP
| where isnotempty(RADIUSAuth)
| where RADIUSAuth =~ "Reject"
| summarize Total = count() by bin(TimeGenerated, 15m), User, ClientIP
| where Total > threshold
description: |
    'Creates an incident in the event that a user generates an excessive amount of failed authentications due to invalid inputs, indications of a potential brute force.'
kind: Scheduled
tactics:
- CredentialAccess
requiredDataConnectors:
- connectorId: SyslogAma
  datatypes:
  - Syslog
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Symantec VIP/Analytic Rules/ExcessiveFailedAuthenticationsfromInvalidInputs.yaml
severity: Medium
name: Excessive Failed Authentication from Invalid Inputs
triggerThreshold: 0
queryPeriod: 1h
query: |
  let threshold = 15;
  SymantecVIP
  | where isnotempty(RADIUSAuth)
  | where RADIUSAuth =~ "Reject"
  | summarize Total = count() by bin(TimeGenerated, 15m), User, ClientIP
  | where Total > threshold  
relevantTechniques:
- T1110
id: c775a46b-21b1-46d7-afa6-37e3e577a27b
queryFrequency: 1h
entityMappings:
- entityType: Account
  fieldMappings:
  - columnName: User
    identifier: FullName
- entityType: IP
  fieldMappings:
  - columnName: ClientIP
    identifier: Address
triggerOperator: gt
version: 1.0.4
status: Available