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 applicationsUsage of outdated protocols poses a security risk and a lack of technical support. Using these protocols means your APIs are vulnerable to attack.
Set properties.tls11Enabled
and properties.tls10Enabled
to false
.
Set any security.enable_backend_*
attributes to false
.
Example configuration:
resource "azurerm_api_management" "allowed488" {
name = "exampleApim488a"
location = azurerm_resource_group.example488.location
resource_group_name = azurerm_resource_group.example488.name
publisher_name = "My Company"
publisher_email = "company@terraform.io"
sku_name = "Developer_1"
security {
enable_backend_ssl30 = false
enable_backend_tls10 = false
enable_backend_tls11 = false
}
}