
你在电影和漫画里听说过时间旅行,对吧?好吧,这不再是虚构的了 😎。TheTimeMachine 通过从 Wayback Machine 抓取存档 URL,让你能够挖掘任何 Web 应用的过去——并帮助你发现敏感、被遗忘或已弃用的端点,以便进一步利用。
无论你是热衷于漏洞赏金、红队行动,还是单纯热爱经典侦察,这个工具都是为了让我自己的侦察工作流更快、更简洁、更高效而构建的。不再需要同时折腾多个脚本——TheTimeMachine 一次搞定。
| 会议 | 年份 | 主题 / 展示 | |
|---|---|---|---|
| Defcon33- Las Vegas, NV | 2025 | 演示实验室 | ![]() |
| BSides Mumbai | 2025 | 工具武器库展示 | ![]() |
| OSINT Conference | 2025 | OSINT 会议 | ![]() |
| Null Bangalore × OWASP Bangalore | 2025 | 月度聚会 | ![]() |
| Bsides Delaware | 2025 | 会议 | ![]() |
| BSides Agra | 2025 | 会议 | ![]() |
| Wild West Hackin' Fest (Denver, Colorado) | 2026 | 会议 | ![]() |
这不只是另一个 Wayback 抓取器。以下是 TheTimeMachine 带来的能力:
.zip、.bak、.sql、.tar.gz、.old 等其他有价值文件。config、backup、.log 等。已在 Ubuntu/Kali/Windows 上的 Python 3 中测试。
git clone https://github.com/anmolksachan/TheTimeMachine
cd TheTimeMachine
pip3 install -r requirements.txt
python3 thetimemachine.py <target.com> [OPTIONS]
注意: 不要在域名中使用 http:// 或 https:// —— 只需传递 domain.com 或 sub.domain.com。
python3 thetimemachine.py example.com --fetch
python3 thetimemachine.py example.com --backups
python3 thetimemachine.py example.com --listings
python3 thetimemachine.py example.com --attack xss
python3 thetimemachine.py example.com --parameters
python3 thetimemachine.py example.com --jwt
usage: thetimemachine.py [-h] [--fetch] [--jwt] [--backups] [--subdomains] [--listings] [--attack {xss,sqli,lfi,redirect,jira,wp,fuzz}] [--menu]
[--parameters]
target
所有结果都会整齐地保存在 content/ 目录下:
content/
└── example.com/
├── example.com_URLs.txt
├── example.com_xss.txt
├── example.com_sqli.txt
├── example.com_parameters.txt
├── example.com_subdomain.txt
└── ...
你可以完全自定义 XSS、SQLi、模糊测试等的 Payload。只需编辑仓库中对应的 .txt 文件,然后开跑!
我并非全职漏洞赏金猎人,但我需要一款工具来进行快速侦察、发现有价值的端点,并给我足够的线索去手动深入挖掘。我已在多个 VDP 和漏洞赏金项目中获得 HOF,包括 NOKIA、Mediatek 等。
https://github.com/user-attachments/assets/e07155ed-52b5-45e4-91aa-297a5caeac3a
私信开放——可以通过 @FR13ND0x7F 联系我
如果这个工具对你有帮助,请在仓库上点个星标,或者在 Twitter 上关注我——这就是我唯一的请求 😄
作者:Anmol K. Sachan | Twitter/X:@FR13ND0x7F
合著者:Chaudhary_S4h4b | Twitter/X:@Chaudhary_S4h4b
3.0 版本正在开发中。如果你发现任何问题,请提交一个 issue,我们很乐意查看并修复。
--menu 功能正在开发中,你可以直接使用 --attack 代替。listings 通过激进模式增强了检测能力。| BSides Budapest (Budapest, Hungary) | 2026 | 会议 | ![]() |
| 即将公布! | 20XX | 即将公布! | ![]() |
| Option | Description |
|---|
--fetch | 从 Wayback 抓取存档 URL |
--backups | 扫描暴露的备份/配置文件 |
--attack [type] | 运行攻击模式(xss、sqli、lfi、redirect、jira、wp、custom) |
--jwt | 检测并解码 JWT 令牌 |
--subdomains | 从历史 URL 中提取子域名 |
--parameters | 提取 GET 参数并将其映射到 URL |
--listings | 检测开放目录列表 |