forked from RoliSoft/Obfuscation-Tunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdns_mocker.cpp
449 lines (369 loc) · 14 KB
/
dns_mocker.cpp
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
#pragma once
#include "shared.cpp"
#include "mocker_base.cpp"
#include "udp_server.cpp"
#include "udp_client.cpp"
#include "tcp_server.cpp"
#include "tcp_client.cpp"
struct dns_packet_header
{
unsigned short transaction_id;
unsigned short flags;
unsigned short questions;
unsigned short answer_rrs;
unsigned short authority_rrs;
unsigned short additional_rrs;
// beginning of query 1
unsigned char length;
// beginning of data forced as domain name
} __attribute__((packed));
struct dns_packet_footer
{
unsigned char terminator;
unsigned short type;
unsigned short q_class;
// end of query 1
} __attribute__((packed));
struct dns_packet_answer_footer
{
struct dns_packet_footer question;
// beginning of answer 1
unsigned short name_ref;
unsigned short type;
unsigned short q_class;
unsigned int ttl;
unsigned short data_length;
// end of answer 1
} __attribute__((packed));
class dns_mocker : virtual public mocker_base
{
private:
struct dns_packet_header header;
struct dns_packet_footer footer;
struct dns_packet_answer_footer answer_footer;
public:
bool fragment;
char* domain;
int domain_len = 0;
char last_domain[MTU_SIZE];
int last_domain_len = 0;
dns_mocker(bool server, bool fragment, char *domain)
: mocker_base(server, false, true), fragment(fragment), domain(domain)
{
memset(&this->header, 0, sizeof(this->header));
this->header.transaction_id = htons(0x1337);
this->header.flags = server ? htons(0x8180) : htons(0x0100); // server ? answer : question
this->header.questions = htons(0x0001);
memset(&this->footer, 0, sizeof(this->footer));
this->footer.type = this->fragment ? htons(0x0010) : htons(0x0001); // fragment ? type TXT : type A
this->footer.q_class = htons(0x0001);
memset(&this->answer_footer, 0, sizeof(this->answer_footer));
this->answer_footer.question = this->footer;
this->answer_footer.name_ref = htons(0xc00c); // 0xc00c references the 12th byte in the header which is this->header.length
this->answer_footer.type = this->fragment ? htons(0x0010) : htons(0x0001);
this->answer_footer.q_class = htons(0x0001);
this->answer_footer.ttl = htonl(0x0000012c); // 5 mins
if (domain != nullptr && domain[0] != 0)
{
this->domain_len = strlen(domain) + 1;
this->domain = (char*)malloc(this->domain_len);
memcpy(this->domain + 1, domain, this->domain_len);
this->domain[0] = '.';
if (this->domain[this->domain_len - 1] == '.') this->domain_len--;
int i = 0, last = 0;
for (; i < this->domain_len; i++)
{
if (this->domain[i] != '.' || i == 0) continue;
this->domain[last] = i - last - 1;
last = i;
}
this->domain[last] = i - last - 1;
}
printf("Encapsulating packets into DNS %s.\n", this->server ? "replies" : "queries");
if (this->fragment)
{
printf("Encoding and fragmenting DNS labels for compatibility with binary data.\n");
}
if (this->domain_len != 0)
{
printf("Acting as authoritative resolver for domain %s.\n", domain);
}
}
dns_mocker(struct session* session)
: dns_mocker(strcmp(session->mocker, "dns_server") == 0, session->fragment, session->domain)
{
}
static int base32_decode(const uint8_t *encoded, uint8_t *result, int buf_size, int boundary)
{
int buffer = 0;
int bitsLeft = 0;
int count = 0;
for (int i = 0, fragment = 0; count < buf_size && encoded[i]; i++, fragment++)
{
if (fragment != 0 && fragment % boundary == 0)
{
fragment = -1;
continue;
}
uint8_t ch = encoded[i];
if (ch == ' ' || ch == '\t' || ch == '\r' || ch == '\n' || ch == '-')
{
continue;
}
buffer <<= 5;
if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z')) {
ch = (ch & 0x1F) - 1;
} else if (ch >= '2' && ch <= '7') {
ch -= '2' - 26;
} else {
fprintf(stderr, "Invalid character at position %d 0x%02hhx in base-32 string.\n", i, ch);
return -1;
}
buffer |= ch;
bitsLeft += 5;
if (bitsLeft >= 8)
{
result[count++] = buffer >> (bitsLeft - 8);
bitsLeft -= 8;
}
}
if (count < buf_size) {
result[count] = '\000';
}
return count;
}
static int base32_encode(const uint8_t *data, int length, uint8_t *result, int buf_size, int boundary)
{
int count = 0;
int lastFlag = -1;
int flagCount = 0;
if (length > 0)
{
int buffer = data[0];
int next = 1;
int bitsLeft = 8;
while (count < buf_size && (bitsLeft > 0 || next < length))
{
if (bitsLeft < 5)
{
if (next < length)
{
buffer <<= 8;
buffer |= data[next++] & 0xFF;
bitsLeft += 8;
}
else
{
int pad = 5 - bitsLeft;
buffer <<= pad;
bitsLeft += pad;
}
}
int index = 0x1F & (buffer >> (bitsLeft - 5));
bitsLeft -= 5;
result[count++] = "abcdefghijklmnopqrstuvwxyz234567"[index];
if ((count - flagCount) % boundary == 0)
{
flagCount++;
lastFlag = count;
result[count++] = boundary;
}
}
}
if (lastFlag != -1)
{
result[lastFlag] = count - lastFlag - 1;
}
if (count < buf_size)
{
result[count] = '\000';
}
return count;
}
virtual int setup(transport_base *local, transport_base *remote)
{
if (this->server)
{
tcp_server* tcp = dynamic_cast<tcp_server*>(local);
if (tcp != nullptr)
{
printf("Overriding TCP transport settings to match length encoding of DNS packets.\n");
tcp->encoding = LENGTH_16BIT;
return EXIT_SUCCESS;
}
udp_server* udp = dynamic_cast<udp_server*>(local);
if (udp == nullptr)
{
printf("The dns_server module requires UDP or TCP local to function properly.\n");
return EXIT_SUCCESS;
}
return EXIT_SUCCESS;
}
else
{
tcp_client* tcp = dynamic_cast<tcp_client*>(remote);
if (tcp != nullptr)
{
printf("Overriding TCP transport settings to match length encoding of DNS packets.\n");
tcp->encoding = LENGTH_16BIT;
return EXIT_SUCCESS;
}
udp_client* udp = dynamic_cast<udp_client*>(remote);
if (udp == nullptr)
{
printf("The dns_client module requires UDP or TCP remote to function properly.\n");
return EXIT_SUCCESS;
}
return EXIT_SUCCESS;
}
}
static inline int _encapsulate_fake(char* message, int length, int* offset, struct dns_packet_header *header, struct dns_packet_footer *footer)
{
header->length = (unsigned char)min(length, UCHAR_MAX);
return _encapsulate(message, length, offset, (char*)header, sizeof(*header), (char*)footer, sizeof(*footer));
}
static inline int _decapsulate_fake(char* message, int length, int* offset, int header_size, int footer_size)
{
return _decapsulate(message, length, offset, header_size, footer_size);
}
virtual int _encapsulate_real_req(char* message, int length, int* offset)
{
// client -> server
// questions 1 answers 0 question [message]
this->header.questions = htons(0x0001);
this->header.answer_rrs = 0;
char processed[MTU_SIZE * 2];
int blen = base32_encode((const unsigned char*)message + *offset, length, (unsigned char*)&processed, sizeof(processed), 60);
memcpy(message + *offset, &processed, blen);
length = blen;
this->header.length = (unsigned char)min(length, 60);
if (this->domain_len != 0)
{
length = _encapsulate(message, length, offset, nullptr, 0, this->domain, this->domain_len);
}
return _encapsulate(message, length, offset, (char*)&this->header, sizeof(this->header), (char*)&this->footer, sizeof(this->footer));
}
virtual int _encapsulate_real_resp(char* message, int length, int* offset)
{
// server -> client
// questions 1 answers 1 question [last_domain] answer [message]
this->header.questions = htons(0x0001);
this->header.answer_rrs = htons(0x0001);
this->header.length = 0; // last_domain[0] already has it
char processed[MTU_SIZE * 2];
int blen = base32_encode((const unsigned char*)message + *offset, length, (unsigned char*)&processed + 1, sizeof(processed) - 1, 0xff);
*(unsigned char*)&processed = (unsigned char)(length > 0xff ? 0xff : blen);
memcpy(message + *offset, &processed, blen + 1);
length = blen + 1;
this->answer_footer.data_length = ntohs(length);
// answer + base32
length = _encapsulate(message, length, offset, (char*)&this->answer_footer, sizeof(this->answer_footer), nullptr, 0);
// last_domain + answer + base32
if (this->domain_len != 0)
{
length = _encapsulate(message, length, offset, (char*)&this->last_domain, this->last_domain_len - 1, nullptr, 0);
}
// header(question) + last_domain + answer + base32
length = _encapsulate(message, length, offset, (char*)&this->header, sizeof(this->header) - 1, nullptr, 0);
return length;
}
virtual int _decapsulate_real_req(char* message, int length, int* offset)
{
length = _decapsulate(message, length, offset, sizeof(this->header), 0);
if (this->domain_len != 0)
{
char *pos = (char*)memmem(message + *offset, length, this->domain, this->domain_len);
if (pos == nullptr)
{
fprintf(stderr, "Domain not found in DNS response, abandoning.\n");
return -1;
}
int diff = -(message + *offset - pos) + this->domain_len;
length -= diff;
*offset += diff;
}
char *answer = (char*)memmem(message + *offset, length, &this->answer_footer.name_ref, sizeof(unsigned short) * 3);
if (answer == nullptr)
{
fprintf(stderr, "TXT section not found in DNS response, abandoning.\n");
return -1;
}
int diff = -(message + *offset - answer);
int skip_txt = sizeof(unsigned short) * 6 + 1;
answer[length - diff] = 0;
char processed[MTU_SIZE * 2];
int blen = base32_decode((const unsigned char*)answer + skip_txt, (unsigned char*)&processed, sizeof(processed), 0xff);
if (blen < 1)
{
fprintf(stderr, "Failed to decode base32-encoded DNS payload.\n");
return blen;
}
memcpy(message + *offset, &processed, blen);
length = blen;
return length;
}
virtual int _decapsulate_real_resp(char* message, int length, int* offset)
{
this->header.transaction_id = ((unsigned short*)(message + *offset))[0];
length = _decapsulate(message, length, offset, sizeof(this->header), this->domain_len != 0 ? 0 : sizeof(this->footer));
if (this->domain_len != 0)
{
char *pos = (char*)memmem(message + *offset, length, this->domain, this->domain_len);
if (pos == nullptr)
{
fprintf(stderr, "Domain not found in DNS query, abandoning.\n");
return -1;
}
length = -(message + *offset - pos);
memcpy(&this->last_domain, message + *offset - 1, length + 1 + this->domain_len + 1);
this->last_domain_len = length + 1 + this->domain_len + 1;
*(message + *offset + length) = 0;
}
char processed[MTU_SIZE * 2];
int blen = base32_decode((const unsigned char*)message + *offset, (unsigned char*)&processed, sizeof(processed), 60);
if (blen < 1)
{
fprintf(stderr, "Failed to decode base32-encoded DNS payload.\n");
return blen;
}
memcpy(message + *offset, &processed, blen);
length = blen;
return length;
}
virtual int encapsulate(char* message, int length, int* offset)
{
if (!this->fragment)
{
return _encapsulate_fake(message, length, offset, &this->header, &this->footer);
}
else
{
if (this->server)
{
return _encapsulate_real_resp(message, length, offset);
}
else
{
return _encapsulate_real_req(message, length, offset);
}
}
}
virtual int decapsulate(char* message, int length, int* offset)
{
if (!this->fragment)
{
return _decapsulate_fake(message, length, offset, sizeof(this->header), sizeof(this->footer));
}
else
{
if (this->server)
{
return _decapsulate_real_resp(message, length, offset);
}
else
{
return _decapsulate_real_req(message, length, offset);
}
}
}
};