Detection rules › Sigma

Potentially Suspicious Desktop Background Change Via Registry

Status
test
Severity
medium
Log source
product windows, category registry_set
Author
Nasreddine Bencherchali (Nextron Systems), Stephen Lincoln @slincoln-aiq (AttackIQ)
Source
github.com/SigmaHQ/sigma

Detects registry value settings that would replace the user's desktop background. This is a common technique used by malware to change the desktop background to a ransom note or other image.

MITRE ATT&CK coverage

Event coverage

ProviderEventTitle
SysmonEvent ID 13RegistryEvent (Value Set)

Rule body yaml

title: Potentially Suspicious Desktop Background Change Via Registry
id: 85b88e05-dadc-430b-8a9e-53ff1cd30aae
related:
    - id: 8cbc9475-8d05-4e27-9c32-df960716c701
      type: similar
status: test
description: |
    Detects registry value settings that would replace the user's desktop background.
    This is a common technique used by malware to change the desktop background to a ransom note or other image.
references:
    - https://www.attackiq.com/2023/09/20/emulating-rhysida/
    - https://research.checkpoint.com/2023/the-rhysida-ransomware-activity-analysis-and-ties-to-vice-society/
    - https://www.trendmicro.com/en_us/research/23/h/an-overview-of-the-new-rhysida-ransomware.html
    - https://www.virustotal.com/gui/file/a864282fea5a536510ae86c77ce46f7827687783628e4f2ceb5bf2c41b8cd3c6/behavior
    - https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.WindowsDesktop::Wallpaper
    - https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.ControlPanelDisplay::CPL_Personalization_NoDesktopBackgroundUI
author: Nasreddine Bencherchali (Nextron Systems), Stephen Lincoln @slincoln-aiq (AttackIQ)
date: 2023-12-21
modified: 2025-10-17
tags:
    - attack.persistence
    - attack.impact
    - attack.defense-impairment
    - attack.t1112
    - attack.t1491.001
logsource:
    product: windows
    category: registry_set
detection:
    selection_keys:
        TargetObject|contains:
            - 'Control Panel\Desktop'
            - 'CurrentVersion\Policies\ActiveDesktop'
            - 'CurrentVersion\Policies\System'
    selection_values_1:
        TargetObject|endswith: 'NoChangingWallpaper'
        Details: 'DWORD (0x00000001)' # Prevent changing desktop background
    selection_values_2:
        TargetObject|endswith: '\Wallpaper'
    selection_values_3:
        TargetObject|endswith: '\WallpaperStyle'
        Details: '2' # Stretch
    filter_main_svchost:
        # Note: Excluding GPO changes
        Image|endswith: '\svchost.exe'
    filter_main_empty:
        TargetObject|endswith: '\Control Panel\Desktop\Wallpaper'
        Details: '(Empty)'
    filter_main_explorer:
        # Normally Explorer.exe is the process that changes the desktop background
        Image|endswith: 'C:\Windows\Explorer.EXE'
    filter_optional_ec2launch:
        Image:
            - 'C:\Program Files\Amazon\EC2Launch\EC2Launch.exe'
            - 'C:\Program Files (x86)\Amazon\EC2Launch\EC2Launch.exe'
        TargetObject|endswith: '\Control Panel\Desktop\Wallpaper'
    condition: selection_keys and 1 of selection_values_* and not 1 of filter_main_* and not 1 of filter_optional_*
falsepositives:
    - Administrative scripts that change the desktop background to a company logo or other image.
level: medium

Stages and Predicates

Stage 0: condition

selection_keys and 1 of selection_values_* and not 1 of filter_main_* and not 1 of filter_optional_*

Stage 1: selection_keys

selection_keys:
    TargetObject|contains:
        - 'Control Panel\Desktop'
        - 'CurrentVersion\Policies\ActiveDesktop'
        - 'CurrentVersion\Policies\System'

Stage 2: selection_values_1

selection_values_1:
    TargetObject|endswith: 'NoChangingWallpaper'
    Details: 'DWORD (0x00000001)'

Stage 3: selection_values_2

selection_values_2:
    TargetObject|endswith: '\Wallpaper'

Stage 4: selection_values_3

selection_values_3:
    TargetObject|endswith: '\WallpaperStyle'
    Details: '2'

Stage 5: not filter_main_*

filter_main_svchost:
    Image|endswith: '\svchost.exe'
filter_main_empty:
    TargetObject|endswith: '\Control Panel\Desktop\Wallpaper'
    Details: '(Empty)'
filter_main_explorer:
    Image|endswith: 'C:\Windows\Explorer.EXE'

Stage 6: not filter_optional_ec2launch

filter_optional_ec2launch:
    Image:
        - 'C:\Program Files\Amazon\EC2Launch\EC2Launch.exe'
        - 'C:\Program Files (x86)\Amazon\EC2Launch\EC2Launch.exe'
    TargetObject|endswith: '\Control Panel\Desktop\Wallpaper'

Exclusions

Top-level NOT(...) conjuncts: predicates this rule actively suppresses.

FieldKindExcluded values
Detailseq(Empty)
TargetObjectends_with\Control Panel\Desktop\Wallpaper
Imageends_withC:\Windows\Explorer.EXE
Imageends_with\svchost.exe
ImageeqC:\Program Files (x86)\Amazon\EC2Launch\EC2Launch.exe
ImageeqC:\Program Files\Amazon\EC2Launch\EC2Launch.exe
TargetObjectends_with\Control Panel\Desktop\Wallpaper

Indicators

Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.

FieldKindValues
Detailseq
  • 2 corpus 3 (elastic 2, sigma 1)
  • DWORD (0x00000001) corpus 40 (sigma 36, chronicle 4)
TargetObjectends_with
  • NoChangingWallpaper
  • \Wallpaper
  • \WallpaperStyle
TargetObjectmatch
  • Control Panel\Desktop
  • CurrentVersion\Policies\ActiveDesktop
  • CurrentVersion\Policies\System