← Back to SOC feed Coverage →

Detects link files, archives and binaries that contain keywords related to AppDomain hijacking/injection a technique use

yara HIGH signature-base
T1574
florian-roth
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-07T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt hypothesis targets adversaries leveraging AppDomain hijacking (MITRE T1574) to inject malicious code into legitimate processes via link files, archives, and binaries containing specific injection keywords. Proactively hunting for these artifacts in Azure Sentinel is critical because this technique allows malware to sideload payloads that often evade traditional signature-based defenses by masquerading as trusted components.

YARA Rule

rule SUSP_AppDomainInjection_Keyword_May26 {
   meta:
      description = "Detects link files, archives and binaries that contain keywords related to AppDomain hijacking/injection a technique used by malware to sideload payloads."
      author = "Jonathan Peters (Nextron Systems)"
      date = "2026-05-27"
      reference = "https://attack.mitre.org/techniques/T1574/014/"
      hash = "eee657ffdb2af8ed6412221e7d5fbf4f5742f2ac2c88f43f12db46af0697de71"
      score = 70
   strings:
      $x1 = "AppDomainInjection" ascii wide fullword
      $x2 = "AppDomainHijack" ascii wide fullword
   condition:
      (
         uint16(0) == 0x5a4d // PE
         or uint16(0) == 0x4b50 // ZIP
         or uint32(0x8000) == 0x30444301 // ISO
         or uint16(0) == 0x004c and uint32(4) == 0x00021401 // LNK
      )
      and 1 of ($x*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

MITRE ATT&CK Context

References

False Positive Guidance

Here are 3-5 specific false positive scenarios for the AppDomain Hijacking/Injection detection rule, along with recommended filters and exclusions:

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