Files
hacktricks-cloud/src/pentesting-cloud/gcp-security/gcp-services/gcp-memorystore-enum.md
Carlos Polop 4ef00e6b1b translate fix
2025-01-01 23:55:17 +01:00

819 B

GCP - Memorystore Enum

{{#include ../../../banners/hacktricks-training.md}}

Memorystore

Reduce latency with scalable, secure, and highly available in-memory service for Redis and Memcached. Learn more.

# Memcache
gcloud memcache instances list --region <region>
gcloud memcache instances describe <INSTANCE> --region <region>
# You should try to connect to the memcache instances to access the data

# Redis
gcloud redis instances list --region <region>
gcloud redis instances describe <INSTACE> --region <region>
gcloud redis instances export gs://my-bucket/my-redis-instance.rdb my-redis-instance --region=us-central1

{{#include ../../../banners/hacktricks-training.md}}