Detectionmediumtest

PUA - Potential PE Metadata Tamper Using Rcedit

Detects the use of rcedit to potentially alter executable PE metadata properties, which could conceal efforts to rename system utilities for defense evasion.

Convert In Phoenix Studio

Open this Sigma rule in the converter with the YAML preloaded and ready for backend selection.

Launch
Micah BabinskiCreated Sun Dec 11Updated Sun Mar 050c92f2e6-f08f-4b73-9216-ecb0ca634689windows
Log Source
WindowsProcess Creation
ProductWindows← raw: windows
CategoryProcess Creation← raw: process_creation

Events generated when a new process is spawned on the system. Covers command-line arguments, parent/child relationships, and process metadata.

Detection Logic
Detection Logic3 selectors
detection:
    selection_img:
        - Image|endswith:
              - '\rcedit-x64.exe'
              - '\rcedit-x86.exe'
        - Description: 'Edit resources of exe'
        - Product: 'rcedit'
    selection_flags:
        CommandLine|contains: '--set-' # Covers multiple edit commands such as "--set-resource-string" or "--set-version-string"
    selection_attributes:
        CommandLine|contains:
            - 'OriginalFileName'
            - 'CompanyName'
            - 'FileDescription'
            - 'ProductName'
            - 'ProductVersion'
            - 'LegalCopyright'
    condition: all of selection_*
False Positives

Legitimate use of the tool by administrators or users to update metadata of a binary

Rule Metadata
Rule ID
0c92f2e6-f08f-4b73-9216-ecb0ca634689
Status
test
Level
medium
Type
Detection
Created
Sun Dec 11
Modified
Sun Mar 05
Path
rules/windows/process_creation/proc_creation_win_pua_rcedit_execution.yml
Raw Tags
attack.defense-evasionattack.t1036.003attack.t1036attack.t1027.005attack.t1027
View on GitHub