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

# Sitios web e infraestructura

Usa estos recursos para investigar la infraestructura web, los servicios expuestos a Internet, los estados históricos de sitios web, los cambios de páginas y la replicación sospechosa de contenido.

## Herramientas

<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>Shodan</strong></td><td>Motor de búsqueda de dispositivos, servicios, bases de datos, cámaras e infraestructura expuestos a Internet.</td><td><a href="https://www.shodan.io/">https://www.shodan.io/</a></td><td><a href="/files/49b51c4945af5d22f2dc3994b757f0ac1f0df793">/files/49b51c4945af5d22f2dc3994b757f0ac1f0df793</a></td></tr><tr><td><strong>The Information Laundromat</strong></td><td>Analiza patrones de replicación de contenido y de arquitectura de sitios para investigar el lavado de información.</td><td><a href="https://informationlaundromat.com/">https://informationlaundromat.com/</a></td><td><a href="/files/591215a173674aa2cc87fd133ae40b333d6c4324">/files/591215a173674aa2cc87fd133ae40b333d6c4324</a></td></tr><tr><td><strong>Wayback Machine</strong></td><td>Ver y archivar versiones históricas de páginas web a través de Internet Archive.</td><td><a href="https://web.archive.org/">https://web.archive.org/</a></td><td><a href="/files/a86ff03a00268695d0d6a557828ce43c35b841d0">/files/a86ff03a00268695d0d6a557828ce43c35b841d0</a></td></tr><tr><td><strong>Distill.io</strong></td><td>Supervisa páginas web y recibe alertas cuando el contenido cambia.</td><td><a href="https://distill.io/">https://distill.io/</a></td><td><a href="/files/46dbbc88bcd6e763da9fa649bfd4e31e4a50af86">/files/46dbbc88bcd6e763da9fa649bfd4e31e4a50af86</a></td></tr><tr><td><strong>Pentest-Tools Google Hacking</strong></td><td>Ayudante de Google dorking para descubrir archivos sensibles indexados, paneles expuestos e información pública.</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/4bc8bc568ad2574ca2e99805a3eb8c04e37a6f14">/files/4bc8bc568ad2574ca2e99805a3eb8c04e37a6f14</a></td></tr><tr><td><strong>Base de datos de Google Hacking de Exploit-DB</strong></td><td>Base de datos curada de dorks de Google para encontrar archivos expuestos, paneles, copias de seguridad y otros artefactos 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/33035cca1deb06b61234c6a771b301fc6e09b4d5">/files/33035cca1deb06b61234c6a771b301fc6e09b4d5</a></td></tr><tr><td><strong>DorkSearch</strong></td><td>Generador de dorks de Google para componer rápidamente consultas de búsqueda avanzadas.</td><td><a href="https://dorksearch.com/">https://dorksearch.com/</a></td><td><a href="/files/a7e98df8854f21c6a0355e5863cb03c269cc176c">/files/a7e98df8854f21c6a0355e5863cb03c269cc176c</a></td></tr></tbody></table>

## URL archivadas

Utilice `waybackurls` para recopilar URL históricas de la Wayback Machine y conservar sus fechas de captura para su posterior revisión de parámetros, endpoints y archivos.

```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/es/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.
