Disabling Week TLS weak Ciphers on Azure App Service

Akila Weerathunge 41 Reputation points
2021-02-03T18:10:53.897+00:00

looking for a way to disable these weak ciphers in Azure App Service. The minimum TLS version is set to 1.2.
However there are Weak ciphers in this TLS 1.2 Cipher Suites as following,

TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA (secp256r1)
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA (secp256r1)
TLS_RSA_WITH_AES_256_CBC_SHA (rsa 2048)
TLS_RSA_WITH_AES_128_CBC_SHA (rsa 2048)

I have gone through the following article but i was not allowed to modify the ciphers in Azure Resource Manager.
https://learn.microsoft.com/en-us/azure/app-service/environment/app-service-app-service-environment-custom-settings#change-tls-cipher-suite-order

is there a way to disable these weak ciphers in Azure App Service.

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,976 questions
{count} votes

Accepted answer
  1. Ryan Hill 30,281 Reputation points Microsoft Employee Moderator
    2021-02-09T20:11:34.553+00:00

    Hi @Akila Weerathunge ,

    clusterSettings are applied to Microsoft.Web/hostingEnvironements AppServiceEnvironment object. Your application; however, is hosted in the multitenant App Service environment SKU. Disabling ciphers through the clusterSettings property is only available on isolated, i.e. App Service Environment, SKUs. That's why you received the error message. There aren't any current plans to bring this capability to multitenant environments.

    ---
    EDIT: 2022 Apr 26

    The team is working to bring this to multitenant environments. Best estimate I can provide at this point in time is the fall of this year.

    Regards,
    Ryan

    2 people found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.