Suspected ProxyToken Exploitation
Description
'Looks for activity that might indicate exploitation of the ProxyToken vulnerability - CVE-2021-33766 Ref: https://www.zerodayinitiative.com/blog/2021/8/30/proxytoken-an-authentication-bypass-in-microsoft-exchange-server'
Query · kql
W3CIISLog //Exclude local addresses, using the ipv4_is_private operator | where ipv4_is_private(cIP) == false and cIP !startswith "fe80" and cIP !startswith "::" and cIP !startswith "127." | where csMethod =~ "POST" | where csUriStem has "/ecp" | where isnotempty(csCookie) and csCookie has "SecurityToken" | where csUriQuery has "msExchEcpCanary" | extend timestamp=TimeGenerated, HostCustomEntity=Computer, IPCustomEntity=cIP