Google Chronicle unknown experimental yara-l

smbexecpy_service_installation

Detects the use of smbexec.py tool by detecting a specific service installation License: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md.

View Source

Detection Logic

rule smbexecpy_service_installation {
 meta:
    author = "Omer Faruk Celik"
    description = "Detects the use of smbexec.py tool by detecting a specific service installation  License: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md."
    reference = "https://tdm.socprime.com/tdm/info/9pBTcmTTsThC"
    version = "0.01"
    created = "2018/03/20"
    product = "windows"
    mitre = "lateral_movement, execution, t1077, t1035"

  events:
($service_installation.metadata.product_event_type = "7045" and $service_installation.target.process.command_line = "BTOBTO" and re.regex($service_installation.target.process.command_line, `.*\\execute\.bat`))

  condition:
    $service_installation
}

Field Validations

Loading…

Comments (0)

Loading comments...