mirror of
https://github.com/S12cybersecurity/YaraRules
synced 2026-06-08 12:22:33 +00:00
Create process-dump.yar
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import "pe"
|
||||
|
||||
rule WIN_MiniDump_DbgHelp_Importer
|
||||
{
|
||||
meta:
|
||||
author = "0x12 Dark Development"
|
||||
description = "Detects PE files that import MiniDumpWriteDump from dbghelp.dll"
|
||||
version = "1.0"
|
||||
date = "2025-09-25"
|
||||
reference = "Detects explicit DbgHelp-based minidump capability"
|
||||
tags = ["windows", "minidump", "dbghelp", "dfir", "edr"]
|
||||
|
||||
condition:
|
||||
uint16(0) == 0x5A4D and pe.is_pe and
|
||||
pe.imports("dbghelp.dll", "MiniDumpWriteDump")
|
||||
}
|
||||
Reference in New Issue
Block a user