Potential CVE-2025-33053 Exploitation

Identifies a suspicious Diagnostics Utility for Internet Explorer child process. This may indicate the successful exploitation of the vulnerability CVE-2025-33053.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2025/06/11"
  3integration = ["endpoint", "windows", "m365_defender", "sentinel_one_cloud_funnel"]
  4maturity = "production"
  5updated_date = "2026/03/24"
  6
  7[rule]
  8author = ["Elastic"]
  9description = """
 10Identifies a suspicious Diagnostics Utility for Internet Explorer child process. This may indicate the successful exploitation of the vulnerability CVE-2025-33053.
 11"""
 12from = "now-9m"
 13index = [
 14    "logs-endpoint.events.process-*",
 15    "winlogbeat-*",
 16    "logs-windows.sysmon_operational-*",
 17    "endgame-*",
 18    "logs-m365_defender.event-*",
 19    "logs-sentinel_one_cloud_funnel.*",
 20]
 21language = "eql"
 22license = "Elastic License v2"
 23name = "Potential CVE-2025-33053 Exploitation"
 24note = """## Triage and analysis
 25
 26### Investigating Potential CVE-2025-33053 Exploitation
 27
 28### Possible investigation steps
 29
 30- Review the process details to confirm the suspicious child process was indeed started by iediagcmd.exe.
 31- Check any URL file type creation before the alert and review the source of those files.
 32- Investigate the process tree and make sure all descendant processes are terminated.
 33- Examine the network activity associated with the suspicious process to detect any unauthorized data exfiltration or communication with known malicious IP addresses.
 34- Assess the system for any additional indicators of compromise, such as unexpected changes in system files or registry keys, which might suggest a broader attack.
 35
 36### False positive analysis
 37
 38- This behavior is very rare and should be highly suspicious.
 39
 40### Response and remediation
 41
 42- Isolate the affected system from the network to prevent further spread of the potential threat and to contain any malicious activity.
 43- Terminate the suspicious child process identified in the alert.
 44- Conduct a thorough scan of the affected system using updated antivirus or endpoint detection and response (EDR) tools to identify and remove any additional malicious files or processes.
 45- Escalate the incident to the security operations center (SOC) or incident response team for further investigation and to determine if the threat is part of a larger attack campaign.
 46- Implement additional monitoring and alerting for similar suspicious activities involving explorer.exe to enhance detection capabilities and prevent recurrence.
 47- Review and update endpoint security policies to restrict the execution of potentially malicious URL files."""
 48references = [
 49     "https://research.checkpoint.com/2025/stealth-falcon-zero-day/", 
 50     "https://msrc.microsoft.com/update-guide/en-US/vulnerability/CVE-2025-33053",
 51]
 52risk_score = 73
 53rule_id = "5e23495f-09e2-4484-8235-bdb150d698c9"
 54severity = "high"
 55tags = [
 56    "Domain: Endpoint",
 57    "OS: Windows",
 58    "Use Case: Threat Detection",
 59    "Tactic: Initial Access",
 60    "Tactic: Defense Evasion",
 61    "Data Source: Elastic Endgame",
 62    "Data Source: Elastic Defend",
 63    "Data Source: Sysmon",
 64    "Data Source: Microsoft Defender for Endpoint",
 65    "Data Source: SentinelOne",
 66    "Resources: Investigation Guide",
 67]
 68timestamp_override = "event.ingested"
 69type = "eql"
 70
 71query = '''
 72process where host.os.type == "windows" and event.type == "start" and
 73  process.parent.executable : "C:\\Program Files\\Internet Explorer\\iediagcmd.exe" and
 74  process.name : ("route.exe", "netsh.exe", "ipconfig.exe", "dxdiag.exe", "conhost.exe", "makecab.exe") and
 75  process.executable != null and
 76  not process.executable : ("C:\\Windows\\System32\\route.exe",
 77                            "C:\\Windows\\System32\\netsh.exe",
 78                            "C:\\Windows\\System32\\ipconfig.exe",
 79                            "C:\\Windows\\System32\\dxdiag.exe",
 80                            "C:\\Windows\\System32\\conhost.exe",
 81                            "C:\\Windows\\System32\\makecab.exe")
 82'''
 83
 84
 85[[rule.threat]]
 86framework = "MITRE ATT&CK"
 87
 88[[rule.threat.technique]]
 89id = "T1566"
 90name = "Phishing"
 91reference = "https://attack.mitre.org/techniques/T1566/"
 92
 93[[rule.threat.technique.subtechnique]]
 94id = "T1566.001"
 95name = "Spearphishing Attachment"
 96reference = "https://attack.mitre.org/techniques/T1566/001/"
 97
 98[[rule.threat.technique.subtechnique]]
 99id = "T1566.002"
100name = "Spearphishing Link"
101reference = "https://attack.mitre.org/techniques/T1566/002/"
102
103[rule.threat.tactic]
104id = "TA0001"
105name = "Initial Access"
106reference = "https://attack.mitre.org/tactics/TA0001/"
107
108[[rule.threat]]
109framework = "MITRE ATT&CK"
110
111[[rule.threat.technique]]
112id = "T1036"
113name = "Masquerading"
114reference = "https://attack.mitre.org/techniques/T1036/"
115
116[[rule.threat.technique.subtechnique]]
117id = "T1036.005"
118name = "Match Legitimate Resource Name or Location"
119reference = "https://attack.mitre.org/techniques/T1036/005/"
120
121[[rule.threat.technique]]
122id = "T1218"
123name = "System Binary Proxy Execution"
124reference = "https://attack.mitre.org/techniques/T1218/"
125
126[rule.threat.tactic]
127id = "TA0005"
128name = "Defense Evasion"
129reference = "https://attack.mitre.org/tactics/TA0005/"
130
131[[rule.threat]]
132framework = "MITRE ATT&CK"
133
134[[rule.threat.technique]]
135id = "T1203"
136name = "Exploitation for Client Execution"
137reference = "https://attack.mitre.org/techniques/T1203/"
138
139[rule.threat.tactic]
140id = "TA0002"
141name = "Execution"
142reference = "https://attack.mitre.org/tactics/TA0002/"

Triage and analysis

Investigating Potential CVE-2025-33053 Exploitation

Possible investigation steps

  • Review the process details to confirm the suspicious child process was indeed started by iediagcmd.exe.
  • Check any URL file type creation before the alert and review the source of those files.
  • Investigate the process tree and make sure all descendant processes are terminated.
  • Examine the network activity associated with the suspicious process to detect any unauthorized data exfiltration or communication with known malicious IP addresses.
  • Assess the system for any additional indicators of compromise, such as unexpected changes in system files or registry keys, which might suggest a broader attack.

False positive analysis

  • This behavior is very rare and should be highly suspicious.

Response and remediation

  • Isolate the affected system from the network to prevent further spread of the potential threat and to contain any malicious activity.
  • Terminate the suspicious child process identified in the alert.
  • Conduct a thorough scan of the affected system using updated antivirus or endpoint detection and response (EDR) tools to identify and remove any additional malicious files or processes.
  • Escalate the incident to the security operations center (SOC) or incident response team for further investigation and to determine if the threat is part of a larger attack campaign.
  • Implement additional monitoring and alerting for similar suspicious activities involving explorer.exe to enhance detection capabilities and prevent recurrence.
  • Review and update endpoint security policies to restrict the execution of potentially malicious URL files.

References

Related rules

to-top