Detection rules › Kusto
TacitRed - High Confidence Compromise
This is a third-party alert feed, not a detection over modeled telemetry. The vendor product raised the finding; this rule forwards it into the SIEM. It is searchable for reference but is excluded from the detection-rule browse and the ATT&CK coverage matrix.
Detects compromised credentials with high confidence scores. High confidence findings indicate verified credential compromises that require immediate attention. Ref: https://data443.com/tacitred-attack-surface-intelligence/
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Reconnaissance | T1589 Gather Victim Identity Information |
| Initial Access | T1078 Valid Accounts |
Rule body kusto
id: b2c3d4e5-f6a7-8901-bcde-f23456789012
name: TacitRed - High Confidence Compromise
version: 1.0.1
kind: Scheduled
description: |-
Detects compromised credentials with high confidence scores.
High confidence findings indicate verified credential compromises that require immediate attention.
Ref: https://data443.com/tacitred-attack-surface-intelligence/
severity: High
requiredDataConnectors:
- connectorId: TacitRedThreatIntel
dataTypes:
- TacitRed_Findings_CL
queryFrequency: 1h
queryPeriod: 1h
triggerOperator: GreaterThan
triggerThreshold: 0
tactics:
- CredentialAccess
- InitialAccess
- Reconnaissance
relevantTechniques:
- T1078
- T1589
query: |-
TacitRed_Findings_CL
| where TimeGenerated >= ago(1h)
| where confidence_d >= 80
| extend
Email = tostring(email_s),
Username = tostring(username_s),
Domain = tostring(domain_s),
FindingType = tostring(findingType_s),
Confidence = todouble(confidence_d),
Source = tostring(source_s),
Severity = tostring(severity_s)
| project
TimeGenerated,
Email,
Username,
Domain,
FindingType,
Confidence,
Source,
Severity
suppressionEnabled: false
incidentConfiguration:
createIncident: true
groupingConfiguration:
enabled: true
reopenClosedIncident: false
lookbackDuration: 5h
matchingMethod: Selected
groupByEntities:
- Account
suppressionDuration: 5h
eventGroupingSettings:
aggregationKind: AlertPerResult
entityMappings:
- entityType: Account
fieldMappings:
- identifier: Name
columnName: Username
- identifier: UPNSuffix
columnName: Email
- entityType: DNS
fieldMappings:
- identifier: DomainName
columnName: Domain
Stages and Predicates
Stage 1: source
TacitRed_Findings_CL
Stage 2: where
| where TimeGenerated >= ago(1h)
Stage 3: where
| where confidence_d >= 80
Stage 4: extend
| extend
Email = tostring(email_s),
Username = tostring(username_s),
Domain = tostring(domain_s),
FindingType = tostring(findingType_s),
Confidence = todouble(confidence_d),
Source = tostring(source_s),
Severity = tostring(severity_s)
Stage 5: project
| project
TimeGenerated,
Email,
Username,
Domain,
FindingType,
Confidence,
Source,
Severity
Indicators
Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.
| Field | Kind | Values |
|---|---|---|
confidence_d | ge |
|
Output fields
Fields the rule emits when it matches. Chronicle authors list these in the outcome block; they appear on the detection and $risk_score drives alerting. Sentinel / Defender XDR rules build them up through project / summarize / extend stages. Sentinel maps these into alert fields via entityMappings and customDetails; Defender XDR custom detections surface them as alert fields directly.
| Field | Source |
|---|---|
Confidence | project |
Domain | project |
Email | project |
FindingType | project |
Severity | project |
Source | project |
TimeGenerated | project |
Username | project |