veo / vscan

开源、轻量、快速、跨平台 的网站漏洞扫描工具,帮助您快速检测网站安全隐患。功能 端口扫描(port scan) 指纹识别(fingerprint) 漏洞检测(nday check) 智能爆破 (admin brute) 敏感文件扫描(file fuzz)
https://veo.pub/2021/vscan/
BSD 3-Clause "New" or "Revised" License
1.43k stars 240 forks source link

指纹识别小优化 #26

Closed yhy0 closed 2 years ago

yhy0 commented 2 years ago

pkg/fingerprint/matchfinger.go 中的 iskeyword 函数 应该改为不区分大小写检测比较好 strings.Contains(strings.ToLower(str), strings.ToLower(k))

emobile 指纹都没有识别到,原因就是 window.apiPrifix 与指纹 window.apiprifix 没有匹配到

veo commented 2 years ago

pkg/fingerprint/matchfinger.go 中的 iskeyword 函数 应该改为不区分大小写检测比较好 strings.Contains(strings.ToLower(str), strings.ToLower(k))

emobile 指纹都没有识别到,原因就是 window.apiPrifix 与指纹 window.apiprifix 没有匹配到

感谢提交建议,我马上解决这个问题