Skip to content

Commit

Permalink
Create expl_outlook_cve_2024_21413.yar
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo23x0 committed Feb 17, 2024
1 parent cecca0f commit 995df52
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions yara/expl_outlook_cve_2024_21413.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

rule EXPL_CVE_2024_21413_Microsoft_Outlook_RCE_Feb24 {
meta:
description = "Detects emails that contain signs of a method to exploit CVE-2024-21413 in Microsoft Outlook"
author = "Florian Roth"
reference = "https://github.com/xaitax/CVE-2024-21413-Microsoft-Outlook-Remote-Code-Execution-Vulnerability/"
date = "2024-02-17"
score = 75
strings:
$a1 = "Subject: "
$a2 = "Received: "
$xr1 = /href[\s=3D"']{2,20}file:\/\/\/\\\\[^"']{6,200}!/
condition:
filesize < 800KB
and all of ($a*)
and 1 of ($xr*)
}

0 comments on commit 995df52

Please sign in to comment.