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

Acronis - Login from Abnormal IP - Low Occurrence

Back
Id84037130-a623-46c2-9144-0c0955ac4112
RulenameAcronis - Login from Abnormal IP - Low Occurrence
DescriptionSuspicious login from an IP address observed up to two times in the last two weeks.
SeverityMedium
TacticsInitialAccess
TechniquesT1078
KindScheduled
Query frequency1d
Query period14d
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Acronis Cyber Protect Cloud/Analytic Rules/AcronisLoginFromAbnormalIPLowOccurrence.yaml
Version1.0.0
Arm template84037130-a623-46c2-9144-0c0955ac4112.json
Deploy To Azure
CommonSecurityLog
| where DeviceVendor == "Acronis audit"
| extend initiator_ip = tostring(parse_json(DeviceCustomString1).initiator_ip)
| summarize LoginCount = count() by initiator_ip
| where LoginCount <= 2
| order by LoginCount asc
tactics:
- InitialAccess
id: 84037130-a623-46c2-9144-0c0955ac4112
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Acronis Cyber Protect Cloud/Analytic Rules/AcronisLoginFromAbnormalIPLowOccurrence.yaml
description: Suspicious login from an IP address observed up to two times in the last two weeks.
version: 1.0.0
severity: Medium
triggerThreshold: 0
entityMappings:
- fieldMappings:
  - identifier: Address
    columnName: initiator_ip
  entityType: IP
alertDetailsOverride:
  alertDynamicProperties: []
  alertDisplayNameFormat: Acronis - Login from Abnormal IP ({{initiator_ip}}) - Low Occurrence ({{LoginCount}})
name: Acronis - Login from Abnormal IP - Low Occurrence
query: |
  CommonSecurityLog
  | where DeviceVendor == "Acronis audit"
  | extend initiator_ip = tostring(parse_json(DeviceCustomString1).initiator_ip)
  | summarize LoginCount = count() by initiator_ip
  | where LoginCount <= 2
  | order by LoginCount asc  
kind: Scheduled
queryPeriod: 14d
eventGroupingSettings:
  aggregationKind: AlertPerResult
queryFrequency: 1d
triggerOperator: gt
incidentConfiguration:
  groupingConfiguration:
    matchingMethod: Selected
    reopenClosedIncident: true
    groupByEntities:
    - IP
    lookbackDuration: P7D
    enabled: true
  createIncident: true
requiredDataConnectors: []
relevantTechniques:
- T1078