← Back to SOC feed Coverage →

silent banker

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

Hunt Hypothesis

This detection identifies the Silent Banker malware behavior, which involves injecting malicious code into legitimate banking applications to intercept and manipulate financial transactions without triggering standard alerts. A SOC team should proactively hunt for this in Azure Sentinel because its stealthy nature allows adversaries to exfiltrate sensitive credentials and funds while remaining undetected by conventional perimeter defenses.

YARA Rule

rule silent_banker : banker
{
      meta:
		author="malware-lu"
    strings:
        $a = {6A 40 68 00 30 00 00 6A 14 8D 91}
        $b = {8D 4D B0 2B C1 83 C0 27 99 6A 4E 59 F7 F9}
        $c = "UVODFRYSIHLNWPEJXQZAKCBGMT"

    condition:
        $a or $b or $c
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the Silent Banker detection rule, including suggested filters and exclusions tailored for a legitimate enterprise environment:

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