← Back to SOC feed Coverage →

Dotfuscator

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 detects the use of Dotfuscator, a .NET obfuscation tool, which adversaries employ to hide malicious code logic and evade static analysis during post-exploitation activities. Proactively hunting for this behavior in Azure Sentinel allows the SOC to identify potentially stealthy .NET payloads that may be executing in cloud workloads or hybrid environments before they establish persistence or exfiltrate data.

YARA Rule

rule dotfuscator : packer
{
	meta:
		author = "Jean-Philippe Teissier / @Jipe_"
		description = "Dotfuscator"
		date = "2013-02-01"
		filetype = "memory"
		version = "1.0"

	strings:
		$a = "Obfuscated with Dotfuscator"

	condition:
		$a
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

False Positive Guidance

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