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

# Sites e Infraestrutura

Use estes recursos para pesquisar infraestrutura web, serviços expostos na internet, estados históricos de sites, alterações de páginas e replicação de conteúdo suspeito.

## Ferramentas

<table data-card-size="large" data-column-title-hidden data-view="cards" data-full-width="false" data-search="false"><thead><tr><th>Nome</th><th>Descrição</th><th>Link oficial</th><th data-hidden data-card-cover data-type="image">Imagem de capa</th></tr></thead><tbody><tr><td><strong>Shodan</strong></td><td>Mecanismo de busca para dispositivos, serviços, bancos de dados, câmeras e infraestrutura exposta conectados à internet.</td><td><a href="https://www.shodan.io/">https://www.shodan.io/</a></td><td><a href="/files/9f1f92e65207b1c5bcbda714754e53ad6b120fef">/files/9f1f92e65207b1c5bcbda714754e53ad6b120fef</a></td></tr><tr><td><strong>The Information Laundromat</strong></td><td>Analise padrões de replicação de conteúdo e arquitetura de sites para investigar lavagem de informação.</td><td><a href="https://informationlaundromat.com/">https://informationlaundromat.com/</a></td><td><a href="/files/fbc83f10dea67b5822138a7db96b9c2d53ad826b">/files/fbc83f10dea67b5822138a7db96b9c2d53ad826b</a></td></tr><tr><td><strong>Wayback Machine</strong></td><td>Visualize e arquive versões históricas de páginas da web por meio do Internet Archive.</td><td><a href="https://web.archive.org/">https://web.archive.org/</a></td><td><a href="/files/3119a6d6f5ddead8d3454ad67cfb6e11664b6329">/files/3119a6d6f5ddead8d3454ad67cfb6e11664b6329</a></td></tr><tr><td><strong>Distill.io</strong></td><td>Monitore páginas da web e receba alertas quando o conteúdo mudar.</td><td><a href="https://distill.io/">https://distill.io/</a></td><td><a href="/files/982a8a2b3ad7551af3214425f3c290df88d57347">/files/982a8a2b3ad7551af3214425f3c290df88d57347</a></td></tr><tr><td><strong>Pentest-Tools Google Hacking</strong></td><td>Ferramenta auxiliar de Google dorking para descobrir arquivos sensíveis indexados, painéis expostos e informações públicas.</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/15bf9a1f53248b94e464fd32fc794cd986564d24">/files/15bf9a1f53248b94e464fd32fc794cd986564d24</a></td></tr><tr><td><strong>Exploit-DB Google Hacking Database</strong></td><td>Banco de dados curado de Google dorks para encontrar arquivos expostos, painéis, backups e outros artefatos indexados.</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/d1f00c116948792e1aa164f18eca4c2c1dedb7ad">/files/d1f00c116948792e1aa164f18eca4c2c1dedb7ad</a></td></tr><tr><td><strong>DorkSearch</strong></td><td>Criador de Google dorks para compor rapidamente consultas de busca avançadas.</td><td><a href="https://dorksearch.com/">https://dorksearch.com/</a></td><td><a href="/files/2574dabe83819c9c7b959ddf4a083263db3a9444">/files/2574dabe83819c9c7b959ddf4a083263db3a9444</a></td></tr></tbody></table>

## URLs arquivadas

Use `waybackurls` para coletar URLs históricas da Wayback Machine e manter suas datas de captura para revisão posterior de parâmetros, endpoints e arquivos.

```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/pt-br/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.
