Skip to content

Commit

Permalink
Added implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
ikiril01 committed Jun 6, 2019
1 parent 1fe5700 commit b97e975
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions analytics/CAR-2013-05-009.yaml
Expand Up @@ -21,6 +21,14 @@ coverage:
tactics:
- TA0005
coverage: Moderate
implementations:
- name: Basic Query
description: This is a basic Splunk search that will output all of the sysmon-reported process images and their respective hashes, for cases where an image has more than one set of hashes. Thus, this will output a large amount of data and should be filtered by the analyst in order to make the results more useful.
code: |-
index=__your_sysmon_index__ EventCode=1|stats dc(Hashes) as Num_Hashes values(Hashes) as "Hashes" by Image|where Num_Hashes > 1
type: splunk
data_model: Sysmon native
data_model_references:
- process/create/exe
- process/create/md5_hash

0 comments on commit b97e975

Please sign in to comment.