CVE-2026-12569 Microsoft Sentinel · KQL

Detect CVE-2026-12569 - PTC Windchill and FlexPLM Improper Input Validation / Unsafe Deserialization in Microsoft Sentinel

Detects exploitation attempts targeting CVE-2026-12569, an improper input validation and unsafe deserialization vulnerability (CWE-20, CWE-502) in PTC Windchill and FlexPLM. This vulnerability is listed in CISA KEV, indicating active exploitation in the wild. Attackers may leverage this to achieve remote code execution via crafted serialized objects or malformed input submitted to Windchill/FlexPLM HTTP endpoints.

MITRE ATT&CK

Tactic
Initial Access Execution Lateral Movement

KQL Detection Query

Microsoft Sentinel (KQL)
kusto
union DeviceNetworkEvents, DeviceProcessEvents, CommonSecurityLog
| where TimeGenerated > ago(7d)
| where (
    (DeviceName has_any ("windchill", "flexplm") or Computer has_any ("windchill", "flexplm"))
    or (RequestURL has_any ("/Windchill/", "/FlexPLM/", "/ptc/", "/servlet/", "/wt.httpgw"))
    or (DestinationPort in (80, 443, 8080, 8443) and (RequestURL contains "java.io.ObjectInputStream" or RequestURL contains "rO0AB" or RequestURL contains "aced0005"))
)
| where (
    InitiatingProcessCommandLine has_any ("cmd.exe", "powershell", "bash", "sh", "wget", "curl", "certutil")
    or RequestURL has_any ("java.lang.Runtime", "ProcessBuilder", "rO0AB", "aced")
    or Activity has "Exploit"
    or AdditionalExtensions has_any ("CVE-2026-12569", "deserialization", "ObjectInputStream")
)
| project TimeGenerated, Computer, DeviceName, InitiatingProcessCommandLine, RequestURL, SourceIP, DestinationIP, DestinationPort, Activity, AdditionalExtensions
| order by TimeGenerated desc
critical severity medium confidence

Detects suspicious activity against PTC Windchill and FlexPLM servers including potential deserialization payload indicators (Java serialized object magic bytes rO0AB/aced0005) in HTTP traffic, and post-exploitation process spawning from the application server process.

Data Sources

DeviceNetworkEventsDeviceProcessEventsCommonSecurityLogAzureActivity

Required Tables

DeviceNetworkEventsDeviceProcessEventsCommonSecurityLog

False Positives & Tuning

  • Legitimate administrative access to Windchill or FlexPLM via standard HTTP endpoints
  • Internal vulnerability scanners running against PTC product endpoints
  • Authorized penetration testing or red team exercises targeting the PLM environment
  • Java RMI or legitimate serialized session data transmitted over normal application workflows

Other platforms for CVE-2026-12569


Testing Methodology

Validate this detection against 3 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1CVE-2026-12569 - Simulated Java Deserialization Payload HTTP Request to Windchill Endpoint

    Expected signal: Proxy or WAF logs should capture the POST request to /Windchill/servlet/WindchillAuthenticator with raw body containing aced0005 (Java serialization magic bytes). Network capture (Wireshark/tcpdump) will show the octets 0xAC 0xED 0x00 0x05 in the TCP stream.

  2. Test 2CVE-2026-12569 - Simulate Post-Exploitation Shell Spawn from Java Parent (Windows)

    Expected signal: Windows Security Event ID 4688 (Process Creation) showing cmd.exe with parent process java.exe. EDR (CrowdStrike/Defender) ProcessRollup2 event with ParentBaseFileName=java.exe and FileName=cmd.exe.

  3. Test 3CVE-2026-12569 - Simulate Post-Exploitation Outbound C2 from Windchill Server (Linux)

    Expected signal: Network connection logs (Elastic/Zeek/firewall) showing outbound TCP connection from Windchill server to external IP on port 4444. Process ancestry in EDR showing bash/curl invoked with suspicious URL parameters (hostname, whoami output).

Unlock Pro Content

Get the full detection package for CVE-2026-12569 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections