← Back to SOC feed Coverage →

check RaiseException 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 detection rule identifies potential code injection or memory corruption by monitoring the use of the RaiseException function in the Import Address Table, which may indicate malicious code execution. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify early-stage adversaries leveraging low-level Windows API calls to evade traditional detection mechanisms.

YARA Rule

rule check_RaiseException_iat {

	meta:
		Author = "http://twitter.com/j0sm1"
		Description = "it's checked if RaiseException is imported"
		Date = "20/04/2015"
		Reference = "http://waleedassar.blogspot.com.es/2012/11/ollydbg-raiseexception-bug.html"

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

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