← Back to SOC feed Coverage →

Check unhandledExceptionFiler iat

yara LOW Yara-Rules
community
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Yara-Rules →
Retrieved: 2026-04-19T09:00:00Z · Confidence: medium

Hunt Hypothesis

The hypothesis is that an adversary may be using a custom unhandled exception file to execute arbitrary code or evade detection by manipulating the Image Address Table (IAT) in memory. A SOC team should proactively hunt for this behavior in Azure Sentinel to identify potential malware or advanced persistent threats that leverage memory corruption techniques to persist or execute malicious payloads.

YARA Rule

rule Check_unhandledExceptionFiler_iat {

	meta:
		Author = "http://twitter.com/j0sm1"
		Description = "it's checked if UnhandledExceptionFilter is imported"
		Date = "20/04/2015"
		Reference = "http://www.codeproject.com/Articles/30815/An-Anti-Reverse-Engineering-Guide#UnhandledExceptionFilter"

	condition:
		pe.imports("kernel32.dll","UnhandledExceptionFilter")
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/antidebug_antivm/antidebug_antivm.yar