← Back to SOC feed Coverage →

IsNET EXE

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-09-22T11:00:00Z · Confidence: medium

Hunt Hypothesis

This rule identifies executable files that are compiled with the .NET framework, a common choice for adversaries to develop custom malware or implant tools due to its cross-platform capabilities and ease of development. Proactively hunting for these artifacts in Azure Sentinel allows the SOC to isolate and analyze potentially suspicious .NET binaries before they execute, helping to detect stealthy implants or post-exploitation tools that may blend in with legitimate application traffic.

YARA Rule

rule IsNET_EXE : PECheck
{
	condition:
		pe.imports ("mscoree.dll","_CorExeMain")
}

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/packers/packer_compiler_signatures.yar