exploit_for_cve20151641


Description

Detects Winword starting uncommon sub process MicroScMgmt.exe as used in exploits for CVE-2015-1641 License: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md.

Query · yara_l

events:
(re.regex($selection.principal.process.file.full_path, `.*\\WINWORD\.EXE`) and re.regex($selection.target.process.file.full_path, `.*\\MicroScMgmt\.exe `) and ($selection.metadata.product_event_type = "4688" or $selection.metadata.product_event_type = "1"))

  condition:
    $selection
Raw source exploit_for_cve20151641 · YARA-L
Esc
Published by chronicle/detection-rules ↗, licensed under Apache 2.0 ↗. Reproduced here unmodified.
rule exploit_for_cve20151641 {
 meta:
    author = "Florian Roth"
    description = "Detects Winword starting uncommon sub process MicroScMgmt.exe as used in exploits for CVE-2015-1641  License: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md."
    reference = "https://tdm.socprime.com/tdm/info/2vSXtuDhHSKF"
    version = "0.01"
    created = "2018/02/22"
    category = "process_creation"
    product = "windows"
    mitre = "defense_evasion, t1036"

  events:
(re.regex($selection.principal.process.file.full_path, `.*\\WINWORD\.EXE`) and re.regex($selection.target.process.file.full_path, `.*\\MicroScMgmt\.exe `) and ($selection.metadata.product_event_type = "4688" or $selection.metadata.product_event_type = "1"))

  condition:
    $selection
}

Detection rules belong to the projects that publish them and remain under their own licenses. This site indexes and links to them; it claims no rights in them.