Suspicious Process Discovery With Get-Process

Get the processes that are running on the local computer.

Sigma rule (View on GitHub)

 1title: Suspicious Process Discovery With Get-Process
 2id: af4c87ce-bdda-4215-b998-15220772e993
 3status: test
 4description: Get the processes that are running on the local computer.
 5references:
 6    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1057/T1057.md#atomic-test-3---process-discovery---get-process
 7    - https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-process?view=powershell-7
 8author: frack113
 9date: 2022/03/17
10tags:
11    - attack.discovery
12    - attack.t1057
13logsource:
14    product: windows
15    category: ps_script
16    definition: 'Requirements: Script Block Logging must be enabled'
17detection:
18    selection:
19        ScriptBlockText|contains: Get-Process
20    condition: selection
21falsepositives:
22    - Legitimate PowerShell scripts
23level: low

References

Related rules

to-top