
Gogo Scan
- 23 installs
- 1.6k repo stars
- Updated July 19, 2026
- wgpsec/aboutsecurity
Helps with ai & agent building tasks during AI-assisted development.
About
gogo-scan is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- gogo-scan
- AI & Agent Building
- AI-coding skill
Gogo Scan by the numbers
- 23 all-time installs (skills.sh)
- +2 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #10,008 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/wgpsec/aboutsecurity --skill gogo-scanAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 23 |
|---|---|
| repo stars | ★ 1.6k |
| Last updated | July 19, 2026 |
| Repository | wgpsec/aboutsecurity ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
gogo 高速端口扫描与指纹识别
gogo 的核心优势是指纹精度——内置 2000+ 指纹规则,能精确识别 Web 框架、中间件版本、CMS 类型,输出结构化 JSON 便于后续处理。
项目地址:https://github.com/chainreactors/gogo
基本用法
# 扫描单个目标
gogo -i 10.0.0.1
# 扫描网段
gogo -i 10.0.0.0/24
# 扫描指定端口
gogo -i 10.0.0.0/24 -p 80,443,8080,8443
# 扫描 Top1000 端口
gogo -i 10.0.0.0/24 -p top1000
# 从文件读取目标
gogo -l targets.txt输出控制
# JSON 输出(便于后续处理)
gogo -i 10.0.0.0/24 -o result.json -f json
# 只输出存活 + 有指纹的
gogo -i 10.0.0.0/24 --filter
# CSV 输出
gogo -i 10.0.0.0/24 -o result.csv -f csv高级扫描
# 调整并发(默认 500,内网可加大)
gogo -i 10.0.0.0/16 -t 2000
# 启用版本探测(更精确但更慢)
gogo -i 10.0.0.1 -p top1000 -v
# 指定超时(毫秒)
gogo -i 10.0.0.0/24 --timeout 3000
# 排除端口
gogo -i 10.0.0.0/24 --exclude-port 22,80与其他工具联动
# gogo 发现服务 → nuclei 扫描漏洞
gogo -i 10.0.0.0/24 -p top1000 -o result.json -f json
cat result.json | jq -r '.[] | select(.port==80 or .port==443 or .port==8080) | .uri' | nuclei -t ~/nuclei-templates/
# gogo 发现服务 → httpx 探测
gogo -i 10.0.0.0/24 -o result.json -f json
cat result.json | jq -r '.uri' | httpx -silent决策树
需要扫描什么?
├─ 快速看网段存活 + 弱口令 + POC → fscan
├─ 精确指纹识别(Web 框架/CMS/中间件版本)→ gogo
├─ 大规模端口扫描(SYN/全端口)→ naabu 或 nmap
└─ 子域名资产 → subfinder + httpxRelated skills
AI & Agent Buildingagents