forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update metadata and add process creation version
- Loading branch information
Showing
2 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
rules/windows/process_creation/proc_creation_win_powershell_export_certificate.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
title: Certificate Exported Via PowerShell | ||
id: 9e716b33-63b2-46da-86a4-bd3c3b9b5dfb | ||
related: | ||
- id: aa7a3fce-bef5-4311-9cc1-5f04bb8c308c | ||
type: similar | ||
status: experimental | ||
description: Detects calls to cmdlets that are used to export certificates from the local certificate store. Threat actors were seen abusing this to steal private keys from compromised machines. | ||
references: | ||
- https://us-cert.cisa.gov/ncas/analysis-reports/ar21-112a | ||
- https://docs.microsoft.com/en-us/powershell/module/pki/export-pfxcertificate | ||
- https://www.splunk.com/en_us/blog/security/breaking-the-chain-defending-against-certificate-services-abuse.html | ||
author: Nasreddine Bencherchali (Nextron Systems) | ||
date: 2023/05/18 | ||
logsource: | ||
product: windows | ||
category: process_creation | ||
detection: | ||
selection: | ||
CommandLine|contains: | ||
- 'Export-PfxCertificate ' | ||
- 'Export-Certificate ' | ||
condition: selection | ||
falsepositives: | ||
- Legitimate certificate exports by administrators. Additional filters might be required. | ||
level: medium |