Remediation
From Azure Portalโ
- Go to the Azure Portal.
- Select
App Services. - Click on an app.
- Select
Settingsand thenConfiguration. - Under
General Settings, for thePlatform Settings, theFTP stateshould be set toDisabledorFTPS 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>