Name:Windows UAC Bypass Suspicious Escalation Behavior id:00d050d3-a5b4-4565-a6a5-a31f69681dc3 version:13 date:2026-04-15 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" )
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' tags: 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' security_domain:endpoint