Install
openclaw skills install search-viewer整合Fofa、Hunter、Shodan等空间测绘平台API,辅助渗透测试信息收集和资产发现的工具。
openclaw skills install search-viewer信息收集与空间测绘工具
Search Viewer 是一个聚合多个空间测绘平台的信息收集工具,帮助渗透测试人员进行 reconnaissance(侦察)阶段的信息收集。
| 平台 | 说明 | 用途 |
|---|---|---|
| Fofa | 网络空间搜索引擎 | 资产发现 |
| Hunter | 鹰图 | 企业资产查询 |
| Shodan | 物联网搜索引擎 | 设备发现 |
| 360 Quake | 360空间测绘 | 资产发现 |
| Zoomeye | 钟馗之眼 | 网络空间探测 |
git clone https://github.com/adminlove520/Search_Viewer.git
cd Search_Viewer
pip install pyside2 requests
python Search_Viewer.py
首次使用需要配置各平台的 API Key:
# 搜索 title="nginx" 的网站
title="nginx"
# 搜索 banner="nginx"
banner="nginx"
# 搜索端口 80 的主机
port=80
# 组合查询
domain="example.com" && port=443
# 搜索 nginx
nginx
# 搜索特定国家
country:CN
# 搜索特定端口
port:22
# 组合
nginx country:CN
# 搜索域名
domain="example.com"
# 搜索 ip
ip="1.1.1.1"
| 阶段 | 使用平台 | 目的 |
|---|---|---|
| 信息收集 | Fofa/Zoomeye | 发现目标资产 |
| 子域名枚举 | Hunter/Shodan | 扩大攻击面 |
| 端口扫描 | Quake | 发现开放服务 |
| 指纹识别 | 全平台 | 识别技术栈 |
| 用途 | 说明 |
|---|---|
| 漏洞发现 | 通过空间测绘发现暴露资产 |
| 趋势分析 | 分析特定技术的全球分布 |
| 应急响应 | 快速定位受影响资产 |
# Fofa: 查找目标域名相关的所有资产
domain="目标域名"
# Hunter: 企业资产查询
company="目标公司"
# Fofa: 查找暴露的数据库
app="mysql" && port=3306
# Shodan: 查找暴露的 Redis
redis untagged
# Shodan: 查找 SSH
port:22 has_ssh:true
# Fofa: 查找 FTP
ftp anon=Yes