Skip to content

Commit

Permalink
Merge PR #5093 from @Neo23x0 - Fix `Creation of WerFault.exe/Wer.dll …
Browse files Browse the repository at this point in the history
…in Unusual Folder`

fix: Creation of WerFault.exe/Wer.dll in Unusual Folder - Add filter for windows update/installation folder `C:\Windows\SoftwareDistribution\`
 
---------

Co-authored-by: nasbench <[email protected]>
  • Loading branch information
Neo23x0 and nasbench authored Nov 29, 2024
1 parent d804e9c commit 374f003
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
title: Creation of an WerFault.exe in Unusual Folder
title: Creation of WerFault.exe/Wer.dll in Unusual Folder
id: 28a452f3-786c-4fd8-b8f2-bddbe9d616d1
status: test
description: Detects WerFault copoed to a suspicious folder, which could be a sign of WerFault DLL hijacking
description: Detects the creation of a file named "WerFault.exe" or "wer.dll" in an uncommon folder, which could be a sign of WerFault DLL hijacking.
references:
- https://www.bleepingcomputer.com/news/security/hackers-are-now-hiding-malware-in-windows-event-logs/
author: frack113
date: 2022-05-09
modified: 2024-11-28
tags:
- attack.persistence
- attack.defense-evasion
Expand All @@ -18,12 +19,13 @@ detection:
TargetFilename|endswith:
- '\WerFault.exe'
- '\wer.dll'
filter_whitelist:
TargetFilename|contains:
- '\System32\'
- '\SysWOW64\'
- '\WinSxS\'
condition: selection and not filter_whitelist
filter_main_known_locations:
TargetFilename|startswith:
- 'C:\Windows\SoftwareDistribution\'
- 'C:\Windows\System32\'
- 'C:\Windows\SysWOW64\'
- 'C:\Windows\WinSxS\'
condition: selection and not 1 of filter_main_*
falsepositives:
- Unknown
level: high
level: medium

0 comments on commit 374f003

Please sign in to comment.