Created
September 18, 2017 22:31
-
-
Save scovetta/66ec3b597537bb9650e70e0557d18281 to your computer and use it in GitHub Desktop.
Enable TLS Protocol Logging in IIS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Source: | |
https://blogs.microsoft.com/microsoftsecure/2017/09/07/new-iis-functionality-to-help-identify-weak-tls-usage/ | |
--> | |
<site name="Default Web Site" id="1" serverAutoStart="true"> | |
<application path="/"> | |
<virtualDirectory path="/" physicalPath="C:\inetpub\wwwroot" /> | |
</application> | |
<bindings> | |
<binding protocol="https" bindingInformation="*:443:" /> | |
</bindings> | |
<logFile> | |
<customFields> | |
<clear /> | |
<add logFieldName="crypt-protocol" sourceName="CRYPT_PROTOCOL" sourceType="ServerVariable" /> | |
<add logFieldName="crypt-cipher" sourceName="CRYPT_CIPHER_ALG_ID" sourceType="ServerVariable" /> | |
<add logFieldName="crypt-hash" sourceName="CRYPT_HASH_ALG_ID" sourceType="ServerVariable" /> | |
<add logFieldName="crypt-keyexchange" sourceName="CRYPT_KEYEXCHANGE_ALG_ID" sourceType="ServerVariable" /> | |
</customFields> | |
</logFile> | |
</site> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment