mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-01-12 21:13:45 -08:00
Migrate to using mdbook
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
# AWS - Route53 Enum
|
||||
|
||||
{{#include ../../../banners/hacktricks-training.md}}
|
||||
|
||||
## Route 53
|
||||
|
||||
Amazon Route 53 is a cloud **Domain Name System (DNS)** web service.\
|
||||
You can create https, http and tcp **health checks for web pages** via Route53.
|
||||
|
||||
### IP-based routing <a href="#routing-policy-ipbased" id="routing-policy-ipbased"></a>
|
||||
|
||||
This is useful to tune your DNS routing to make the best DNS routing decisions for your end users.\
|
||||
IP-based routing offers you the additional ability to **optimize routing based on specific knowledge of your customer base**.
|
||||
|
||||
### Enumeration
|
||||
|
||||
```bash
|
||||
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
|
||||
```
|
||||
|
||||
### Privesc
|
||||
|
||||
{{#ref}}
|
||||
../aws-privilege-escalation/route53-createhostedzone-route53-changeresourcerecordsets-acm-pca-issuecertificate-acm-pca-getcer.md
|
||||
{{#endref}}
|
||||
|
||||
{{#include ../../../banners/hacktricks-training.md}}
|
||||
Reference in New Issue
Block a user