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 applicationsThe SQL Server database instance flag 'cross db ownership chaining' allows you to control cross-database ownership chaining at the database level or to allow cross-database ownership chaining for all databases. This flag should be set to off unless all of the databases hosted on this instance must participate in cross-database ownership chaining and you are aware of the security implications of doing this.
Set settings.database_flags.name
attribute to "cross db ownership chaining"
, and settings.database_flags.value
attribute to "off"
.
resource "google_sql_database_instance" "allowed" {
name = "master-instance"
database_version = "SQLSERVER_2017_STANDARD"
region = "us-central1"
settings {
tier = "db-f1-micro"
database_flags {
name = "cross db ownership chaining"
value = "off"
}
}
}