【笔记】gotoscan学习笔记

前言

由Go语言实现的一款CMS指纹识别工具。(Github

下载项目

1
2
git clone https://github.com/newbe3three/gotoscan.git
cd gotoscan/cmd/gotoscan

编译项目

1
go build -o gotoscan main.go

根据单个URL链接识别CMS

-cmsjson <file>:指定JSON格式的字典,缺省值为./cms.json

1
./gotoscan -host <url>

根据批量的URL链接识别CMS

1
./gotoscan -hosts <file>

完成