SigmaHQ/rules/windows/process_creation/win_susp_copy_system32.yml

29 lines
1.1 KiB
YAML
Raw Normal View History

2020-07-03 08:56:26 +00:00
title: Suspicious Copy From or To System32
2020-07-03 07:45:58 +00:00
id: fff9d2b7-e11c-4a69-93d3-40ef66189767
status: experimental
description: Detects a suspicious copy command that copies a system program from System32 to another directory on disk - sometimes used to use LOLBINs like certutil or desktopimgdownldr to a different location with a different name
2020-07-03 08:56:26 +00:00
author: Florian Roth, Markus Neis
2020-07-03 07:45:58 +00:00
date: 2020/07/03
modified: 2020/09/05
2020-07-03 07:45:58 +00:00
references:
2020-07-03 08:56:26 +00:00
- https://www.hybrid-analysis.com/sample/8da5b75b6380a41eee3a399c43dfe0d99eeefaa1fd21027a07b1ecaa4cd96fdd?environmentId=120
2020-07-03 07:45:58 +00:00
logsource:
category: process_creation
product: windows
tags:
- attack.defense_evasion
- attack.t1036.003
2020-07-03 07:45:58 +00:00
detection:
selection:
2020-07-03 09:03:45 +00:00
CommandLine|contains:
- ' /c copy *\System32\'
- 'xcopy*\System32\'
2020-07-03 07:54:10 +00:00
condition: selection
2020-07-03 07:45:58 +00:00
fields:
- CommandLine
- ParentCommandLine
falsepositives:
- False positives depend on scripts and administrative tools used in the monitored environment
2020-07-03 08:56:26 +00:00
- Admin scripts like https://www.itexperience.net/sccm-batch-files-and-32-bits-processes-on-64-bits-os/
level: medium