← Back to SOC feed Coverage →

blazingtools

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-10T11:00:01Z · Confidence: medium

Hunt Hypothesis

This detection identifies the execution of BlazingTools binaries, which adversaries often leverage to perform high-performance data analysis and exfiltrate sensitive information from cloud workloads. Proactively hunting for this behavior in Azure Sentinel is critical because legitimate usage can mask malicious activity, requiring analysts to distinguish between authorized administrative tasks and potential reconnaissance or data staging operations by threat actors.

YARA Rule

rule blazingtools
{
meta:
	author = "@patrickrolsen"
	reference = "Blazing Tools - http://www.blazingtools.com (Keyloggers)"
strings:
	$s1 = "blazingtools.com"
	$s2 = "Keystrokes" wide
	$s3 = "Screenshots" wide
condition:
	uint16(0) == 0x5A4D and all of ($s*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

References

False Positive Guidance

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

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