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

Gtfobins MCP

MCP Server

一个作为大型语言模型与本地GTFOBins API之间桥梁的模型上下文协议(MCP)服务器,用于自动化查询可用于绕过配置不当系统中本地安全限制的Unix二进制文件。

工具数

0

提示词数

0

GitHub Stars

0

资源数

0
Python自动化安全

安装说明

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

作者 / 组织

malwaredetective

提供方

malwaredetective

最后核验

2026/5/17 20:19

运行时

Python

快速接入

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

命令预览

python3 -m venv venv

详细介绍

GTFOBins MCP

python MCP Server License: MIT

模型上下文协议(MCP)服务器,充当大型语言模型(LLM)和本地语言模型之间的桥梁 GTFOBins API,允许对Unix二进制文件进行自动查询,这些二进制文件可用于绕过配置错误的系统中的本地安全限制。

此MCP服务器配置为通过STDIO在本地运行。

快速入门指南

1.克隆存储库

git clone https://github.com/malwaredetective/GTFOBins-MCP.git
cd GTFOBins-MCP

2.设置Python虚拟环境

python3 -m venv venv

# Run this command to activate your Python Virtual Environment within Linux/macOS
source venv/bin/activate

# Run this command to activate your Python Virtual Environment within Windows
venv\Scripts\activate

3.安装Python依赖项

pip install -r requirements.txt

4.在首选MCP客户端中配置MCP服务器

  • 安装您首选的MCP客户端。
  • 根据您的MCP客户端,配置 GTFOBins MCP 服务器可能不同。此项目中列出了标准配置 mcp.json 文件。
注意:在Python虚拟环境中执行MCP服务器时,启动命令可能因操作系统而异。

MCP工具

列表_研讨会

返回GTFOBins中找到的所有unix二进制文件的列表。

{
  "type": "object",
  "properties": {}
}

list_binaries \_by_function

列出具有特定功能的所有二进制文件。例如,列出所有具有“suid”功能的二进制文件。

{
  "type": "object",
  "properties": {
    "function_name": {
      "description": "The function name to filter binaries by, e.g., 'suid', 'file-read'.",
      "type": "string"
    }
  },
  "required": [
    "function_name"
  ]
}

list_functions

从GTFOBins返回所有函数及其描述的列表。

{
  "type": "object",
  "properties": {}
}

查询_二进制

按名称从GTFOBins中获取特定unix二进制文件的所有详细信息。

{
  "type": "object",
  "properties": {
    "binary_name": {
      "description": "The name of the binary to query, for example: 'base64' or 'find'.",
      "type": "string"
    }
  },
  "required": [
    "binary_name"
  ]
}

查询函数

按名称从GTFOBins中获取特定函数的描述。

{
  "type": "object",
  "properties": {
    "function_name": {
      "description": "The function name to query, for example: 'file-read', 'suid'.",
      "type": "string"
    }
  },
  "required": [
    "function_name"
  ]
}

许可证

该项目根据 MIT许可证.

您可以根据MIT许可条款自由使用、修改和分发此软件。

目录标签

目录标签

Python自动化安全Unix二进制查询本地部署安全绕过MCP服务器自动化工具本地安全

接入字段

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

stdio

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

none

运行时(runtime,运行环境)

Python

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

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

0

权限和风险

stdionone部署方式未说明

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

安装前确认

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

来源信息

继续浏览同类 MCP