Detection rules › Splunk
Potential nanodump execution (Windows Event Log)
Nanodump is a flexible tool that creates a minidump of the LSASS process and is commonly used by red teams with cobalt strike. This use case looks for nanodumps default access requests.
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Credential Access |
References
Telemetry coverage
Rule body
id: '19348.33710'
title: Potential nanodump execution
description: Nanodump is a flexible tool that creates a minidump of the LSASS process
and is commonly used by red teams with cobalt strike. This use case looks for nanodumps
default access requests.
logic_format: Splunk
logic: '`get_endpoint_data` `get_endpoint_data_winevent` ((TERM(EventCode=4656) OR
"<EventID>4656<") "0x1010" ) OR ((TERM(EventCode=4663) OR "<EventID>4663<") "%%4484"
) "lsass.exe" | table _time, host, user process, process_*, signature_id, parent_*
| bin span=5s | stats values(*) as * by _time, host | where match(signature_id,
"4656") and match(signature_id, "4663") '
techniques:
- credential-access:os credential dumping
technique_id: T1003
data_category:
- Windows event logs
references:
- https://github.com/fortra/nanodump
Stages and Predicates
Stage 1: search
`get_endpoint_data` `get_endpoint_data_winevent` ((TERM(EventCode=4656) OR "<EventID>4656<") "0x1010" ) OR ((TERM(EventCode=4663) OR "<EventID>4663<") "%%4484" ) "lsass.exe"
Stage 2: table
| table _time, host, user process, process_*, signature_id, parent_*
Stage 3: bucket
| bin span=5s
Stage 4: stats
| stats values(*) as * by _time, host
Stage 5: where
| where match(signature_id, "4656") and match(signature_id, "4663")
Indicators
These rows show field, operator, and value matches.
| Field | Kind | Values | Search |
|---|---|---|---|
EventCode | eq |
| field:"EventID" kind:eq |
signature_id | regex_match |
| field:"signature_id" kind:regex_match |
Search terms
These SPL tokens match against raw event text.
| Stage | Term |
|---|---|
| 1 | "<EventID>4656<" |
| 1 | "0x1010" |
| 1 | "<EventID>4663<" |
| 1 | "%%4484" |
| 1 | "lsass.exe" |