Detection rules › Splunk

Windows UAC Bypass Suspicious Escalation Behavior

Status
production
Severity
medium
Group by
IntegrityLevel, command_line, computer_name, dest, event_action, join_guid_1, join_guid_2, original_file_name, parent_command_line, parent_process_guid, parent_process_id, parent_process_name, process_guid, process_hash, process_id, process_name, user, user_id, vendor_product
Author
Steven Dick
Source
github.com/splunk/security_content

The following analytic detects when a process spawns an executable known for User Account Control (UAC) bypass exploitation and subsequently monitors for any child processes with a higher integrity level than the original process. This detection leverages Sysmon EventID 1 data, focusing on process integrity levels and known UAC bypass executables. This activity is significant as it may indicate an attacker has successfully used a UAC bypass exploit to escalate privileges. If confirmed malicious, the attacker could gain elevated privileges, potentially leading to further system compromise and persistent access.

MITRE ATT&CK coverage

Event coverage

ProviderEventTitle
SysmonEvent ID 1Process creation

Rule body splunk

name: Windows UAC Bypass Suspicious Escalation Behavior
id: 00d050d3-a5b4-4565-a6a5-a31f69681dc3
version: 14
creation_date: '2024-01-10'
modification_date: '2026-05-13'
author: Steven Dick
status: production
type: TTP
description: |-
    The following analytic detects when a process spawns an executable known for User Account Control (UAC) bypass exploitation and subsequently monitors for any child processes with a higher integrity level than the original process.
    This detection leverages Sysmon EventID 1 data, focusing on process integrity levels and known UAC bypass executables.
    This activity is significant as it may indicate an attacker has successfully used a UAC bypass exploit to escalate privileges.
    If confirmed malicious, the attacker could gain elevated privileges, potentially leading to further system compromise and persistent access.
data_source:
    - Sysmon EventID 1 AND Sysmon EventID 1
search: |-
    | tstats `security_content_summariesonly`
      count max(_time) as lastTime
    
    FROM datamodel=Endpoint.Processes WHERE
    
    Processes.process_integrity_level IN (
        "low",
        "medium"
    )
    
    BY Processes.action Processes.dest Processes.original_file_name
       Processes.parent_process Processes.parent_process_exec
       Processes.parent_process_guid Processes.parent_process_id
       Processes.parent_process_name Processes.parent_process_path
       Processes.process Processes.process_exec Processes.process_guid
       Processes.process_hash Processes.process_id
       Processes.process_integrity_level Processes.process_name
       Processes.process_path Processes.user
       Processes.user_id Processes.vendor_product
    
    | `drop_dm_object_name(Processes)`
    
    | eval original_integrity_level = CASE(
                match(process_integrity_level,"low"),1,
                match(process_integrity_level,"medium"),2,
                match(process_integrity_level,"high"),3,
                match(process_integrity_level,"system"),4,
                true(),0
            )
    | rename process_guid as join_guid_1,
             process* as parent_process*
    
    | join max=0 dest join_guid_1 [
        | tstats `security_content_summariesonly`
          count min(_time) as firstTime
        FROM datamodel=Endpoint.Processes WHERE
    
        Processes.process_integrity_level IN (
            "high",
            "system"
        )
        Processes.process_name IN (`uacbypass_process_name`)
    
        BY Processes.dest Processes.parent_process_guid
           Processes.process_name Processes.process_guid
    
        | `drop_dm_object_name(Processes)`
        | rename parent_process_guid as join_guid_1,
                 process_guid as join_guid_2,
                 process_name as uac_process_name
    ]
    
    | join max=0 dest join_guid_2 [
        | tstats `security_content_summariesonly`
          count min(_time) as firstTime
        FROM datamodel=Endpoint.Processes WHERE
    
        Processes.parent_process_name IN (`uacbypass_process_name`)
        Processes.process_integrity_level IN (
            "high",
            "system"
        )
        BY Processes.dest Processes.parent_process_guid
           Processes.process_name Processes.process
           Processes.process_guid Processes.process_path
           Processes.process_integrity_level Processes.process_current_directory
    
        | `drop_dm_object_name(Processes)`
    
        | rename parent_process_guid as join_guid_2
    
        | eval elevated_integrity_level = CASE(
            match(process_integrity_level,"low"),1,
            match(process_integrity_level,"medium"),2,
            match(process_integrity_level,"high"),3,
            match(process_integrity_level,"system"),4,
            true(),0
        )
    ]
    | where elevated_integrity_level > original_integrity_level
    | `security_content_ctime(firstTime)`
    | `security_content_ctime(lastTime)`
    | `windows_uac_bypass_suspicious_escalation_behavior_filter`
