Bir kovaya erişebildiğinizi tespit ederseniz, daha da ilerletebilirsiniz, kontrol edin:
Mevcut Hesaptaki Açık Kovaları Ara
Aşağıdaki betik buradan toplanmıştır ve tüm açık kovaları bulmanıza yardımcı olur:
#!/bin/bash############################# Run this tool to find buckets that are open to the public anywhere# in your GCP organization.## Enjoy!############################for proj in $(gcloudprojectslist--format="get(projectId)"); doecho"[*] scraping project $proj"for bucket in $(gsutills-p $proj); doecho" $bucket"ACL="$(gsutiliamget $bucket)"all_users="$(echo $ACL |grepallUsers)"all_auth="$(echo $ACL |grepallAuthenticatedUsers)"if [ -z"$all_users" ]then:elseecho"[!] Open to all users: $bucket"fiif [ -z"$all_auth" ]then:elseecho"[!] Open to all authenticated users: $bucket"fidonedone