← Back to SOC feed Coverage →

Detects RTF files

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

Hunt Hypothesis

RTF files may be used to deliver malicious payloads through embedded macros, making them a potential vector for initial compromise. SOC teams should proactively hunt for RTF file activity in Azure Sentinel to identify and mitigate potential phishing or malware delivery attempts.

YARA Rule

rule RTFFILE {
   meta:
      description = "Detects RTF files"
   condition:
      uint32be(0) == 0x7B5C7274
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/maldocs/Maldoc_CVE_2017_8759.yar