← Back to SOC feed Coverage →

Rescator PDB strings within binaries

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-07-10T11:00:01Z · Confidence: medium

Hunt Hypothesis

This detection identifies the presence of Rescator Public Database (PDB) signature strings within executable binaries, which may indicate the use of legitimate software or potential code signing artifacts often overlooked in standard scans. Proactively hunting for these specific strings in Azure Sentinel allows the SOC team to establish a baseline of known good binary characteristics and rapidly distinguish between expected application behavior and anomalous file modifications that could signal early-stage supply chain compromises.

YARA Rule

rule pdb_strings_Rescator
{
meta:
	author = "@patrickrolsen"
	maltype = "Target Attack"
	version = "0.3"
	description = "Rescator PDB strings within binaries"
	date = "01/30/2014"
strings:
	$pdb1 = "\\Projects\\Rescator" nocase
condition:
	uint16(0) == 0x5A4D and $pdb1
}

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

Here are 4 specific false positive scenarios for the Rescator PDB strings within binaries detection rule, along with suggested filters or exclusions:

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