← Back to SOC feed Coverage →

Yara rule to match against memory of processes infected by Urausy skype.dat

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 hunt targets adversaries leveraging the Urausy malware family to inject malicious code into Skype process memory via a specific skype.dat artifact, indicating an attempt to establish persistence or exfiltrate data through trusted communication channels. Proactively hunting for this signature in Azure Sentinel is critical because low-severity memory anomalies often evade standard alerting thresholds, allowing attackers to maintain stealthy footholds within the organization’s endpoint ecosystem before escalating their activities.

YARA Rule

rule urausy_skype_dat : memory {
	meta:
		author = "AlienVault Labs"
		description = "Yara rule to match against memory of processes infected by Urausy skype.dat"
	strings:
		$a = "skype.dat" ascii wide
		$b = "skype.ini" ascii wide
		$win1 = "CreateWindow"
		$win2 = "YIWEFHIWQ" ascii wide
		$desk1 = "CreateDesktop"
		$desk2 = "MyDesktop" ascii wide
	condition:
		$a and $b and (all of ($win*) or all of ($desk*))
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 6 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the Urausy skype.dat detection rule in an enterprise environment, including suggested filters and exclusions:

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