Satrap: ARP scanner

This commit is contained in:
Dimitri Lozeve 2016-06-04 10:08:57 +02:00
parent e8dde3776f
commit f980c11566
3 changed files with 153 additions and 2 deletions

View file

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