Try in Splunk Security Cloud

Description

The following analytic detects CrowdStrike alerts for admin accounts with duplicate password risk, identifying instances where administrative users share the same password. This practice significantly increases the risk of unauthorized access and potential breaches. Addressing these alerts promptly is crucial for maintaining strong security protocols, ensuring each admin account uses a unique, secure password to protect critical systems and data.

  • Type: TTP
  • Product: Splunk Enterprise, Splunk Enterprise Security, Splunk Cloud

  • Last Updated: 2024-07-15
  • Author: Teoderick Contreras, Splunk
  • ID: b8bccfbf-6ac2-40f2-83b6-e72b7efaa7d4

Annotations

ATT&CK

ATT&CK

ID Technique Tactic
T1110 Brute Force Credential Access
Kill Chain Phase
  • Exploitation
NIST
  • DE.CM
CIS20
  • CIS 10
CVE
1
2
3
4
5
6
7
`crowdstrike_identities` primaryDisplayName = "*admin*" 
| rename riskFactors{}.severity as severity, riskFactors{}.type as risk_type, roles{}.type as role_type, accounts{}.domain as domain, accounts{}.dn as dn, accounts{}.samAccountName as user 
| stats count min(_time) as firstTime max(_time) as lastTime by  domain dn primaryDisplayName risk_type severity riskScore riskScoreSeverity user role_type 
| where risk_type = "DUPLICATE_PASSWORD" 
| `security_content_ctime(firstTime)` 
| `security_content_ctime(lastTime)` 
| `crowdstrike_admin_with_duplicate_password_filter`

Macros

The SPL above uses the following Macros:

:information_source: crowdstrike_admin_with_duplicate_password_filter is a empty macro by default. It allows the user to filter out any results (false positives) without editing the SPL.

Required fields

List of fields required to use this analytic.

  • _time
  • riskFactors{}.severity
  • riskFactors{}.type
  • roles{}.type
  • accounts{}.domain
  • accounts{}.dn
  • accounts{}.samAccountName

How To Implement

To implement crowdstrike:identities logs, use the Falcon Streaming API. Set up an API client, authenticate with your CrowdStrike credentials, and subscribe to the "crowdstrike:identities" event stream. Process and store the logs as needed, integrating them into your logging or SIEM system for monitoring and analysis.

Known False Positives

unknown

Associated Analytic Story

RBA

Risk Score Impact Confidence Message
80.0 100 80 Duplicate Password for Admin User found on $domain$

:information_source: The Risk Score is calculated by the following formula: Risk Score = (Impact * Confidence/100). Initial Confidence and Impact is set by the analytic author.

Reference

Test Dataset

Replay any dataset to Splunk Enterprise by using our replay.py tool or the UI. Alternatively you can replay a dataset into a Splunk Attack Range

source | version: 1