← Back to SOC feed Coverage →

Koler.D class

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

Hunt Hypothesis

The Koler.D class detection rule identifies potential adversary behavior involving suspicious file execution and network communication patterns commonly associated with low-privilege persistence and lateral movement. SOC teams should proactively hunt for this behavior in Azure Sentinel to detect and mitigate early-stage threat activity that could lead to deeper network compromise.

YARA Rule

rule koler_D : android
{
	meta:
		author = "https://twitter.com/jsmesa"
		reference = "https://koodous.com/"
		description = "Koler.D class"

	strings:
		$0 = "ZActivity"
		$a = "Lcom/android/zics/ZRuntimeInterface"
		
	condition:
		($0 and $a)
		
}

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

Original source: https://github.com/Yara-Rules/rules/blob/main/deprecated/Android/Android_Malware_Ramsonware.yar