← Back to SOC feed Coverage →

Virut (unknown version) fileinfector detection

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-07-01T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis posits that an adversary is utilizing a novel or unclassified variant of the Virut file infector to silently modify executable files and establish persistence within the environment. Proactive hunting for this specific signature in Azure Sentinel is critical because its “unknown version” status suggests potential evasion capabilities against standard, rule-based detections, requiring manual investigation to confirm infection scope before automated alerts can be tuned.

YARA Rule

rule VirutFileInfector
{
	meta:
    	author = "D00RT <@D00RT_RM>"
    	data = "2017/08/04"

        description = "Virut (unknown version) fileinfector detection"
        reference = "http://reversingminds-blog.logdown.com"

        infected_sample1 = "5755f09d445a5dcab3ea92d978c7c360"
        infected_sample2 = "68e508108ed94c8c391c70ef1d15e0f8"
        infected_sample2 = "2766e8e78ee10264cf1a3f5f4a16ff00"

	strings:
    	$sign = { F9 E8 22 00 00 00 ?? 31 EB 56 }
        $func = { 52 C1 E9 1D 68 31 D4 00 00 58 5A 81 C1 94 01 00 00 80 4D 00 F0 89 6C 24 04 F7 D1 81 6C 24 04 }       
 
    condition:
    	$sign and $func
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

References

False Positive Guidance

Here are 5 specific false positive scenarios for the Virut (unknown version) file infector detection rule in an enterprise environment, along with suggested filters or exclusions:

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