Skip to main content

Remediation

From Azure Portalโ€‹

  1. Go to the Azure portal.
  2. Select App Services.
  3. Select an app.
  4. Select Settings and then Configuration.
  5. Under General Settings, in Platform Settings, set FTP state to Disabled or FTPS Only.

From Azure CLIโ€‹

For each out-of-compliance application, run the following, choosing either disabled or FtpsOnly as appropriate:

az webapp config set \
--resource-group {{resource-group-name}} \
--name {{app-name}} \
--ftps-state [disabled|FtpsOnly]

From PowerShellโ€‹

For each out-of-compliance application, run the following:

Set-AzWebApp `
-ResourceGroupName {{resource-group-name}} `
-Name {{app-name}} `
-FtpsState {{Disabled or FtpsOnly}}