# GCP - Secrets Manager Enum {% hint style="success" %} Learn & practice AWS Hacking:[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)\ Learn & practice GCP Hacking: [**HackTricks Training GCP Red Team Expert (GRTE)**](https://training.hacktricks.xyz/courses/grte)
Support HackTricks * Check the [**subscription plans**](https://github.com/sponsors/carlospolop)! * **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks_live)**.** * **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
{% endhint %} ## Secret Manager Google [**Secret Manager**](https://cloud.google.com/solutions/secrets-management/) is a vault-like solution for storing passwords, API keys, certificates, files (max 64KB) and other sensitive data. A secret can have **different versions storing different data**. Secrets by **default** are **encrypted using a Google managed key**, but it's **possible to select a key from KMS** to use to encrypt the secret. Regarding **rotation**, it's possible to configure **messages to be sent to pub-sub every number of days**, the code listening to those messages can **rotate the secret**. It's possible to configure a day for **automatic deletion**, when the indicated day is **reached**, the **secret will be automatically deleted**. ### Enumeration ```bash # First, list the entries gcloud secrets list gcloud secrets get-iam-policy # Then, pull the clear-text of any version of any secret gcloud secrets versions list gcloud secrets versions access 1 --secret="" ``` ### Privilege Escalation In the following page you can check how to **abuse secretmanager permissions to escalate privileges.** {% content-ref url="../gcp-privilege-escalation/gcp-secretmanager-privesc.md" %} [gcp-secretmanager-privesc.md](../gcp-privilege-escalation/gcp-secretmanager-privesc.md) {% endcontent-ref %} ### Post Exploitation {% content-ref url="../gcp-post-exploitation/gcp-secretmanager-post-exploitation.md" %} [gcp-secretmanager-post-exploitation.md](../gcp-post-exploitation/gcp-secretmanager-post-exploitation.md) {% endcontent-ref %} ### Persistence {% content-ref url="../gcp-persistence/gcp-secret-manager-persistence.md" %} [gcp-secret-manager-persistence.md](../gcp-persistence/gcp-secret-manager-persistence.md) {% endcontent-ref %} ### Rotation misuse An attacker could update the secret to **stop rotations** (so it won't be modified), or **make rotations much less often** (so the secret won't be modified) or to **publish the rotation message to a different pub/sub**, or modifying the rotation code being executed (this happens in a different service, probably in a Clound Function, so the attacker will need privileged access over the Cloud Function or any other service) {% hint style="success" %} Learn & practice AWS Hacking:[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)\ Learn & practice GCP Hacking: [**HackTricks Training GCP Red Team Expert (GRTE)**](https://training.hacktricks.xyz/courses/grte)
Support HackTricks * Check the [**subscription plans**](https://github.com/sponsors/carlospolop)! * **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks_live)**.** * **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
{% endhint %}