Install
openclaw skills install @yottameta/yotta-reconopenclaw skills install @yottameta/yotta-recon跨智能体的网络侦察技能:零依赖自研端口 / 服务 / 版本指纹探测,为安全测试与资产盘点提供侦察能力,内建授权纪律(Scope Guard)。
纯 Python 3.8+ 标准库实现,零外部依赖;Windows + Linux + macOS 通用。
Do NOT trigger:
Windows 用 python,Linux/macOS 用 python3。
# 扫描本机回环(默认放行,无需授权)
python3 scripts/yotta_recon.py scan --targets 127.0.0.1 --top 100
# 有授权范围文件(Scope Guard 声明授权)
python3 scripts/yotta_recon.py scan --targets 192.168.1.0/30 --scope scope.txt --yes
# 用户明确声明已获授权
python3 scripts/yotta_recon.py scan --targets <目标> --assume-authorized --yes
# 单端口深度指纹
python3 scripts/yotta_recon.py fingerprint --host 127.0.0.1 --port 80
# 授权预检(AI 先 check 再 scan)
python3 scripts/yotta_recon.py check-scope --targets <目标> --scope scope.txt
# 本机监听端口清单(只读)
python3 scripts/yotta_recon.py local
# JSON 输出 / Markdown 报告
python3 scripts/yotta_recon.py scan --targets 127.0.0.1 --json
python3 scripts/yotta_recon.py scan --targets 127.0.0.1 --report report.md
详细规则见 references/scope-guard.md。
本技能仅用于已获明确授权的目标(自有资产、授权测试、CTF 靶场、教学环境)。 未经授权扫描他人系统违反中国《网络安全法》与《刑法》第 285/286 条,使用者自行承担法律责任。