let lbtime = 1h;
CiscoISEEvent
| where TimeGenerated > ago(lbtime)
| where EventId == '60167'
| project SrcIpAddr, DvcIpAddr, DvcHostname, DstUserName
| extend HostCustomEntity = DvcHostname
| extend IPCustomEntity = SrcIpAddr
| extend AccountCustomEntity = DstUserName
status: Available
queryFrequency: 1h
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Cisco ISE/Analytic Rules/CiscoISECertExpired.yaml
kind: Scheduled
description: |
'Detects certificate expiration.'
triggerOperator: gt
tactics:
- CredentialAccess
queryPeriod: 1h
triggerThreshold: 0
id: 6107cba5-2974-4c22-8222-2a6f7bbea664
severity: Medium
requiredDataConnectors:
- connectorId: SyslogAma
datatypes:
- Syslog
version: 1.0.3
query: |
let lbtime = 1h;
CiscoISEEvent
| where TimeGenerated > ago(lbtime)
| where EventId == '60167'
| project SrcIpAddr, DvcIpAddr, DvcHostname, DstUserName
| extend HostCustomEntity = DvcHostname
| extend IPCustomEntity = SrcIpAddr
| extend AccountCustomEntity = DstUserName
entityMappings:
- fieldMappings:
- identifier: FullName
columnName: AccountCustomEntity
entityType: Account
- fieldMappings:
- identifier: Address
columnName: IPCustomEntity
entityType: IP
- fieldMappings:
- identifier: FullName
columnName: HostCustomEntity
entityType: Host
name: CiscoISE - Certificate has expired
relevantTechniques:
- T1552