← Back to SOC feed Coverage →

PseudoSigner 01 Borland Delphi 60 70

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

Hunt Hypothesis

This rule identifies executable files compiled with Borland Delphi 6.0 or 7.0 that exhibit characteristics associated with the PseudoSigner tool, a technique often used by adversaries to create unsigned or falsely signed binaries to evade security controls. Proactively hunting for these artifacts in Azure Sentinel allows the SOC to detect potential low-severity malware or trojans that leverage legacy compiler signatures to blend in with legitimate software, reducing the risk of undetected persistence or initial access.

YARA Rule

rule _PseudoSigner_01_Borland_Delphi_60_70: PEiD
{
    strings:
        $a = { 90 90 90 90 68 ?? ?? ?? ?? 67 64 FF 36 00 00 67 64 89 26 00 00 F1 90 90 90 90 53 8B D8 33 C0 A3 09 09 09 00 6A 00 E8 09 09 00 FF A3 09 09 09 00 A1 09 09 09 00 A3 09 09 09 00 33 C0 A3 09 09 09 00 33 C0 A3 09 09 09 00 E8 }
    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