how_to_implement: |-
    Target environment must ingest sysmon data, specifically Event ID 1 with process integrity level data.
known_false_positives: |-
    Including Werfault.exe may cause some unintended false positives related to normal application faulting, but is used in a number of UAC bypass techniques.
references:
    - https://attack.mitre.org/techniques/T1548/002/
    - https://atomicredteam.io/defense-evasion/T1548.002/
    - https://hadess.io/user-account-control-uncontrol-mastering-the-art-of-bypassing-windows-uac/
    - https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/
drilldown_searches:
    - name: View the detection results for - "$dest$" and "$user$"
      search: '%original_detection_search% | search  dest = "$dest$" user = "$user$"'
      earliest_offset: $info_min_time$
      latest_offset: $info_max_time$
    - name: View risk events for the last 7 days for - "$dest$" and "$user$"
      search: '| from datamodel Risk.All_Risk | search normalized_risk_object IN ("$dest$", "$user$") | stats count min(_time) as firstTime max(_time) as lastTime values(search_name) as "Search Name" values(risk_message) as "Risk Message" values(analyticstories) as "Analytic Stories" values(annotations._all) as "Annotations" values(annotations.mitre_attack.mitre_tactic) as "ATT&CK Tactics" by normalized_risk_object | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`'
      earliest_offset: 7d
      latest_offset: "0"
finding:
    title: A UAC bypass behavior was detected by process $parent_process_name$ on host $dest$ by $user$.
    entity:
        field: user
        type: user
        score: 50
intermediate_findings:
    entities:
        - field: dest
          type: system
          score: 50
          message: A UAC bypass behavior was detected by process $parent_process_name$ on host $dest$ by $user$.
threat_objects:
    - field: parent_process_name
      type: parent_process_name
    - field: process_name
      type: process_name
    - field: process_name
      type: process_name
analytic_story:
    - Living Off The Land
    - Compromised Windows Host
    - Windows Defense Evasion Tactics
asset_type: Endpoint
mitre_attack_id:
    - T1548.002
product:
    - Splunk Enterprise
    - Splunk Enterprise Security
    - Splunk Cloud
category: endpoint
security_domain: endpoint
tests:
    - name: True Positive Test
      attack_data:
        - data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1548.002/uac_behavior/uac_behavior_sysmon.log
          source: XmlWinEventLog:Microsoft-Windows-Sysmon/Operational
          sourcetype: XmlWinEventLog
      test_type: unit

Stages and Predicates

Stage 1: tstats

| tstats `security_content_summariesonly`
  count max(_time) as lastTime

FROM datamodel=Endpoint.Processes WHERE

Processes.process_integrity_level IN (
    "low",
    "medium"
)

BY Processes.action Processes.dest Processes.original_file_name
   Processes.parent_process Processes.parent_process_exec
   Processes.parent_process_guid Processes.parent_process_id
   Processes.parent_process_name Processes.parent_process_path
   Processes.process Processes.process_exec Processes.process_guid
   Processes.process_hash Processes.process_id
   Processes.process_integrity_level Processes.process_name
   Processes.process_path Processes.user
   Processes.user_id Processes.vendor_product

Stage 2: search

| `drop_dm_object_name(Processes)`

Stage 3: eval

| eval original_integrity_level = CASE(
            match(process_integrity_level,"low"),1,
            match(process_integrity_level,"medium"),2,
            match(process_integrity_level,"high"),3,
            match(process_integrity_level,"system"),4,
            true(),0
        )
original_integrity_level =
ifmatch(process_integrity_level, "low")1
elifmatch(process_integrity_level, "medium")2
elifmatch(process_integrity_level, "high")3
elifmatch(process_integrity_level, "system")4
else0

Stage 4: rename

| rename process_guid as join_guid_1,
         process* as parent_process*

Stage 5: join

| join max=0 dest join_guid_1 [
    | tstats `security_content_summariesonly`
      count min(_time) as firstTime
    FROM datamodel=Endpoint.Processes WHERE

    Processes.process_integrity_level IN (
        "high",
        "system"
    )
    Processes.process_name IN (`uacbypass_process_name`)

    BY Processes.dest Processes.parent_process_guid
       Processes.process_name Processes.process_guid

    | `drop_dm_object_name(Processes)`
    | rename parent_process_guid as join_guid_1,
             process_guid as join_guid_2,
             process_name as uac_process_name
]

