mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
7602309138
* Converted (to generic sigma) rules * Converter outputs by default with indentation 4
48 lines
1.6 KiB
YAML
48 lines
1.6 KiB
YAML
title: Suspicious Certutil Command
|
|
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
|
|
modified: 2019/01/22
|
|
references:
|
|
- https://twitter.com/JohnLaTwC/status/835149808817991680
|
|
- https://twitter.com/subTee/status/888102593838362624
|
|
- https://twitter.com/subTee/status/888071631528235010
|
|
- 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:
|
|
selection:
|
|
CommandLine:
|
|
- '* -decode *'
|
|
- '* /decode *'
|
|
- '* -decodehex *'
|
|
- '* /decodehex *'
|
|
- '* -urlcache *'
|
|
- '* /urlcache *'
|
|
- '* -verifyctl *'
|
|
- '* /verifyctl *'
|
|
- '* -encode *'
|
|
- '* /encode *'
|
|
- '*certutil* -URL*'
|
|
- '*certutil* /URL*'
|
|
- '*certutil* -ping*'
|
|
- '*certutil* /ping*'
|
|
condition: selection
|
|
fields:
|
|
- CommandLine
|
|
- ParentCommandLine
|
|
tags:
|
|
- attack.defense_evasion
|
|
- attack.t1140
|
|
- attack.t1105
|
|
- attack.s0189
|
|
- attack.g0007
|
|
falsepositives:
|
|
- False positives depend on scripts and administrative tools used in the monitored environment
|
|
level: high
|