suspicious_driver_load_from_temp


Description

Detects a driver load from a temporary directory License: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md.

Query · yara_l

events:
($selection.metadata.product_event_type = "6" and re.regex($selection.target.process.file.full_path, `.*\\Temp\\.*`))

  condition:
    $selection
Raw source suspicious_driver_load_from_temp · YARA-L
Esc
Published by chronicle/detection-rules ↗, licensed under Apache 2.0 ↗. Reproduced here unmodified.
rule suspicious_driver_load_from_temp {
 meta:
    author = "Florian Roth"
    description = "Detects a driver load from a temporary directory  License: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md."
    reference = "https://tdm.socprime.com/tdm/info/r1CbAYgq3QDL"
    version = "0.01"
    created = "2021-03-09"
    product = "windows"
    service = "sysmon"
    mitre = "persistence, t1050"

  events:
($selection.metadata.product_event_type = "6" and re.regex($selection.target.process.file.full_path, `.*\\Temp\\.*`))

  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.