← Back to SOC feed Coverage →

Finds the custom xor decode loop for <PolishBankRAT_fdsvc>

yara LOW Yara-Rules
backdoorcommunity
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-06-28T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt targets adversaries executing the specific XOR decoding routine associated with PolishBankRAT’s fdsvc component to identify early-stage malware activity within Azure Sentinel. Proactively hunting for this signature is critical because detecting this custom loop allows the SOC team to isolate potential banking sector compromises before they escalate into full data exfiltration or lateral movement events.

YARA Rule

rule PolishBankRAT_fdsvc_xor_loop 
{
	meta:

		author = "Booz Allen Hamilton Dark Labs"
		description = "Finds the custom xor decode loop for <PolishBankRAT_fdsvc>"

	strings:

		$loop = {0F B6 42 FF 48 8D 52 FF 30 42 01 FF CF 75 F1}

	condition:

		(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and $loop
}

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 Finds the custom xor decode loop for <PolishBankRAT_fdsvc> detection rule, tailored for an enterprise environment:

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