ARP man-in-the-middle attack

This commit is contained in:
Dimitri Lozeve 2016-05-26 13:27:18 +02:00
parent 2b9cf6ed60
commit 64b99fc6d0
3 changed files with 137 additions and 2 deletions

View file

@ -3,14 +3,16 @@ CFLAGS=-g -Wall
.PHONY: clean all
all: simple_request arp_spoof
all: simple_request arp_spoof arp_mitm
simple_request: simple_request.o arp.o
arp_spoof: arp_spoof.o arp.o
arp_mitm: arp_mitm.o arp.o
%.o: %.c %.h
$(CC) -c $< $(CFLAGS)
clean:
rm *.o simple_request arp_spoof
rm *.o simple_request arp_spoof arp_mitm