← Back to SOC feed Coverage →

Borland Cpp 1992 1994 Hint DOS EP

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

Hunt Hypothesis

This hypothesis targets the presence of legacy Borland C++ binaries from 1992-1994 that exhibit DOS entry point characteristics, which often indicate the use of outdated, unpatched, or custom-compiled executables that may harbor hidden payloads or serve as initial access vectors. Proactively hunting for these specific artifacts in Azure Sentinel helps identify potential low-severity anomalies or dormant backdoors that standard signature-based detections might miss due to their age and obfuscation.

YARA Rule

rule Borland_Cpp_1992_1994_Hint_DOS_EP: PEiD
{
    strings:
        $a = { 8C C8 8E D8 8C 1E ?? ?? 8C 06 ?? ?? 8C 06 ?? ?? 8C 06 }
    condition:
        $a 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/peid.yar