ly4k / Certipy

Tool for Active Directory Certificate Services enumeration and abuse
MIT License
2.34k stars 318 forks source link

Prefer Hostname in AD CS Web API URL #131

Open rtpt-erikgeiser opened 1 year ago

rtpt-erikgeiser commented 1 year ago

When a certificate is requested with -web, the AD CS web API is currently accessed using IP addresses with the hostname in the host header. This can sometimes fail, probably because IIS checks the TLS-SNI instead of the host header depending on the configuration. With this PR, the hostname is used in the url passed to requests such that the TLS-SNI can be set accordingly. As I understand it, self.target.remote_name contains the IP if the hostname cannot be determined, so it should not break anything.