mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2025-12-28 13:43:24 -08:00
1.3 KiB
1.3 KiB
AWS - Route53 Enum
{{#include ../../../banners/hacktricks-training.md}}
Route 53
Amazon Route 53は、クラウドのドメインネームシステム(DNS)ウェブサービスです。
Route53を介して、https、http、およびtcpのウェブページ用のヘルスチェックを作成できます。
IPベースのルーティング
これは、エンドユーザーにとって最適なDNSルーティングの決定を行うために、DNSルーティングを調整するのに役立ちます。
IPベースのルーティングは、顧客基盤に関する特定の知識に基づいてルーティングを最適化する追加の能力を提供します。
列挙
aws route53 list-hosted-zones # Get domains
aws route53 get-hosted-zone --id <hosted_zone_id>
aws route53 list-resource-record-sets --hosted-zone-id <hosted_zone_id> # Get all records
aws route53 list-health-checks
aws route53 list-traffic-policies
プライベートアクセス
{{#ref}} ../aws-privilege-escalation/route53-createhostedzone-route53-changeresourcerecordsets-acm-pca-issuecertificate-acm-pca-getcer/README.md {{#endref}}
{{#include ../../../banners/hacktricks-training.md}}