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

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

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

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

工具目录

分类

查看所有分类
Loading categories
py — 飘云ark(pyark) | Kitploit
工具/GitHubGitHub/antiwar3/py
Defensive ToolsMemory ForensicsMalware AnalysisDigital ForensicsIntrusion DetectionIncident Response
GitHubantiwar3/py

py

飘云ark(pyark)

查看仓库
52972512天前Kitploit 审核通过

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
网站
内容在请求的语言中不可用。显示英文版本。

if you find any bugs report it at Github user issues

Still in development

Support win7 to win11(last)

image

MCP 配置 / MCP 使用方法

PYArkClient 内置一个 MCP Streamable HTTP 服务端,任意 MCP 客户端(Claude Code / Claude Desktop / CodePilot 等)都能调用它提供的内核级 ARK 工具(进程 / 线程 / 模块 / 内存 / SSDT / 回调 / 注入 / dump 等)。

1. 前置条件

  • 以 管理员 身份运行 PYArkClient.exe(工具需要驱动连接;未连接时调用工具会返回 driver not connected, restart PYArkClient as admin)。

  • 打开应用内的「AI 对话 / Chat」面板,勾选 「开启MCP接口」 复选框(默认关闭)。勾选后写入 McpConfig.ini 并启动 MCP 服务。

  • 或手动在 exe 同目录写 McpConfig.ini:

    root@kitploit:~
    [MCP]
    Enable=1
    
  • MCP 服务地址:http://127.0.0.1:8765/mcp(JSON-RPC 2.0 · Streamable HTTP)。

2. 客户端配置

Claude Code

root@kitploit:~
claude mcp add --transport http pyark http://127.0.0.1:8765/mcp

启动 Claude Code 前,先以管理员启动 PYArkClient 并勾选「开启MCP接口」。

Claude Desktop(claude_desktop_config.json)

root@kitploit:~
{
  "mcpServers": {
    "pyark": {
      "type": "http",
      "url": "http://127.0.0.1:8765/mcp"
    }
  }
}

其它客户端:新增一个 http(Streamable HTTP)传输的 MCP server,端点填 http://127.0.0.1:8765/mcp。

3. 手动自检

root@kitploit:~
curl -X POST http://127.0.0.1:8765/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'

请求结构:

root@kitploit:~
POST /mcp
{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_processes","arguments":{}}}
  • 成功返回 result.content[0].text,是一个 JSON 字符串。
  • 无 id 的通知类消息返回 HTTP 202。
  • 服务端带 Access-Control-Allow-Origin: *,支持浏览器 / Electron 直接 fetch。

4. 可用工具(部分)

  • 进程:list_processes list_threads list_modules get_process_info get_process_peb kill_process suspend_process resume_process protect_process enum_process_handles enum_process_windows enum_process_privileges enum_process_hotkeys
  • 线程:kill_thread suspend_thread
下载工具
resume_thread
  • 模块:get_image_basic_info get_image_path unload_process_module unload_driver
  • 内存:query_memory enum_memory_regions read_memory write_memory protect_memory enum_process_pml4 / pdpt / pd / pt
  • 内核:enum_ssdt_hooks recover_ssdt enum_shadow_ssdt_hooks enum_idt_hooks enum_callbacks enum_filters enum_minifilters enum_io_timers scan_driver_routines enum_object_types enum_object_hooks
  • 注入 / Dump:dump_process dump_process_module dump_driver_memory bb_inject bb_map_driver