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

Ez Xbow Platform MCP

MCP Server

一个用于AI驱动的渗透测试竞赛的模型上下文协议(MCP)服务器,提供API接口使LLM能够自主参与CTF挑战。

工具数

0

提示词数

0

GitHub Stars

89

资源数

0
渗透测试安全工具Go漏洞检测AI驱动

安装说明

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

作者 / 组织

m-sec-org

提供方

m-sec-org

最后核验

2026/5/17 20:22

快速接入

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

详细介绍

EZ XBow Challenge MCP

A competition for AI driven penetration testingModel Context Protocol (MCP) server This tool provides a complete API interface that enables LLM to autonomously participate in CTF challenges.

Suggestions and kimi-cli-for-xbow Used in conjunction or integrated into your own Agent workflow

feature

  • Challenge Management -List, attempt, and submit solutions for CTF challenges
  • knowledge base -Built in CTF technical documentation covering 9 vulnerability categories
  • Persistent Kali container -Execute security tools (nmap, sqlmap, gobuster, etc.) in an isolated environment
  • Attempt history -Through automatic note management, cross session tracking, and shared discovery
  • Multiple protocols -Supports STDio, SSE, and HTTP/2 streaming modes

Quick Start

Prerequisites

  • Go 1.24.7+
  • Docker supporting buildx

build

go build -o xbow-mcp ./cmd/main.go

Run (test) using a simulation platform

in ./mock-challenges Create corresponding competition question files based on the template.

{
    "challenge_code": "XBEN-123-24",
    "difficulty": "easy",
    "points": 200,
    "target_info": {
        "ip": "192.168.5.37",
        "port": [32820]
    },
    "hint_viewed": false,
    "solved": true,
    "hint_content": "Sometimes the AuthN/AuthZ checks are vulnerable to TOCTOU issues if they are not implemented properly",
    "solution": "flag{xxxx}"
}

startup command

./xbow-mcp --mock  -listen 127.0.0.1:8080

Run on a real platform

./xbow-mcp \
  -xbow-url https://your-xbow-platform.com \
  -xbow-token YOUR_AUTH_TOKEN \
  -mode streamable \
  -listen 127.0.0.1:8080

Available tools

ToolDescription
list_challengesObtain the challenges of the current stage, including difficulty and target information
do_challengeMark the challenge as ongoing and increase the try counter
get_challenge_hintSearch prompt (score deducted)
submit_answerSubmit Flag and receive rating results
get_ctf_skillAccess technical documents (xss, SQL, SSTI, SSRF, IDOR, XXE, LFI, Codei, AFR&PT)
write_challenge_noteSave discovery and attempt records for future reference
read_challenge_noteView historical notes (automatically reset after every 9 attempts)
kail_terminalExecute commands in persistent Kali containers
get_terminal_historyRetrieve command execution results by ID

Command line options

# 服务器模式
-mode, -m [stdio|sse|streamable]       MCP 服务器协议 (默认: streamable)
-listen, -l ADDR:PORT                  监听地址 (默认: 127.0.0.1:8080)

# 平台配置
-xbow-url, -u URL                      XBow API 基础 URL
-xbow-token, -t TOKEN                  认证 Token

# Docker 配置
-docker-container, -c NAME             容器名称 (默认: xbow-kail)
-docker-image, -i IMAGE:TAG            Docker 镜像 (默认: xbow-kail:latest)
-dockerfile-dir, -f PATH               Dockerfile 路径 (默认: ./Dockerfile)
-docker-exec-log-dir, -d DIR           执行日志目录 (默认: ./.kail-history)

# 模拟平台(本地测试)
--mock                                 启用模拟平台服务器
-mock-addr ADDR:PORT                   模拟服务器地址 (默认: 127.0.0.1:8000)
-mock-dir PATH                         模拟挑战目录 (默认: ./mock-challenges)

integration

MCP client

Add to your MCP client configuration:

{
    "mcpServers": {
        "ezmcp": {
            "url": "http://127.0.0.1:8080/mcp"
        }
    }
}

local storage

  • .challenge_history/{challenge_code}/ -Attempt metadata, notes, and history records
  • .kail-history/ -Command Execution Record

ALL

  • Automatically compile and launch XBOW shooting range and configure competition information.

license

Open source. Please refer to the LICENSE document for details.

contribution

Welcome to submit Issue and Pull Requests.

目录标签

目录标签

渗透测试安全工具Go漏洞检测AI驱动本地部署CTF挑战

接入字段

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

未说明

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

token

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

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

0

权限和风险

未说明token部署方式未说明

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

安装前确认

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

仍需确认:installCommand

来源信息

继续浏览同类 MCP