mirror of https://gitlab.com/curben/blog
feat(threat-hunting): DonPAPI detection
This commit is contained in:
parent
1901e5c573
commit
c336c490de
|
|
@ -496,13 +496,13 @@ SPL:
|
||||||
| table Time, host, EventCode, EventDescription, service_name, process, index
|
| table Time, host, EventCode, EventDescription, service_name, process, index
|
||||||
```
|
```
|
||||||
|
|
||||||
## Credential Manager Dump
|
## Credential Manager/SAM Dump
|
||||||
|
|
||||||
References: [1](https://redcanary.com/blog/credential-access/), [2](https://gist.github.com/JohnLaTwC/3e7dd4cd8520467df179e93fb44a434e)
|
References: [1](https://redcanary.com/blog/credential-access/), [2](https://gist.github.com/JohnLaTwC/3e7dd4cd8520467df179e93fb44a434e), [DonPAPI](https://blog.talosintelligence.com/when-legitimate-tools-go-rogue/)
|
||||||
SPL:
|
SPL:
|
||||||
|
|
||||||
```spl
|
```spl
|
||||||
| tstats summariesonly=true allow_old_summaries=true count FROM datamodel=Endpoint.Processes WHERE index="windows" Processes.signature_id=4688 (Processes.process_name="rundll32.exe" Processes.process IN ("*keymdr.dll*", "*krshowkeymgr*")) OR (Processes.process_name="credwiz.exe" Processes.process="*.crd*") OR (Processes.process_name="vaultcmd.exe" Processes.process="*/list*") BY index, host, Processes.signature_id, Processes.signature, Processes.process, Processes.user, _time span=1s
|
| tstats summariesonly=true allow_old_summaries=true count FROM datamodel=Endpoint.Processes WHERE index="windows" Processes.signature_id=4688 (Processes.process_name="rundll32.exe" Processes.process IN ("*keymdr.dll*", "*krshowkeymgr*")) OR (Processes.process_name="credwiz.exe" Processes.process="*.crd*") OR (Processes.process_name="vaultcmd.exe" Processes.process="*/list*") OR Processes.process IN ("*donpapi*", "*dpp*") OR (Processes.process_name="reg.exe" Processes.process IN ("c:\\windows\\system32\\reg.exe*save*", "c:\\windows\\system32\\reg.exe*export*") Processes.process IN ("c:\\windows\\system32\\reg.exe*sam*", "c:\\windows\\system32\\reg.exe*security*", "c:\\windows\\system32\\reg.exe*system*")) BY index, host, Processes.signature_id, Processes.signature, Processes.process, Processes.user, _time span=1s
|
||||||
| rename Processes.* AS *, signature_id AS EventCode, signature AS EventDescription
|
| rename Processes.* AS *, signature_id AS EventCode, signature AS EventDescription
|
||||||
| eval Time = strftime(_time, "%Y-%m-%d %H:%M:%S %z")
|
| eval Time = strftime(_time, "%Y-%m-%d %H:%M:%S %z")
|
||||||
| lookup ad_users sAMAccountName AS user OUTPUT displayName AS Name, mail AS Email
|
| lookup ad_users sAMAccountName AS user OUTPUT displayName AS Name, mail AS Email
|
||||||
|
|
@ -1416,19 +1416,6 @@ SPL:
|
||||||
| table Time, host, TaskName, command, EventCode, EventDescription, user, TaskAttributes
|
| table Time, host, TaskName, command, EventCode, EventDescription, user, TaskAttributes
|
||||||
```
|
```
|
||||||
|
|
||||||
## SAM Credential Dump
|
|
||||||
|
|
||||||
References: [1](https://redcanary.com/blog/credential-access/)
|
|
||||||
SPL:
|
|
||||||
|
|
||||||
```spl
|
|
||||||
| tstats summariesonly=true allow_old_summaries=true count FROM datamodel=Endpoint.Processes WHERE index="windows" Processes.signature_id=4688 Processes.process_name="reg.exe" Processes.process IN ("c:\\windows\\system32\\reg.exe*save*", "c:\\windows\\system32\\reg.exe*export*") Processes.process IN ("c:\\windows\\system32\\reg.exe*sam*", "c:\\windows\\system32\\reg.exe*security*", "c:\\windows\\system32\\reg.exe*system*") BY index, host, Processes.signature_id, Processes.signature, Processes.process, Processes.user, _time span=1s
|
|
||||||
| rename Processes.* AS *, signature_id AS EventCode, signature AS EventDescription
|
|
||||||
| eval Time = strftime(_time, "%Y-%m-%d %H:%M:%S %z")
|
|
||||||
| lookup ad_users sAMAccountName AS user OUTPUT displayName AS Name, mail AS Email
|
|
||||||
| table Time, index, host, EventCode, EventDescription, process, user, Name, Email
|
|
||||||
```
|
|
||||||
|
|
||||||
## SIDHistory compromise
|
## SIDHistory compromise
|
||||||
|
|
||||||
Description: Malicious actors may add a value to the 'sIDHistory' attribute of a user object they control to establish persistence. "%%1793" occurs when SidHistory value is cleared
|
Description: Malicious actors may add a value to the 'sIDHistory' attribute of a user object they control to establish persistence. "%%1793" occurs when SidHistory value is cleared
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue