File tree Expand file tree Collapse file tree 1 file changed +91
-2
lines changed
Expand file tree Collapse file tree 1 file changed +91
-2
lines changed Original file line number Diff line number Diff line change 1- # MCP-SecurityTools
2- MCP-SecurityTools 是一个专注于收录和更新网络安全领域 MCP 的开源项目,旨在汇总、整理和优化各类与 MCP 相关的安全工具、技术及实战经验。
1+ # MCP-SecurityTools 简介
2+
3+ ** MCP-SecurityTools 是一个专注于收录和更新网络安全领域 MCP 的开源项目,旨在汇总、整理和优化各类与 MCP 相关的安全工具、技术及实战经验。**
4+
5+ ## 一:uncover-mcp(使AI具有调用FOFA/SHODAN能力)
6+
7+ ** 项目地址:** https://github.com/Co5mos/uncover-mcp
8+
9+ ### 1.1 编译说明
10+
11+ ```
12+ # 克隆仓库
13+ git clone https://github.com/Co5mos/uncover-mcp
14+ cd uncover-mcp
15+
16+ # 构建项目(需在 Go 1.21 及更高版本中)
17+ go build -o uncover-mcp ./cmd/uncover-mcp
18+ ```
19+
20+ ![ image-20250331145154372] ( https://imges-1255470970.cos.ap-nanjing.myqcloud.com/img/image-20250331145154372.png )
21+
22+ ### 1.2 使用方法
23+
24+ ** 作为MCP服务运行实例:**
25+
26+ ```
27+ {
28+ "mcpServers": {
29+ "uncover-mcp": {
30+ "command": "./uncover-mcp",
31+ "args": [],
32+ "env": {
33+ "SHODAN_API_KEY": "",
34+ "FOFA_EMAIL": "",
35+ "FOFA_KEY": ""
36+ }
37+ }
38+ }
39+ }
40+ ```
41+
42+ ** Cherry Studio中使用**
43+
44+ > Cherry StudioMCP 使用教程详见:https://docs.cherry-ai.com/advanced-basic/mcp
45+
46+ ```
47+ {
48+ "mcpServers": {
49+ "uncover-mcp": {
50+ "name": "uncover-mcp",
51+ "isActive": true,
52+ "command": "You compile the uncover-mcp binary file",
53+ "args": [
54+ "uncover-mcp"
55+ ],
56+ "env": {
57+ "SHODAN_API_KEY": "xxxxxxxxxx",
58+ "FOFA_EMAIL": "xxxxxxxxxx",
59+ "FOFA_KEY": "xxxxxxxxxx"
60+ }
61+ }
62+ }
63+ }
64+ ```
65+
66+ ![ image-20250331145745743] ( https://imges-1255470970.cos.ap-nanjing.myqcloud.com/img/image-20250331145745743.png )
67+
68+ ![ image-20250331150333597] ( https://imges-1255470970.cos.ap-nanjing.myqcloud.com/img/image-20250331150333597.png )
69+
70+ ** cline中使用**
71+
72+ ```
73+ {
74+ "mcpServers": {
75+ "uncover-mcp": {
76+ "command": "You compile the uncover-mcp binary file",
77+ "args": [],
78+ "env": {
79+ "SHODAN_API_KEY": "xxxxxxxxxx",
80+ "FOFA_EMAIL": "xxxxxxxxxx",
81+ "FOFA_KEY": "xxxxxxxxxx"
82+ },
83+ "autoApprove": [
84+ "fofa"
85+ ]
86+ }
87+ }
88+ }
89+ ```
90+
91+ ![ image-20250331151122685] ( https://imges-1255470970.cos.ap-nanjing.myqcloud.com/img/image-20250331151122685.png )
You can’t perform that action at this time.
0 commit comments