Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
autossrf — 基于智能上下文的SSRF漏洞扫描器。 | Kitploit
工具/GitHubGitHub/th0h0/autossrf
漏洞扫描器信息收集Web安全模糊测试
GitHubth0h0/autossrf

autossrf

基于智能上下文的SSRF漏洞扫描器。

查看仓库
364434年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

摘要

autoSSRF 是你在大规模识别 SSRF 漏洞时的最佳盟友。与其他 SSRF 自动化工具不同,本工具具备以下两项独创功能:

  • 针对相关 SSRF GET 参数的智能模糊测试

    进行模糊测试时,autoSSRF 只关注与 SSRF 相关的常见参数(?url=、?uri= 等),不会干扰其他参数。这确保原始 URL 仍能被目标 Web 应用正确解析,而盲目喷洒查询参数的工具可能无法做到这一点。

  • 基于上下文的动态载荷生成

    对于 URL:https://host.com/?fileURL=https://authorizedhost.com,autoSSRF 会将 authorizedhost.com 识别为 Web 应用可能的白名单主机,并基于此动态生成载荷,尝试绕过白名单验证。
    从而产生诸如 http://authorizedhost.attacker.com、http://authorizedhost%[email protected] 等有趣的载荷。

此外,该工具几乎保证无误报。检测基于 ProjectDiscovery 优秀的 interactsh,使 autoSSRF 能够自信地识别带外 DNS/HTTP 交互。


用法

root@kitploit:~
python3 autossrf.py -h

显示工具的帮助信息。

root@kitploit:~
usage: autossrf.py [-h] [--file FILE] [--url URL] [--output] [--verbose]

options:
  -h, --help            show this help  message and exit
  --file FILE, -f FILE  file of all URLs to be tested against SSRF
  --url URL, -u URL     url to be tested against SSRF
  --output, -o          output file path
  --verbose, -v         activate verbose mode

单个 URL 目标:

root@kitploit:~
python3 autossrf.py -u https://www.host.com/?param1=X&param2=Y&param2=Z

多个 URL 目标(带详细信息输出):

root@kitploit:~
python3 autossrf.py -f urls.txt -v

安装

1 - 克隆

root@kitploit:~
git clone https://github.com/Th0h0/autossrf.git

2 - 安装依赖

Python 库:

root@kitploit:~
cd autossrf 
pip install -r requirements.txt

Interactsh-Client:

root@kitploit:~
go install -v github.com/projectdiscovery/interactsh/cmd/interactsh-client@latest

许可证

autoSSRF 采用 MIT 许可证 分发。

下载工具