← Back to SOC feed Coverage →

Infinity

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

Hunt Hypothesis

This detection targets adversary behavior characterized by specific file patterns identified through the Infinity YARA signature, which often indicate early-stage reconnaissance or benign tool usage that may precede more complex attacks. The SOC team should proactively hunt for these indicators in Azure Sentinel to establish a baseline of normal activity and identify potential false negatives where low-severity signals could evolve into significant threats if left unmonitored.

YARA Rule

rule Infinity : RAT
{
	meta:
		author = " Kevin Breen <[email protected]>"
		date = "2014/04"
		ref = "http://malwareconfig.com/stats/Infinity"
		maltype = "Remote Access Trojan"
		filetype = "exe"

	strings:
		$a = "CRYPTPROTECT_PROMPTSTRUCT"
		$b = "discomouse"
		$c = "GetDeepInfo"
		$d = "AES_Encrypt"
		$e = "StartUDPFlood"
		$f = "BATScripting" wide
		$g = "FBqINhRdpgnqATxJ.html" wide
		$i = "magic_key" wide

	condition:
		all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 8 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the Infinity detection rule in a legitimate enterprise environment, including suggested filters or exclusions:

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