githubEdit

Unsigned endpoints

Theory

In their research papersarrow-up-right, Will Schroederarrow-up-right and Lee Christensenarrow-up-right found a domain escalation vector based on web endpoints vulnerable to NTLM relay attacksarrow-up-right. The escalation vector was dubbed ESC8arrow-up-right.

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.ioarrow-up-right)

Following this, Sylvain Heinigerarrow-up-right from Compass Security has found a similar vulnerability on the AD CS RPC enrollment endpoint. As described in his articlearrow-up-right, 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 documentationarrow-up-right, 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 attacksarrow-up-right, 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 techniquesarrow-up-right. 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.

circle-check

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, Impacketarrow-up-right's ntlmrelayxarrow-up-right (Python) can be used to conduct the ESC8 escalation scenario.

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

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.

Certipyarrow-up-right (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 enumeratearrow-up-right).

# 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
circle-info

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. PrinterBugarrow-up-right, PetitPotamarrow-up-right, PrivExchangearrow-up-right) to force accounts/machines to authenticate to the relay servers.

circle-info

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-Certificatearrow-up-right to obtain a TGT and authenticate.

RPC endpoint (ESC11)

1. Relay servers setup 🧰

From UNIX-like systems, Impacketarrow-up-right's ntlmrelayxarrow-up-right (Python) can be used to conduct the ESC11 escalation scenario.

circle-info

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.

Certipyarrow-up-right (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 enumeratearrow-up-right).

circle-info

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. PrinterBugarrow-up-right, PetitPotamarrow-up-right, PrivExchangearrow-up-right) to force accounts/machines to authenticate to the relay servers.

circle-info

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-Certificatearrow-up-right to obtain a TGT and authenticate.

Resources

Last updated