f0e05ccb3c
- Added 5 more PowerShell scripts for the rule "file_event_win_powershell_exploit_scripts.yml" - Created new rule for "certoc" lolbin to cover "Download" option as described in the LOLBAS project - Created specific rule for the "IEExec" lolbin to cover "Download" option as described in the LOLBAS Project - Updated some rules to use "OriginalFileName" in addition to the "Image" selection - Updated some rules to increase coverage.
31 lines
804 B
YAML
31 lines
804 B
YAML
title: Suspicious Load DLL via CertOC.exe
|
|
id: 242301bc-f92f-4476-8718-78004a6efd9f
|
|
description: Detects when a user installs certificates by using CertOC.exe to loads the target DLL file.
|
|
status: experimental
|
|
author: Austin Songer @austinsonger
|
|
date: 2021/10/23
|
|
modified: 2022/05/16
|
|
references:
|
|
- https://twitter.com/sblmsrsn/status/1445758411803480072?s=20
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection_img:
|
|
- Image|endswith: '\certoc.exe'
|
|
- OriginalFileName: 'CertOC.exe'
|
|
selection_cli:
|
|
CommandLine|contains|all:
|
|
- '-LoadDLL'
|
|
- '.dll'
|
|
condition: all of selection*
|
|
fields:
|
|
- CommandLine
|
|
- ParentCommandLine
|
|
tags:
|
|
- attack.defense_evasion
|
|
- attack.t1218
|
|
falsepositives:
|
|
- Unknown
|
|
level: medium
|