SQL Server cross DB ownership chaining enabled
Ce produit n'est pas pris en charge par le
site Datadog que vous avez sélectionné. (
).
Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel,
n'hésitez pas à nous contacter.
Id: b2d5f3c9-1e68-47a1-89b4-92f3a6d7e123
Cloud Provider: GCP
Platform: Terraform
Severity: High
Category: Insecure Configurations
Learn More
Description
Cross-database ownership chaining allows users to access objects across databases without requiring separate permissions for each database, creating a potential privilege escalation vulnerability. When enabled, an attacker with access to one database might exploit ownership chains to gain unauthorized access to data in other linked databases, bypassing normal permission boundaries. To secure your SQL Server instance, configure the cross db ownership chaining database flag to off as shown in the following example:
settings {
database_flags {
name = "cross db ownership chaining"
value = "off"
}
}
Compliant Code Examples
resource "google_sql_database_instance" "good_example" {
name = "good-instance"
database_version = "SQLSERVER_2019_STANDARD"
region = "us-central1"
settings {
tier = "db-custom-2-13312"
database_flags {
name = "cross db ownership chaining"
value = "off" # ✅ Compliant
}
}
}
Non-Compliant Code Examples
resource "google_sql_database_instance" "bad_example" {
name = "bad-instance"
database_version = "SQLSERVER_2019_STANDARD"
region = "us-central1"
settings {
tier = "db-custom-2-13312"
database_flags {
name = "cross db ownership chaining"
value = "on"
}
}
}