GCP - Cloud Functions Unauthenticated Enum

Leer AWS-hacking vanaf nul tot held met htARTE (HackTricks AWS Red Team Expert)!

Ander maniere om HackTricks te ondersteun:

Wolkenfunksies

Meer inligting oor Wolkenfunksies is beskikbaar in:

pageGCP - Cloud Functions Enum

Brute Force-URL's

Brute Force die URL-formaat:

  • https://<streek>-<projek-gcp-naam>.cloudfunctions.net/<funksie_naam>

Dit is makliker as jy die projekname ken.

Kyk op hierdie bladsy vir 'n paar gereedskap om hierdie brute force uit te voer:

pageGCP - Unauthenticated Enum & Access

Enumerateer Oop Wolkenfunksies

Met die volgende kode geneem van hier kan jy Wolkenfunksies vind wat ongeagte aanroepings toelaat.

#!/bin/bash

############################
# Run this tool to find Cloud Functions that permit unauthenticated invocations
# anywhere in your GCP organization.
# Enjoy!
############################

for proj in $(gcloud projects list --format="get(projectId)"); do
echo "[*] scraping project $proj"

enabled=$(gcloud services list --project "$proj" | grep "Cloud Functions API")

if [ -z "$enabled" ]; then
continue
fi


for func_region in $(gcloud functions list --quiet --project "$proj" --format="value[separator=','](NAME,REGION)"); do
# drop substring from first occurence of "," to end of string.
func="${func_region%%,*}"
# drop substring from start of string up to last occurence of ","
region="${func_region##*,}"
ACL="$(gcloud functions get-iam-policy "$func" --project "$proj" --region "$region")"

all_users="$(echo "$ACL" | grep allUsers)"
all_auth="$(echo "$ACL" | grep allAuthenticatedUsers)"

if [ -z "$all_users" ]
then
:
else
echo "[!] Open to all users: $proj: $func"
fi

if [ -z "$all_auth" ]
then
:
else
echo "[!] Open to all authenticated users: $proj: $func"
fi
done
done
Leer AWS-hacking vanaf nul tot held met htARTE (HackTricks AWS Red Team Expert)!

Ander maniere om HackTricks te ondersteun:

Last updated