> 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/ru/hacking-tools/enumeration/dns-enumeration.md).

# Перечисление DNS

Перечисление DNS позволяет выявить домены, поддомены, записи, имена серверов, раскрытые зоны и признаки инфраструктуры до более глубокого сканирования. Сначала используйте пассивные источники, затем подтверждайте находки с помощью активных DNS-запросов и контролируемого перебора, если это допускается рамками теста.

## Рабочий процесс перечисления DNS

1. Соберите пассивные DNS-данные из общедоступных источников и наборов данных Certificate Transparency.
2. Запрашивайте распространённые записи, такие как A, AAAA, CNAME, MX, TXT, NS, SOA и SRV.
3. Проверьте наличие возможности передачи зоны с авторизованными серверами имён.
4. Проводите брутфорс поддоменов только тогда, когда правила проведения теста разрешают активное обнаружение.
5. Разрешайте обнаруженные хосты и передавайте подтверждённые цели в сканирование портов и веб-профилирование.

## Инструменты DNS

<table data-card-size="large" data-column-title-hidden data-view="cards" data-full-width="false" data-search="false"><thead><tr><th>Название</th><th>Описание</th><th>Официальная ссылка</th><th data-hidden data-card-cover data-type="image">Обложка</th></tr></thead><tbody><tr><td><strong>DNSDumpster</strong></td><td>Пассивное обнаружение DNS-записей и поддоменов.</td><td><a href="https://dnsdumpster.com/">https://dnsdumpster.com/</a></td><td><a href="/files/40e781a8c12723ac2ce77cc165926e7849e71e2f">/files/40e781a8c12723ac2ce77cc165926e7849e71e2f</a></td></tr><tr><td><strong>dnsrecon</strong></td><td>Перечисление DNS, передача зон и брутфорс поддоменов.</td><td><a href="https://github.com/darkoperator/dnsrecon">https://github.com/darkoperator/dnsrecon</a></td><td><a href="/files/19dfbaa3e1f1561419cf93019ca2b3472d9f40f8">/files/19dfbaa3e1f1561419cf93019ca2b3472d9f40f8</a></td></tr><tr><td><strong>dnsenum</strong></td><td>Брутфорс DNS и сбор информации о домене.</td><td><a href="https://github.com/fwaeytens/dnsenum">https://github.com/fwaeytens/dnsenum</a></td><td><a href="/files/f8f691e504cb5e4b09414e27196e80abd9bf63da">/files/f8f691e504cb5e4b09414e27196e80abd9bf63da</a></td></tr></tbody></table>

## Пассивные источники

| Ресурс                                                | Описание                                                                                             |
| ----------------------------------------------------- | ---------------------------------------------------------------------------------------------------- |
| [VirusTotal](https://www.virustotal.com/)             | Анализ URL, доменов, пассивного DNS и связей инфраструктуры.                                         |
| [Censys](https://search.censys.io/)                   | Поисковая система для подключённых к интернету хостов, сертификатов и открытых сервисов.             |
| [crt.sh](https://crt.sh/)                             | Поиск по Certificate Transparency для обнаружения имён, присутствующих в публичных TLS-сертификатах. |
| [Project Sonar](https://sonar.omnisint.io/)           | Общедоступные конечные точки для поиска поддоменов, TLD и обратного DNS.                             |
| [Netcraft SearchDNS](https://searchdns.netcraft.com/) | Общедоступный поиск имён хостов и разведывательных данных 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/ru/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.
