mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
title: Suspicious Certutil Command
|
|
id: e011a729-98a6-4139-b5c4-bf6f6dd8239a
|
|
status: experimental
|
|
description: Detects a suspicious Microsoft certutil execution with sub commands like 'decode' sub command, which is sometimes used to decode malicious code with
|
|
the built-in certutil utility
|
|
author: Florian Roth, juju4, keepwatch
|
|
date: 2019/01/16
|
|
modified: 2021/04/23
|
|
references:
|
|
- https://twitter.com/JohnLaTwC/status/835149808817991680
|
|
- https://blogs.technet.microsoft.com/pki/2006/11/30/basic-crl-checking-with-certutil/
|
|
- https://www.trustedsec.com/2017/07/new-tool-release-nps_payload/
|
|
- https://twitter.com/egre55/status/1087685529016193025
|
|
- https://lolbas-project.github.io/lolbas/Binaries/Certutil/
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
parameters:
|
|
CommandLine|contains:
|
|
- ' -decode '
|
|
- ' -decodehex '
|
|
- ' -urlcache '
|
|
- ' -verifyctl '
|
|
- ' -encode '
|
|
- ' /decode '
|
|
- ' /decodehex '
|
|
- ' /urlcache '
|
|
- ' /verifyctl '
|
|
- ' /encode '
|
|
certutil:
|
|
Image|endswith: '\certutil.exe'
|
|
CommandLine|contains:
|
|
- 'URL'
|
|
- 'ping'
|
|
condition: parameters or certutil
|
|
fields:
|
|
- CommandLine
|
|
- ParentCommandLine
|
|
tags:
|
|
- attack.defense_evasion
|
|
- attack.t1140
|
|
- attack.command_and_control
|
|
- attack.t1105
|
|
- attack.s0160
|
|
- attack.g0007
|
|
- attack.g0010
|
|
- attack.g0045
|
|
- attack.g0049
|
|
- attack.g0075
|
|
- attack.g0096
|
|
falsepositives:
|
|
- False positives depend on scripts and administrative tools used in the monitored environment
|
|
level: high
|