hacktricks/cloud-security/gcp-security/gcp-network-enumeration.md
2021-10-25 14:30:32 +00:00

20 lines
425 B
Markdown

# GCP - Network Enumeration
## Network Enumeration
### Compute
```bash
# 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
```