-
-
Save rxwx/9e57a2cda4cd8df990b26c6900cb0a5c to your computer and use it in GitHub Desktop.
CVE_2021_40444 Yara rules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rule office_exploit_CVE_2021_40444 { | |
meta: | |
description = "Detects Microsoft Office exploit CVE-2021-40444" | |
author = "Rich Warren" | |
date = "2021-09-08" | |
strings: | |
$header = "<?xml" nocase | |
$ = "!x-usc:" nocase | |
$ = "mhtml:" nocase | |
condition: | |
$header at 0 and all of them | |
} | |
rule cab_exploit_CVE_2021_40444 { | |
meta: | |
description = "Detects malicious cab files associated with CVE-2021-40444" | |
author = "Rich Warren" | |
date = "2021-09-08" | |
strings: | |
$ = "../" nocase | |
$ = ".inf" nocase | |
condition: | |
uint32be(0) == 0x4D534346 and all of them | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment