Token导航 LogoToken导航TokenDH.com
BurpSuite MCP Server logo
安全风控stdio官方级别未说明来源级核验

BurpSuite MCP Server

MCP Server

BurpSuite MCP Server: A powerful Model Context Protocol (MCP) server implementation for BurpSuite, providing programmatic access to Burp's core functionalities.

工具数

0

提示词数

0

GitHub Stars

79

资源数

0
安全漏洞扫描PythonCursorAPI访问Cursor

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

X3r0K

提供方

X3r0K

最后核验

2026/5/18 04:39

运行时

Python

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

pip install -r requirements.txt

详细介绍

🛡️ BurpSuite MCP服务器

BurpSuite的强大模型上下文协议(MCP)服务器实现,提供对Burp核心功能的编程访问。

](https://mseep.ai/app/x3r0k-burpsuite-mcp-server) ![Python](https://www.python.org/downloads/) ![FastAPI](https://fastapi.tiangolo.com/) ![License](LICENSE)

🚀 特性

🔄 代理工具

  • 拦截和修改HTTP/HTTPS流量
  • 查看和操作请求/响应
  • 访问代理历史记录
  • 实时请求/响应操作
# Intercept a request
curl -X POST "http://localhost:8000/proxy/intercept" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com",
    "method": "GET",
    "headers": {"User-Agent": "Custom"},
    "intercept": true
  }'

# View proxy history
curl "http://localhost:8000/proxy/history"

🔍 扫描工具

  • 主动和被动扫描
  • 自定义扫描配置
  • 实时问题跟踪
  • 扫描状态监控
# Start a new scan
curl -X POST "http://localhost:8000/scanner/start" \
  -H "Content-Type: application/json" \
  -d '{
    "target_url": "https://example.com",
    "scan_type": "active",
    "scan_configurations": {
      "scope": "strict",
      "audit_checks": ["xss", "sqli"]
    }
  }'

# Check scan status
curl "http://localhost:8000/scanner/status/scan_1"

# Stop a scan
curl -X DELETE "http://localhost:8000/scanner/stop/scan_1"

📝 记录仪工具

  • 全面的HTTP流量记录
  • 高级过滤和搜索
  • 漏洞检测
  • 流量分析
  • 可疑模式检测
# Get filtered logs
curl "http://localhost:8000/logger/logs?filter[method]=POST&filter[status_code]=200"

# Search logs
curl "http://localhost:8000/logger/logs?search=password"

# Get vulnerability analysis
curl "http://localhost:8000/logger/vulnerabilities"

# Get comprehensive analysis
curl "http://localhost:8000/logger/analysis"

# Clear logs
curl -X DELETE "http://localhost:8000/logger/clear"

curl "http://localhost:8000/logger/vulnerabilities/severity"

🎯 漏洞检测

自动检测多种类型的漏洞:

  • 🔥 XSS(跨站脚本)
  • 💉 SQL注入
  • 🗂️ 路径遍历
  • 📁 文件包含
  • 🌐 服务器端请求伪造
  • 📄 XXE(XML外部实体)
  • 🔒 跨站点请求伪造
  • 🔄 打开重定向
  • ⚡ 命令注入

🛠️ 设置

  1. 克隆存储库
git clone https://github.com/X3r0K/BurpSuite-MCP-Server.git
cd BurpSuite-MCP-Server
  1. 再进行
pip install -r requirements.txt
  1. 配置环境
# Copy .env.example to .env
cp .env.example .env

# Update the values in .env
BURP_API_KEY=Your_API_KEY
BURP_API_HOST=localhost
BURP_API_PORT=1337
BURP_PROXY_HOST=127.0.0.1
BURP_PROXY_PORT=8080
MCP_SERVER_HOST=0.0.0.0
MCP_SERVER_PORT=8000
  1. 启动服务器
python main.py

服务器将于启动http://localhost:8000

📊 分析特征

流量分析

  • 请求总数
  • 唯一URL
  • HTTP方法分发
  • 状态代码分布
  • 内容类型分析
  • 平均响应时间

弱点分析

  • 漏洞类型摘要
  • 最易受攻击的端点
  • 可疑模式
  • 实时漏洞检测

日志筛选

  • 通过HTTP方法
  • 按状态代码
  • 按URL模式
  • 按内容类型
  • 按内容长度
  • 按时间范围
  • 按漏洞类型

🔒 安全考虑

  1. 在安全的环境中运行
  2. 配置适当的身份验证
  3. 在生产环境中使用HTTPS
  4. 确保BurpSuite API密钥的安全
  5. 监控和审核访问权限

📚 API文档

有关API的详细文档,请访问:

  • Swagger用户界面:http://localhost:8000/docs
  • 重新记录:http://localhost:8000/redoc

image

光标集成

MCP服务器已配置为与Cursor IDE无缝协作。这 .cursor 目录包含所有必要的配置文件:

配置文件

  1. settings.json:包含MCP服务器配置

- 服务器主机和端口设置 - 端点配置 - BurpSuite代理设置 - 记录器设置 - Python解释器路径

  1. tasks.json:定义常见任务

- 启动MCP服务器 - 运行漏洞测试 - 检查漏洞

  1. launch.json:包含调试配置

- 调试MCP服务器 - 调试漏洞测试

在游标中使用

  1. 在Cursor中打开项目
  2. MCP服务器配置将自动加载
  3. 通过以下方式访问功能:

- 用于运行任务的命令面板(Ctrl+Shift+P) - 调试会话的调试菜单 - 自动Python解释器配置

服务器将可在以下位置访问 http://localhost:8000 具有以下端点:

  • /proxy/intercept 用于请求拦截
  • /logger 用于日志记录功能
  • /logger/vulnerabilities/severity 用于漏洞分析

image

image

📝 许可证

此项目根据MIT许可证获得许可-请参阅 许可证 文件以获取详细信息。

🙏 致谢

目录标签

目录标签

安全漏洞扫描PythonCursorAPI访问developer-tools网络安全本地部署HTTP代理安全测试

支持客户端

Cursor

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Python

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP