CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsFTP is a plain-text protocol that is vulnerable to manipulation and eavesdropping.
Set ftpsState
to FtpsOnly
or Disabled
if not needed.
Set site_config.ftps_state
to FtpsOnly
or Disabled
.
resource "azurerm_app_service" "allowed1" {
name = "example-app-servicea1"
location = azurerm_resource_group.example498v.location
resource_group_name = azurerm_resource_group.example498v.name
app_service_plan_id = azurerm_app_service_plan.example498v.id
site_config {
ftps_state = "FtpsOnly"
}
}