> 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/zh/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/780d26162cb6138e4d42b178d90d7c7221deaf27">/files/780d26162cb6138e4d42b178d90d7c7221deaf27</a></td></tr><tr><td><strong>信息洗衣店</strong></td><td>分析内容复制和站点架构模式，以调查信息洗白。</td><td><a href="https://informationlaundromat.com/">https://informationlaundromat.com/</a></td><td><a href="/files/9d5a498d2f6b297ba8d77c742d1ee24dd63db251">/files/9d5a498d2f6b297ba8d77c742d1ee24dd63db251</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/6987437a0d1d7e8169ae07ca39c0bd9f08d39298">/files/6987437a0d1d7e8169ae07ca39c0bd9f08d39298</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/6d866c6eddb01958e60d059459dc237010f680a3">/files/6d866c6eddb01958e60d059459dc237010f680a3</a></td></tr><tr><td><strong>Pentest-Tools Google Hacking</strong></td><td>用于发现已索引的敏感文件、暴露面板和公开信息的 Google dork 辅助工具。</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/17704ec10c31dcc58e526097cd979a42f72e2409">/files/17704ec10c31dcc58e526097cd979a42f72e2409</a></td></tr><tr><td><strong>Exploit-DB Google Hacking Database</strong></td><td>整理好的 Google dork 数据库，用于查找暴露的文件、面板、备份和其他已索引的工件。</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/9dc16dce52b2ec6f36e85d9620d57c9f1f123d61">/files/9dc16dce52b2ec6f36e85d9620d57c9f1f123d61</a></td></tr><tr><td><strong>DorkSearch</strong></td><td>Google dork 构建器，可快速组合高级搜索查询。</td><td><a href="https://dorksearch.com/">https://dorksearch.com/</a></td><td><a href="/files/8f8494e61dd3be52fb836bf8bee50d24c649eced">/files/8f8494e61dd3be52fb836bf8bee50d24c649eced</a></td></tr></tbody></table>

## 存档 URL

使用 `waybackurls` 用于从 Wayback Machine 收集历史 URL，并保留其抓取日期，以便后续查看参数、端点和文件。

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