← Back to SOC feed Coverage →

Tedroo Spammer

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

Hunt Hypothesis

This detection identifies anomalous email transmission patterns characteristic of the Tedroo spambot, which often serves as a precursor to more sophisticated phishing or malware campaigns within the organization. Proactively hunting for this behavior in Azure Sentinel allows the SOC team to validate low-severity alerts against known threat intelligence and refine baseline thresholds before these spam activities escalate into targeted attacks.

YARA Rule

rule Tedroo : Spammer
{
	meta:
		author="Kevin Falcoz"
		date="22/11/2015"
		description="Tedroo Spammer"

	strings:
		$signature1={25 73 25 73 2E 65 78 65}
		$signature2={5F 6C 6F 67 2E 74 78 74}

	condition:
		$signature1 and $signature2
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the Tedroo Spammer detection rule in an enterprise environment, including suggested filters and exclusions:

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