> 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/osint/websites-and-infrastructure.md).

# Веб-сайты и инфраструктура

Используйте эти ресурсы для исследования веб-инфраструктуры, сервисов, доступных из интернета, исторических состояний веб-сайтов, изменений страниц и подозрительного копирования контента.

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

<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>Shodan</strong></td><td>Поисковая система для устройств, сервисов, баз данных, камер и открытой инфраструктуры, подключённых к интернету.</td><td><a href="https://www.shodan.io/">https://www.shodan.io/</a></td><td><a href="/files/1cbe5c7d3aac48a22fcad55e6a23acbe844bf3b3">/files/1cbe5c7d3aac48a22fcad55e6a23acbe844bf3b3</a></td></tr><tr><td><strong>The Information Laundromat</strong></td><td>Анализируйте копирование контента и шаблоны архитектуры сайтов, чтобы исследовать отмывание информации.</td><td><a href="https://informationlaundromat.com/">https://informationlaundromat.com/</a></td><td><a href="/files/9da308862a5d4295ae3ac72186aa1a76fb8791d6">/files/9da308862a5d4295ae3ac72186aa1a76fb8791d6</a></td></tr><tr><td><strong>Wayback Machine</strong></td><td>Просматривайте и архивируйте исторические версии веб-страниц через Internet Archive.</td><td><a href="https://web.archive.org/">https://web.archive.org/</a></td><td><a href="/files/2982354595e3a5372133d8c024753bf3704b2bfb">/files/2982354595e3a5372133d8c024753bf3704b2bfb</a></td></tr><tr><td><strong>Distill.io</strong></td><td>Отслеживайте веб-страницы и получайте уведомления при изменении контента.</td><td><a href="https://distill.io/">https://distill.io/</a></td><td><a href="/files/0c630e2e9330f40eb1475a41df88000f7acb9f96">/files/0c630e2e9330f40eb1475a41df88000f7acb9f96</a></td></tr><tr><td><strong>Pentest-Tools Google Hacking</strong></td><td>Помощник по Google dorking для поиска проиндексированных конфиденциальных файлов, открытых панелей и общедоступной информации.</td><td><a href="https://pentest-tools.com/information-gathering/google-hacking">https://pentest-tools.com/information-gathering/google-hacking</a></td><td><a href="/files/5796f8ec1224a4bd215f0b5b4a69575ecedafff8">/files/5796f8ec1224a4bd215f0b5b4a69575ecedafff8</a></td></tr><tr><td><strong>Exploit-DB Google Hacking Database</strong></td><td>Подборка Google dorks для поиска открытых файлов, панелей, резервных копий и других проиндексированных артефактов.</td><td><a href="https://www.exploit-db.com/google-hacking-database">https://www.exploit-db.com/google-hacking-database</a></td><td><a href="/files/5c692fc24eeee3e0edf7808bbf91e8b5a38c0ade">/files/5c692fc24eeee3e0edf7808bbf91e8b5a38c0ade</a></td></tr><tr><td><strong>DorkSearch</strong></td><td>Конструктор Google dorks для быстрого составления продвинутых поисковых запросов.</td><td><a href="https://dorksearch.com/">https://dorksearch.com/</a></td><td><a href="/files/6191714c9504c45bdd709b53fe44a3de1b5fa15d">/files/6191714c9504c45bdd709b53fe44a3de1b5fa15d</a></td></tr></tbody></table>

## Архивированные URL

Используйте `waybackurls` для сбора исторических URL из Wayback Machine и сохранения дат их захвата для последующего анализа параметров, конечных точек и файлов.

```bash
export TARGET="target.com"
waybackurls -dates "https://${TARGET}" > waybackurls.txt
```


---

# 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/osint/websites-and-infrastructure.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.
