← Back to SOC feed Coverage →

Borland Component

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

Hunt Hypothesis

This rule detects the presence of Borland Component objects, which are frequently leveraged by adversaries for persistence or code execution via legacy COM automation within Windows environments. Proactively hunting for these components in Azure Sentinel allows the SOC team to identify potential low-severity footholds or dormant backdoors that may be used to maintain access or facilitate further lateral movement before they are fully exploited.

YARA Rule

rule borland_component {
	meta:
		author = "_pusher_"
		description = "Borland Component"
		date = "2015-08"
		version = "0.1"
	strings:
		$c0 = { E9 ?? ?? ?? FF 8D 40 00 }
	condition:
		$c0 at pe.entry_point
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

False Positive Guidance

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