← Back to SOC feed Coverage →

Detects LNK files with suspicious Follina/CVE-2022-30190 strings

yara HIGH signature-base
exploitflorian-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-04T11:00:00Z · Confidence: medium

Hunt Hypothesis

This rule detects adversaries exploiting CVE-2022-30190 (Follina) by identifying LNK files containing suspicious Microsoft Office Strings that indicate potential remote code execution via msdt.exe. Proactive hunting for these artifacts in Azure Sentinel is critical because Follina attacks often bypass traditional email security controls and can lead to immediate lateral movement without requiring user interaction beyond opening a file.

YARA Rule

rule SUSP_LNK_Follina_Jun22 {
   meta:
      description = "Detects LNK files with suspicious Follina/CVE-2022-30190 strings"
      author = "Paul Hager"
      date = "2022-06-02"
      reference = "https://twitter.com/gossithedog/status/1531650897905950727"
      score = 75
      id = "d331d584-2ab3-5275-b435-6129c7291417"
   strings:
      $sa1 = "msdt.exe" ascii wide
      $sa2 = "msdt " ascii wide
      $sa3 = "ms-msdt:" ascii wide

      $sb = "IT_BrowseForFile=" ascii wide
   condition:
      filesize < 5KB and
      uint16(0) == 0x004c and uint32(4) == 0x00021401 and
      1 of ($sa*) and $sb
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 4 string patterns in its detection logic.

References

False Positive Guidance

Here are 5 specific false positive scenarios for the Detects LNK files with suspicious Follina/CVE-2022-30190 strings rule, along with recommended filters:

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