PowerShell Suspicious Payload Encoded and Compressed

Last updated a month ago on 2026-02-09
Created 4 years ago on 2021-10-19

About

Identifies PowerShell script block content that combines Base64 decoding with .NET decompression (Deflate/GZip). Attackers use this pattern to deobfuscate and reconstruct payloads in memory to evade defenses.
Tags
Domain: EndpointOS: WindowsUse Case: Threat DetectionTactic: Defense EvasionData Source: PowerShell LogsLanguage: kuery
Severity
high
Risk Score
73
MITRE ATT&CK™

Defense Evasion (TA0005)(external, opens in a new tab or window)

Execution (TA0002)(external, opens in a new tab or window)

False Positive Examples
Legitimate PowerShell Scripts which makes use of compression and encoding.
License
Elastic License v2(external, opens in a new tab or window)

Definition

Rule Type
Query (Kibana Query Language)
Integration Pack
Prebuilt Security Detection Rules
Index Patterns
winlogbeat-*logs-windows.powershell*
Related Integrations

windows(external, opens in a new tab or window)

Query
text code block:
event.category:process and host.os.type:windows and powershell.file.script_block_entropy_bits >= 4.5 and powershell.file.script_block_text : ( ( "System.IO.Compression.DeflateStream" or "System.IO.Compression.GzipStream" or "IO.Compression.DeflateStream" or "IO.Compression.GzipStream" ) and FromBase64String ) and not user.id : "S-1-5-18"

Install detection rules in Elastic Security

Detect PowerShell Suspicious Payload Encoded and Compressed in the Elastic Security detection engine by installing this rule into your Elastic Stack.

To setup this rule, check out the installation guide for Prebuilt Security Detection Rules(external, opens in a new tab or window).