/lab-arpspoof

ARP Spoofing Lab in Docker

Primary LanguageDockerfile

Labs to demonstrate Network Security.

  1. ArpSpoofing / Poisoning
  2. MITM TBD
  3. ...

It was inspired by the great labs from : https://github.com/docker/labs

Uses tools like

Todo

  • Replace arp by ip neigh

Other tools

Labs

NetKit

Looks like NetKit used to have many labs and teaching material. But they seems to be abandonned? Also the http://www.Kathara.org/ looked promising, but did not work (for me).

NetCat

Playing with Netcat is fun.

  • run nc -l -p 2000 in a busybox box1 and nc $IP_BOX1 2000 in a box2.
  • You could also expose the port 2000 to the host if running Docker with -p 2000:2000/tcp. From the host you can then nc -6 localhost 2000. You can see it is listening with ss -lnt on the host.