Satrap: ARP scanner
This commit is contained in:
parent
e8dde3776f
commit
f980c11566
3 changed files with 153 additions and 2 deletions
6
Makefile
6
Makefile
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue