This detection identifies potential Banbra malware activity by leveraging a specific YARA signature to catch known indicators of compromise within the Azure Sentinel environment. Proactively hunting for this behavior is essential because early identification of Banbra variants allows the SOC team to mitigate low-severity threats before they escalate into broader lateral movement or data exfiltration incidents.
rule banbra : banker
{
meta:
author="malware-lu"
strings:
$a = "senha" fullword nocase
$b = "cartao" fullword nocase
$c = "caixa"
$d = "login" fullword nocase
$e = ".com.br"
condition:
#a > 3 and #b > 3 and #c > 3 and #d > 3 and #e > 3
}
This YARA rule can be deployed in the following contexts:
This rule contains 5 string patterns in its detection logic.
Here are 4 specific false positive scenarios for the banbra detection rule in an enterprise environment, including suggested filters and exclusions:
Antivirus Engine Scanning of Compressed Archives
.zip or .7z files containing software installers. The Banbra YARA rule often flags the embedded compression libraries within these archives as suspicious due to specific byte sequences resembling malicious packing techniques used by the malware family.SYSTEM, CrowdStrikeService) when the file extension is .zip or .7z. Alternatively, add a filter to ignore alerts where the parent process is MsMpEng.exe or FalconSensorService.exe.Scheduled Software Deployment via SCCM/Intune
ccmexec.exe (SCCM) or IntuneManagementExtension.exe processes during defined maintenance windows (e.g., 02:00–04:00 UTC). Filter based on the file path containing \Microsoft Endpoint Configuration Manager\ or \IntuneMgmtExt.Internal Development Build Pipelines