Sigma Rule Library

Run PowerShell Script from ADS

Detects PowerShell script execution from Alternate Data Stream (ADS)

View on GitHubOpen raw file

Detection logic

selection

ParentImage|endswith:
  - \powershell.exe
  - \pwsh.exe
Image|endswith:
  - \powershell.exe
  - \pwsh.exe
CommandLine|contains|all:
  - Get-Content
  - -Stream

Condition

selection

Raw YAML

title: Run PowerShell Script from ADS
id: 45a594aa-1fbd-4972-a809-ff5a99dd81b8
status: test
description: Detects PowerShell script execution from Alternate Data Stream (ADS)
references:
    - https://github.com/p0shkatz/Get-ADS/blob/1c3a3562e713c254edce1995a7d9879c687c7473/Get-ADS.ps1
author: Sergey Soldatov, Kaspersky Lab, oscd.community
date: 2019-10-30
modified: 2022-07-14
tags:
    - attack.stealth
    - attack.t1564.004
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        ParentImage|endswith:
            - '\powershell.exe'
            - '\pwsh.exe'
        Image|endswith:
            - '\powershell.exe'
            - '\pwsh.exe'
        CommandLine|contains|all:
            - 'Get-Content'
            - '-Stream'
    condition: selection
falsepositives:
    - Unknown
level: high

False positives

  • Unknown

References

Similar rules