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

CiscoISE - Certificate has expired

Back
Id6107cba5-2974-4c22-8222-2a6f7bbea664
RulenameCiscoISE - Certificate has expired
DescriptionDetects certificate expiration.
SeverityMedium
TacticsCredentialAccess
TechniquesT1552
Required data connectorsSyslogAma
KindScheduled
Query frequency1h
Query period1h
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Cisco ISE/Analytic Rules/CiscoISECertExpired.yaml
Version1.0.3
Arm template6107cba5-2974-4c22-8222-2a6f7bbea664.json
Deploy To Azure
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
name: CiscoISE - Certificate has expired
id: 6107cba5-2974-4c22-8222-2a6f7bbea664
description: |
    'Detects certificate expiration.'
triggerThreshold: 0
entityMappings:
- fieldMappings:
  - columnName: AccountCustomEntity
    identifier: FullName
  entityType: Account
- fieldMappings:
  - columnName: IPCustomEntity
    identifier: Address
  entityType: IP
- fieldMappings:
  - columnName: HostCustomEntity
    identifier: FullName
  entityType: Host
version: 1.0.3
triggerOperator: gt
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  
tactics:
- CredentialAccess
kind: Scheduled
queryFrequency: 1h
severity: Medium
queryPeriod: 1h
requiredDataConnectors:
- datatypes:
  - Syslog
  connectorId: SyslogAma
status: Available
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Cisco ISE/Analytic Rules/CiscoISECertExpired.yaml
relevantTechniques:
- T1552