← Back to SOC feed Coverage →

is bot Rebirth gen3

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-06-28T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies the presence of the Rebirth Gen3 bot family, which adversaries often deploy to establish persistent footholds and conduct reconnaissance within Azure environments. Proactive hunting for this specific signature is essential to uncover early-stage lateral movement or command-and-control activity that may evade standard alerting thresholds due to its low severity classification.

YARA Rule

rule is__bot_Rebirth_gen3 {
	meta:
		author = "unixfreaxjp"
		date = "2018-01-21"
	strings:
        	$bot01 = "MIRAITEST" fullword nocase wide ascii
        	$bot02 = "TELNETTEST" fullword nocase wide ascii
        	$bot03 = "UPDATE" fullword nocase wide ascii
        	$bot04 = "PHONE" fullword nocase wide ascii
        	$bot05 = "RANGE" fullword nocase wide ascii
		$bot06 = "KILLATTK" fullword nocase wide ascii
		$bot07 = "STD" fullword nocase wide ascii
        	$bot08 = "BCM" fullword nocase wide ascii
		$bot09 = "NETIS" fullword nocase wide ascii
		$bot10 = "FASTLOAD" fullword nocase wide ascii
	condition:
        	6 of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 10 string patterns in its detection logic.

False Positive Guidance

Here are specific false positive scenarios for the is__bot_Rebirth_gen3 detection rule in an enterprise environment, along with recommended filters:

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