mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-06 09:25:17 +00:00
Sigma rule to detect Office persistence via addin.
This commit is contained in:
parent
a9bf22750a
commit
cb8e478ac1
32
rules/windows/sysmon/sysmon_office_persistence.yml
Normal file
32
rules/windows/sysmon/sysmon_office_persistence.yml
Normal file
@ -0,0 +1,32 @@
|
||||
title: Microsoft Office Add-In Loading
|
||||
id: 8e1cb247-6cf6-42fa-b440-3f27d57e9936
|
||||
status: experimental
|
||||
description: Detects add-ins that load when Microsoft Word or Excel starts (.wll/.xll are simply .dll fit for Word or Excel).
|
||||
references:
|
||||
- Internal research
|
||||
tags:
|
||||
- attack.persistence
|
||||
- attack.t1137
|
||||
author: NVISO
|
||||
date: 2020/05/11
|
||||
logsource:
|
||||
product: windows
|
||||
service: sysmon
|
||||
detection:
|
||||
selection:
|
||||
EventID: 11 #FileCreate
|
||||
wlldropped:
|
||||
TargetFilename|contains: \Microsoft\Word\Startup\
|
||||
TargetFilename|endswith: .wll
|
||||
xlldropped:
|
||||
TargetFilename|contains: \Microsoft\Excel\Startup\
|
||||
TargetFilename|endswith: .xll
|
||||
generic:
|
||||
TargetFilename|contains: \Microsoft\Addins\
|
||||
TargetFilename|endswith:
|
||||
- .xlam
|
||||
- .xla
|
||||
condition: selection and (wlldropped or xlldropped or generic)
|
||||
falsepositives:
|
||||
- Legitimate add-ins
|
||||
level: high
|
Loading…
Reference in New Issue
Block a user