GCP - DNS Enum
Support HackTricks
Check the subscription plans!
Join the 💬 Discord group or the telegram group or follow us on Twitter 🐦 @hacktricks_live.
Share hacking tricks by submitting PRs to the HackTricks and HackTricks Cloud github repos.
GCP - Cloud DNS
Google Cloud DNS는 고성능, 복원력이 뛰어난 글로벌 도메인 이름 시스템(DNS) 서비스입니다.
# This will usually error if DNS service isn't configured in the project
gcloud dns project-info describe <project>
# Get DNS zones & records
gcloud dns managed-zones list
gcloud dns managed-zones describe <zone>
gcloud dns record-sets list --zone <zone> # Get record of the zone
# Policies
## A response policy is a collection of selectors that apply to queries made against one or more virtual private cloud networks.
gcloud dns response-policies list
## DNS policies control internal DNS server settings. You can apply policies to DNS servers on Google Cloud Platform VPC networks you have access to.
gcloud dns policies list
Support HackTricks
Check the subscription plans!
Join the 💬 Discord group or the telegram group or follow us on Twitter 🐦 @hacktricks_live.
해킹 트릭을 공유하려면 HackTricks 및 HackTricks Cloud 깃허브 리포지토리에 PR을 제출하세요.
Last updated