Detection rules › Sigma

RDP shadow session started (native)

Status
experimental
Severity
medium
Log source
product windows, category rdp
Author
mdecrevoisier
Source
github.com/mdecrevoisier/SIGMA-detection-rules

Detects scenarios where an attacker has initiated a RDP shadow session.

MITRE ATT&CK coverage

Rule body yaml

title: RDP shadow session started (native)
description: Detects scenarios where an attacker has initiated a RDP shadow session.
references:
- http://woshub.com/rds-shadow-how-to-connect-to-a-user-session-in-windows-server-2012-r2/
- https://www.elastic.co/guide/en/security/current/potential-remote-desktop-shadowing-activity.html
- https://bitsadm.in/blog/spying-on-users-using-rdp-shadowing
- https://swarm.ptsecurity.com/remote-desktop-services-shadowing/
tags:
- attack.lateral_movement
- attack.t1021.001 # remote services: RDP
- attack.collection
- attack.t1113 # screen capture
- attack.t1125 # video capture
author: mdecrevoisier
status: experimental
logsource:
  product: windows
  category: rdp
detection:
  selection:
    EventID:
      - 20503 # Shadow View Session Started
      - 20504 # Shadow View Session Stopped
      - 20508 # Shadow View Permission Granted
    Channel: Microsoft-Windows-TerminalServices-RemoteConnectionManager/Operational
  condition: selection
falsepositives:
- target host where shadowing is performed
level: medium

Stages and Predicates

Stage 0: condition

selection

Stage 1: selection

selection:
  EventID:
    - 20503
    - 20504
    - 20508
  Channel: Microsoft-Windows-TerminalServices-RemoteConnectionManager/Operational