Multithreaded call to redirect_traffic
This commit is contained in:
parent
bf9ad1a030
commit
a46a804df4
3 changed files with 17 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -1,5 +1,6 @@
|
|||
CC=clang
|
||||
CFLAGS=-g -Wall -DDEBUG
|
||||
CFLAGS=-g -Wall
|
||||
LDFLAGS=-lpthread
|
||||
|
||||
.PHONY: clean all
|
||||
|
||||
|
|
1
arp.h
1
arp.h
|
@ -7,6 +7,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <pthread.h>
|
||||
|
||||
#include <arpa/inet.h>
|
||||
#include <sys/socket.h>
|
||||
|
|
14
arp_mitm.c
14
arp_mitm.c
|
@ -161,6 +161,20 @@ int main(int argc, char **argv)
|
|||
macaddr2[0],macaddr2[1],macaddr2[2],
|
||||
macaddr2[3],macaddr2[4],macaddr2[5]);
|
||||
|
||||
|
||||
struct args args;
|
||||
memcpy(args.macaddr1, macaddr1, sizeof(*macaddr1));
|
||||
memcpy(args.macaddr2, macaddr2, sizeof(*macaddr2));
|
||||
memcpy(&args.ip_addr1, ipaddr1, sizeof(*ipaddr1));
|
||||
memcpy(&args.ip_addr2, ipaddr2, sizeof(*ipaddr2));
|
||||
|
||||
pthread_t thread;
|
||||
if (pthread_create(&thread, NULL, redirect_traffic, (void *)&args)) {
|
||||
perror("[FAIL] pthread_create()");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
|
||||
/* We send ARP requests and replies to both targets, impersonating
|
||||
the other. We use both requests and replies because some devices
|
||||
(linux > 2.4.x for example) don't update their ARP cache on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue