Comments
Sort by recent activity
Morning –
We worked with the Azure virtual assistant and confirmed a script needs to be
executed to check TLS readiness to ensure the appropriate ciphers are enabled.
[Yesterday 9:22 AM] Nicholas Stommel
# This PowerShell script was generated as a mitigation by
Azure DevOps TLS 1.2 transition readiness checker.
Enable-TlsCipherSuite -Name TLS_DHE_RSA_WITH_AES_128_GCM_SHA256; if
(Get-TlsCipherSuite -Name TLS_DHE_RSA_WITH_AES_128_GCM_SHA256) {'Enabled!'}
else {'Not effective.'}
Enable-TlsCipherSuite -Name TLS_DHE_RSA_WITH_AES_256_GCM_SHA384; if
(Get-TlsCipherSuite -Name TLS_DHE_RSA_WITH_AES_256_GCM_SHA384) {'Enabled!'}
else {'Not effective.'}
Enable-TlsCipherSuite -Name TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256; if
(Get-TlsCipherSuite -Name TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) {'Enabled!'}
else {'Not effective.'}
Enable-TlsCipherSuite -Name TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384; if
(Get-TlsCipherSuite -Name TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) {'Enabled!'}
else {'Not effective.'}
'Done!'
[image]
/ comments
Morning –
We worked with the Azure virtual assistant and confirmed a script needs to be
executed to check TLS readiness to ensure the appropriate ciphers are enabled.
[Yesterday 9:22 AM] Nichol...