Skip to content

Authors

Error occured...

Unsigned endpoints

Theory

In their research papers, Will Schroeder and Lee Christensen found a domain escalation vector based on web endpoints vulnerable to NTLM relay attacks. The escalation vector was dubbed ESC8.

AD CS supports several HTTP-based enrollment methods via additional server roles that administrators can optionally install [(The certificate enrollment web interface, Certificate Enrollment Service (CES), Network Device Enrollment Service (NDES)).]

[...]

These HTTP-based certificate enrollment interfaces are all vulnerable to NTLM relay attacks. Using NTLM relay, an attacker can impersonate an inbound-NTLM-authenticating victim user. While impersonating the victim user, an attacker could access these web interfaces and request a client authentication certificate based on the "User" or "Machine" certificate templates.

(specterops.io)

Following this, Sylvain Heiniger from Compass Security has found a similar vulnerability on the AD CS RPC enrollment endpoint. As described in his article, each RPC interface checks the NTLM signature independently.

For certificate request purposes, the MS-ICPR (ICertPassage Remote Protocol) RPC interface is used. According to the Microsoft documentation, packet privacy is enabled if the IF_ENFORCEENCRYPTICERTREQUEST flag is set (default configuration), meaning that NTLM relay attacks are not possible.

These attacks, like all NTLM relay attacks, require a victim account to authenticate to an attacker-controlled machine. An attacker can coerce authentication by many means, see MITM and coerced authentication coercion techniques. Once the incoming authentication is received by the attacker, it can be relayed to an AD CS web endpoint.

Once the relayed session is obtained, the attacker poses as the relayed account and can request a client authentication certificate. The certificate template used needs to be configured for authentication (i.e. EKUs like Client Authentication, PKINIT Client Authentication, Smart Card Logon, Any Purpose (OID 2.5.29.37.0), or no EKU (SubCA)) and allowing low-priv users to enroll can be abused to authenticate as any other user/machine/admin.

The default User and Machine/Computer templates match those criteria and are very often enabled.

This allows for lateral movement, account persistence, and in some cases privilege escalation if the relayed user had powerful privileges (e.g., domain controllers or Exchange servers, domain admins etc.).

Practice

Web endpoint (ESC8)

1. Relay servers setup 🧰

From UNIX-like systems, Impacket's ntlmrelayx (Python) can be used to conduct the ESC8 escalation scenario.

bash
ntlmrelayx -t http://$PKI.domain.local/certsrv/certfnsh.asp --adcs --template "Template name"

The certificate template flag (i.e. --template) can either be left blank (defaults to Machine or User whether relayed account name ends with $) or chosen among the certificate templates that fill the requirements.

For instance, if the relayed principal is a domain controller, the DomainController template must be specified.

Certipy (Python) can be used to enumerate information regarding the certificate templates (EKUs allowing for authentication, allowing low-priv users to enroll, etc.) and identify enabled HTTP endpoint (how to enumerate).

bash
# find ESC8-vulnerable CAs
certipy find -u "$USER@$DOMAIN" -p "$PASSWORD" -dc-ip "$DC_IP" -stdout | grep -B20 ESC8
# find and look through enabled templates for ones that could be used for authentication
certipy find -u "$USER@$DOMAIN" -p "$PASSWORD" -dc-ip "$DC_IP" -stdout -enabled

By default, Certipy uses LDAPS, which is not always supported by the domain controllers. The -scheme flag can be used to set whether to use LDAP or LDAPS.


2. Authentication coercion ⛓️

Just like any other NTLM relay attack, once the relay servers are running and waiting for incoming NTLM authentications, authentication coercion techniques can be used (e.g. PrinterBug, PetitPotam, PrivExchange) to force accounts/machines to authenticate to the relay servers.

Read the mitm-and-coerced-authentications article for more insight.


3. Loot 🎉

Once incoming NTLM authentications are relayed and authenticated sessions abused, base64-encoded PFX certificates will be obtained and usable with Pass-the-Certificate to obtain a TGT and authenticate.

RPC endpoint (ESC11)

1. Relay servers setup 🧰

From UNIX-like systems, Impacket's ntlmrelayx (Python) can be used to conduct the ESC11 escalation scenario.

bash
ntlmrelayx -t rpc://$PKI.domain.local -rpc-mode ICPR -icpr-ca-name $CA_NAME -smb2support --template "Template name"

The certificate template flag (i.e. --template) can either be left blank (defaults to Machine or User whether relayed account name ends with $) or chosen among the certificate templates that fill the requirements.

For instance, if the relayed principal is a domain controller, the DomainController template must be specified.

Certipy (Python) can be used to enumerate information regarding the certificate templates (EKUs allowing for authentication, allowing low-priv users to enroll, etc.) and identify a vulnerable RPC endpoint (how to enumerate).

bash
# find ESC11-vulnerable CAs
certipy find -u "$USER@$DOMAIN" -p "$PASSWORD" -dc-ip "$DC_IP" -stdout | grep -B20 ESC11
# find and look through enabled templates for ones that could be used for authentication
certipy find -u "$USER@$DOMAIN" -p "$PASSWORD" -dc-ip "$DC_IP" -stdout -enabled

By default, Certipy uses LDAPS, which is not always supported by the domain controllers. The -scheme flag can be used to set whether to use LDAP or LDAPS.


2. Authentication coercion ⛓️

Just like any other NTLM relay attack, once the relay servers are running and waiting for incoming NTLM authentications, authentication coercion techniques can be used (e.g. PrinterBug, PetitPotam, PrivExchange) to force accounts/machines to authenticate to the relay servers.

Read the mitm-and-coerced-authentications article for more insight.


3. Loot 🎉

Once incoming NTLM authentications are relayed and authenticated sessions abused, base64-encoded PFX certificates will be obtained and usable with Pass-the-Certificate to obtain a TGT and authenticate.

Resources

https://www.exandroid.dev/2021/06/23/ad-cs-relay-attack-practical-guide

https://dirkjanm.io/ntlm-relaying-to-ad-certificate-services

https://posts.specterops.io/certified-pre-owned-d95910965cd2

https://blog.compass-security.com/2022/11/relaying-to-ad-certificate-services-over-rpc/