SiJiDo / H

H是一款强大的资产收集管理平台
845 stars 169 forks source link

naabu.by中调用nmap 识别指纹不准确问题 #21

Open 0a52730597fb4ffa01fc117d9e71e3a9 opened 2 years ago

0a52730597fb4ffa01fc117d9e71e3a9 commented 2 years ago

@SiJiDo naabu_nmap_cmd = 'nmap -sT -Pn -T4 -oX {}'.format(nmap_file) nmap这种方式识别出来的端口服务非常不准确,建议修改为 naabu_nmap_cmd = 'nmap -sV --version-all -n -Pn -T4 -oX {}'.format(nmap_file)

SiJiDo commented 2 years ago

好的,谢谢建议

0a52730597fb4ffa01fc117d9e71e3a9 commented 2 years ago

@SiJiDo 大佬,请问我在自定义poc的github地址后,好像并没有加载nuclei的自定义漏洞啊?

0a52730597fb4ffa01fc117d9e71e3a9 commented 2 years ago

@SiJiDo 我这边临时解决方案,把自己想加的POC扔到/root/nuclei-templates下面

部署多台主机 docker-compose up -d --scale worker=5 --no-recreate 建立映射 /root/nuclei-templates ` version: '3' services: worker: build: client/. volumes:

networks: H_network: driver: bridge `