ARP scan: get relevant network info

This commit is contained in:
Dimitri Lozeve 2016-05-26 22:51:09 +02:00
parent d1db809cdf
commit 88dfa6328d
3 changed files with 148 additions and 1 deletions

View file

@ -3,7 +3,7 @@ CFLAGS=-g -Wall
.PHONY: clean all
all: simple_request arp_spoof arp_mitm
all: simple_request arp_spoof arp_mitm arp_scan
simple_request: simple_request.o arp.o
@ -11,6 +11,8 @@ arp_spoof: arp_spoof.o arp.o
arp_mitm: arp_mitm.o arp.o
arp_scan: arp_scan.o arp.o
%.o: %.c %.h
$(CC) -c $< $(CFLAGS)