← Back to SOC feed Coverage →

BobSoftMiniDelphiBoBBobSoft

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-09-18T11:00:00Z · Confidence: medium

Hunt Hypothesis

This rule targets the presence of BobSoft MiniDelphi, a lightweight Delphi compiler often utilized by adversaries to create custom, obfuscated backdoors or droppers that may evade standard signature-based detections. Proactively hunting for this specific YARA signature allows the SOC team to identify low-severity, potentially stealthy malicious artifacts in memory or on disk before they are leveraged for lateral movement or privilege escalation.

YARA Rule

rule BobSoftMiniDelphiBoBBobSoft
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 55 8B EC 83 C4 F0 53 56 B8 [4] E8 [4] 33 C0 55 68 [4] 64 FF 30 64 89 20 B8 }
	$a1 = { 55 8B EC 83 C4 F0 53 B8 [4] E8 [4] 33 C0 55 68 [4] 64 FF 30 64 89 20 B8 [4] E8 }
	$a2 = { 55 8B EC 83 C4 F0 B8 [4] E8 }

condition:
		$a0 at pe.entry_point or $a1 at pe.entry_point or $a2 at pe.entry_point
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/packer.yar