← Back to SOC feed Coverage →

Vidgrab Identifying Strings

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 detection rule identifies the presence of unique identifying strings associated with the Vidgrab application to uncover potential unauthorized software deployment or data exfiltration activities within the environment. Proactively hunting for these signatures in Azure Sentinel is essential because their low severity may cause them to be overlooked during routine monitoring, allowing adversaries to establish a persistent foothold before triggering higher-level alerts.

YARA Rule

rule VidgrabStrings : Vidgrab Family
{
    meta:
        description = "Vidgrab Identifying Strings"
        author = "Seth Hardy"
        last_modified = "2014-06-20"
        
    strings:
        $ = "IDI_ICON5" wide ascii
        $ = "starter.exe"
        $ = "wmifw.exe"
        $ = "Software\\rar"
        $ = "tmp092.tmp"
        $ = "temp1.exe"
        
    condition:
       3 of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

False Positive Guidance

Here are 4 specific false positive scenarios for the Vidgrab Identifying Strings detection rule in an enterprise environment, along with suggested filters or exclusions:

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