Masscan工具使用

Masscan工具使用

  • 简介
  • 自定义配置文件

简介

masscan 工具扫描速度取决与你实际带宽,默认只扫描tcp,也可以udp;
Website: https://github.com/robertdavidgraham/masscan

自定义配置文件

rate #发包速率,根据自己带宽来计算;
output-format=list #指定扫描文件格式这里以列为输出格式
output-filename=/root/target.txt #保存的文件路径
output-status=open #只保留端口开放信息
posts=80,22,443,U:53 #tips:U代表udp
range=192.168.1.0/24 #扫段
ping=flase 
banner=true #获取端口banner信息

Tips:使用方式:masscan -c masscan.conf 将自定义配置文件命名为masscan.conf运行即可
关于工具参数自行参考 masscan --help
有些东西没讲要学会举一反三

你可能感兴趣的:(渗透)