hacktricks/cloud-security/gcp-security/gcp-network-enumeration.md
2022-09-09 13:28:04 +02:00

2.9 KiB

Support HackTricks and get benefits!

Network Enumeration

Compute

# List networks
gcloud compute networks list
gcloud compute networks describe <network>

# List subnetworks
gcloud compute networks subnets list
gcloud compute networks subnets get-iam-policy <name> --region <region>
gcloud compute networks subnets describe <name> --region <region>

# List FW rules in networks
gcloud compute firewall-rules list

You easily find compute instances with open firewall rules with https://gitlab.com/gitlab-com/gl-security/security-operations/gl-redteam/gcp_firewall_enum

Support HackTricks and get benefits!