Stage 6: join

| join max=0 dest join_guid_2 [
    | tstats `security_content_summariesonly`
      count min(_time) as firstTime
    FROM datamodel=Endpoint.Processes WHERE

    Processes.parent_process_name IN (`uacbypass_process_name`)
    Processes.process_integrity_level IN (
        "high",
        "system"
    )
    BY Processes.dest Processes.parent_process_guid
       Processes.process_name Processes.process
       Processes.process_guid Processes.process_path
       Processes.process_integrity_level Processes.process_current_directory

    | `drop_dm_object_name(Processes)`

    | rename parent_process_guid as join_guid_2

    | eval elevated_integrity_level = CASE(
        match(process_integrity_level,"low"),1,
        match(process_integrity_level,"medium"),2,
        match(process_integrity_level,"high"),3,
        match(process_integrity_level,"system"),4,
        true(),0
    )
]

Stage 7: where

| where elevated_integrity_level > original_integrity_level

Stage 8: search

| `security_content_ctime(firstTime)`

Stage 9: search

| `security_content_ctime(lastTime)`

Stage 10: search

| `windows_uac_bypass_suspicious_escalation_behavior_filter`

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
Processes.parent_process_namein
  • "BitlockerWizardElev.exe"
  • "CompMgmtLauncher.exe"
  • "EventVwr.exe"
  • "GWXUXWorker.exe"
  • "SystemPropertiesAdvanced.exe"
  • "TpmInit.exe"
  • "WSReset.exe"
  • "WerFault.exe" corpus 2 (elastic 2)
  • "cliconfg.exe"
  • "clipup.exe"
  • "cmstp.exe" corpus 2 (elastic 2)
  • "consent.exe"
  • "control.exe"
  • "credwiz.exe"
  • "dccw.exe"
  • "dismhost.exe"
  • "fodhelper.exe"
  • "inetmgr.exe"
  • "iscsicli.exe"
  • "mcx2prov.exe"
  • "migwiz.exe"
  • "mmc.exe" corpus 5 (elastic 3, splunk 1, kusto 1)
  • "msconfig.exe"
  • "oobe.exe"
  • "osk.exe"
  • "pkgmgr.exe"
  • "recdisc.exe"
  • "rstrui.exe"
  • "sdclt.exe"
  • "setupsqm.exe"
  • "slui.exe" corpus 2 (elastic 1, splunk 1)
  • "sysprep.exe"
  • "taskhost.exe"
  • "tzsync.exe"
  • "w32tm.exe"
  • "wusa.exe"
Processes.process_integrity_levelin
  • "high" corpus 21 (sigma 17, kusto 3, splunk 1)
  • "low"
  • "medium" corpus 3 (sigma 3)
  • "system" corpus 29 (sigma 22, splunk 4, elastic 3)
Processes.process_namein
  • "BitlockerWizardElev.exe"
  • "CompMgmtLauncher.exe"
  • "EventVwr.exe"
  • "GWXUXWorker.exe"
  • "SystemPropertiesAdvanced.exe"
  • "TpmInit.exe"
  • "WSReset.exe"
  • "WerFault.exe" corpus 2 (elastic 2)
  • "cliconfg.exe"
  • "clipup.exe" corpus 2 (elastic 2)
  • "cmstp.exe" corpus 10 (elastic 10)
  • "consent.exe" corpus 2 (elastic 2)
  • "control.exe" corpus 8 (elastic 6, splunk 2)
  • "credwiz.exe"
  • "dccw.exe"
  • "dismhost.exe"
  • "fodhelper.exe"
  • "inetmgr.exe"
  • "iscsicli.exe"
  • "mcx2prov.exe"
  • "migwiz.exe"
  • "mmc.exe" corpus 7 (splunk 5, elastic 2)
  • "msconfig.exe"
  • "oobe.exe"
  • "osk.exe"
  • "pkgmgr.exe" corpus 2 (elastic 1, splunk 1)
  • "recdisc.exe"
  • "rstrui.exe"
  • "sdclt.exe"
  • "setupsqm.exe"
  • "slui.exe" corpus 2 (elastic 1, splunk 1)
  • "sysprep.exe"
  • "taskhost.exe" corpus 2 (elastic 1, splunk 1)
  • "tzsync.exe"
  • "w32tm.exe" corpus 3 (elastic 2, splunk 1)
  • "wusa.exe"