Skip to main content

Remediation

From Azure Portalโ€‹

  1. Log in to the Azure portal using https://portal.azure.com.
  2. Go to App Services.
  3. Select each app.
  4. Under Settings, select Configuration.
  5. Under the General settings tab, set the Remote debugging option to Off.

From Azure CLIโ€‹

To set remote debugging status to Off, run the following command:

az webapp config set \
--resource-group {{resource-group-name}} \
--name {{app-name}} \
--remote-debugging-enabled false

From PowerShellโ€‹

To set remote debugging status to Off, run the following command:

Set-AzWebApp `
-ResourceGroupName {{resource-group-name}} `
-Name {{app-name}} `
-RemoteDebuggingEnabled $false