> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/es/hacking-tools/enumeration/dns-enumeration.md).

# Enumeración DNS

La enumeración DNS identifica dominios, subdominios, registros, servidores de nombres, zonas expuestas y pistas de infraestructura antes de un escaneo más profundo. Utiliza primero fuentes pasivas, luego valida los hallazgos con consultas DNS activas y fuerza bruta controlada cuando el alcance de la prueba lo permita.

## Flujo de trabajo de enumeración DNS

1. Recopila datos pasivos de DNS de fuentes públicas y conjuntos de datos de transparencia de certificados.
2. Consulta registros comunes como A, AAAA, CNAME, MX, TXT, NS, SOA y SRV.
3. Comprueba la exposición a transferencias de zona con servidores de nombres autorizados.
4. Fuerza bruta de subdominios solo cuando las reglas de compromiso permitan el descubrimiento activo.
5. Resuelve los hosts descubiertos e incorpora los objetivos confirmados al escaneo de puertos y al perfilado web.

## Herramientas DNS

<table data-card-size="large" data-column-title-hidden data-view="cards" data-full-width="false" data-search="false"><thead><tr><th>Nombre</th><th>Descripción</th><th>Enlace oficial</th><th data-hidden data-card-cover data-type="image">Imagen de portada</th></tr></thead><tbody><tr><td><strong>DNSDumpster</strong></td><td>Descubrimiento pasivo de registros DNS y subdominios.</td><td><a href="https://dnsdumpster.com/">https://dnsdumpster.com/</a></td><td><a href="/files/0bac1d2180e3e7c44fbe37069d0255095eeac271">/files/0bac1d2180e3e7c44fbe37069d0255095eeac271</a></td></tr><tr><td><strong>dnsrecon</strong></td><td>Enumeración DNS, transferencias de zona y fuerza bruta de subdominios.</td><td><a href="https://github.com/darkoperator/dnsrecon">https://github.com/darkoperator/dnsrecon</a></td><td><a href="/files/bc9b105ec66cf3c61e46e3e293fd1c290f181423">/files/bc9b105ec66cf3c61e46e3e293fd1c290f181423</a></td></tr><tr><td><strong>dnsenum</strong></td><td>Fuerza bruta de DNS y recopilación de información de dominios.</td><td><a href="https://github.com/fwaeytens/dnsenum">https://github.com/fwaeytens/dnsenum</a></td><td><a href="/files/bbc7227712d07d40ad30d91cbfb11e1fda2d93c7">/files/bbc7227712d07d40ad30d91cbfb11e1fda2d93c7</a></td></tr></tbody></table>

## Fuentes pasivas

| Recurso                                               | Descripción                                                                                              |
| ----------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
| [VirusTotal](https://www.virustotal.com/)             | Análisis de URL, dominios, DNS pasivo y relaciones de infraestructura.                                   |
| [Censys](https://search.censys.io/)                   | Motor de búsqueda para hosts conectados a Internet, certificados y servicios expuestos.                  |
| [crt.sh](https://crt.sh/)                             | Búsqueda de transparencia de certificados para descubrir nombres presentes en certificados TLS públicos. |
| [Project Sonar](https://sonar.omnisint.io/)           | Puntos finales públicos de búsqueda de subdominios, TLD y consulta DNS inversa.                          |
| [Netcraft SearchDNS](https://searchdns.netcraft.com/) | Búsqueda pública de nombres de host e inteligencia DNS.                                                  |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/es/hacking-tools/enumeration/dns-enumeration.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
