Memory store has Redis AUTH disabled Affecting Redis service in Google


Severity

0.0
high
0
10
Severity Framework
Snyk CCSS
Rule category
General/ Data

Is your environment affected by this misconfiguration?

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 applications
Frameworks
CIS-ControlsCSA-CCM
  • Snyk IDSNYK-CC-00429
  • creditSnyk Research Team

Description

Disabled AUTH configuration allows anonymous client access to the Memory store.

How to fix?

Set auth_enabled to true. Disabled AUTH configuration allows anonymous client access to the Memorystore.

Example configuration:

resource "google_redis_instance" "allowed" {
  name           = "memory-cache"
  memory_size_gb = 1
  auth_enabled = true
}