← Back to SOC feed Coverage →

Detects .NET based Katz stealer loader

yara CRITICAL signature-base
florian-rothinfostealernet_katz
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 signature-base →
Retrieved: 2026-08-06T11:00:00Z · Confidence: medium

Hunt Hypothesis

This rule detects the execution of a .NET-based Katz stealer loader, indicating an adversary’s initial foothold aimed at harvesting sensitive credentials and data from compromised endpoints. A proactive hunt is essential in Azure Sentinel to identify early-stage infections before the stealer exfiltrates critical information, thereby preventing lateral movement and broader network compromise.

YARA Rule

rule MAL_NET_Katz_Stealer_Loader_May25 {
   meta:
      description = "Detects .NET based Katz stealer loader"
      author = "Jonathan Peters (cod3nym)"
      date = "2025-05-21"
      reference = "Internal Research"
      hash = "0df13fd42fb4a4374981474ea87895a3830eddcc7f3bd494e76acd604c4004f7"
      score = 80
      id = "c3d33818-66a1-51d9-9bcd-d8d255f96881"
   strings:
      $x = "ExecutarMetodoVAI" ascii

      $s1 = "VirtualMachineDetector" ascii
      $s2 = "Wow64SetThreadContext_API" ascii
      $s3 = "nomedoarquivo" ascii
      $s4 = { 65 78 74 65 6E C3 A7 61 6F 00 }
      $s5 = "payloadBuffer" ascii
      $s6 = "caminhovbs" ascii
   condition:
      3 of ($s*) or $x
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 7 string patterns in its detection logic.

References

False Positive Guidance

Here are 5 specific false positive scenarios for the Detects .NET based Katz stealer loader rule, including suggested filters and exclusions:

Original source: https://github.com/Neo23x0/signature-base/blob/main/yara/mal_katz_stealer.yar