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 applicationsWithout the latest available version of .NET, the application cannot benefit from recent security improvements to the runtime engine.
Set properties.siteConfig.netFrameworkVersion
attribute to v5.0
.
Set site_config.dotnet_framework_version
attribute to the latest version.
Example configuration:
resource "azurerm_app_service" "allowed1" {
name = "example-app-service492v1"
location = azurerm_resource_group.example492v.location
resource_group_name = azurerm_resource_group.example492v.name
app_service_plan_id = azurerm_app_service_plan.example492v.id
site_config {
dotnet_framework_version = "v6.0"
}
}