This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wcs2_cli.c
245 lines (204 loc) · 5.05 KB
/
wcs2_cli.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
#include <stdio.h>
#include <pcap.h>
#include <unistd.h>
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#ifdef WINVER
#include <winsock.h>
#else
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
typedef unsigned char u_char;
typedef unsigned char byte;
typedef unsigned int ip_t;
typedef unsigned short port_t;
typedef struct
{
byte seg[6];
} mac_t;
typedef struct
{
mac_t dstmac;
mac_t srcmac;
unsigned short type;
} etherheader;
typedef struct
{
byte header_len;
byte diff_serv_field;
unsigned short len;
unsigned short ident;
byte flags;
byte fragoffset;
byte ttl;
byte protocol;
unsigned short checksum;
unsigned int srcip;
unsigned int dstip;
} ipheader;
typedef struct
{
port_t srcport;
port_t dstport;
unsigned int seqnum;
unsigned int unused;
byte header_len;
byte flags;
unsigned short window_size;
unsigned short checksum;
byte options[8];
} tcpheader;
typedef struct
{
port_t srcport;
port_t dstport;
unsigned short len;
unsigned short checksum;
} udpheader;
typedef struct
{
ip_t srcip;
ip_t dstip;
byte reserved;
byte ptcl;
unsigned short tcpl;
} psdipheader;
unsigned short checksum(unsigned short *buffer, int size)
{
unsigned long cksum=0;
while(size > 1)
{
cksum += *buffer++;
size -=sizeof(unsigned short);
}
if (size)
cksum += *(unsigned char *)buffer;
cksum = (cksum >> 16) + (cksum & 0xffff);
cksum += (cksum >>16);
return (unsigned short)(~cksum);
}
int open_udp()
{
int s;
s = socket(AF_INET, SOCK_DGRAM, 0);
if (s == -1) {
perror("socket");
exit(1);
}
return s;
}
int main(int argc, char *argv[])
{
if (argc != 5)
{
printf("Usage: %s INTERFACE CLIENT_IP SERVER_IP SERVER_PORT\n", argv[0]);
printf("CLIENT_IP can be \"auto\" if you have a public IP address on the interface.\n");
pcap_if_t *alldevs;
char errbuf[PCAP_ERRBUF_SIZE];
pcap_findalldevs(&alldevs, errbuf);
pcap_if_t *d;
if (!alldevs)
{
printf("Cannot find any interfaces; are you root?\n");
exit(1);
}
for(d=alldevs; d; d=d->next)
{
printf("%s", d->name);
if (d->description)
printf(" (%s)\n", d->description);
else
printf(" (No description available)\n");
}
exit(1);
}
#ifdef WINVER
WSADATA wsaData;
WSAStartup(MAKEWORD(2,0), &wsaData);
#endif
int sr = open_udp();
pcap_t *ph = pcap_open_live(argv[1], 8192, 0, 1, NULL);
if (ph == NULL)
{
printf("pcap_open_live %s failed\n", argv[1]);
exit(1);
}
struct pcap_pkthdr *header;
u_char *pkt_data;
for (;;)
{
int res = pcap_next_ex(ph, &header, (const u_char **) &pkt_data);
if (res==1)
{
etherheader *ethh = (etherheader *) pkt_data;
int p = 0;
// cout << "type: " << ethh->type << endl;
if (ethh->type == 0x0008) // ip
{
p += sizeof(etherheader);
ipheader *iph = (ipheader *) (pkt_data + p);
if (iph->ttl <= 10)
{
printf("forward packet, size = %d\n", header->len - sizeof(etherheader));
switch (iph->protocol)
{
case 0x06: // tcp
case 0x11: // udp
p += sizeof(ipheader);
tcpheader *tcph;
udpheader *udph;
tcph = (tcpheader *) (pkt_data + p);
udph = (udpheader *) (pkt_data + p);
if (strcmp(argv[2], "auto") != 0)
iph->srcip = inet_addr(argv[2]);
iph->ttl = 64;
psdipheader psdiph;
psdiph.dstip = iph->dstip;
psdiph.srcip = iph->srcip;
psdiph.reserved = 0;
psdiph.ptcl = iph->protocol;
byte pseudoheader[8192];
if (iph->protocol == 0x06) // tcp
{
tcph->checksum = 0;
psdiph.tcpl = htons(htons(iph->len) - sizeof(ipheader));
memcpy(pseudoheader, &psdiph, sizeof(psdiph));
memcpy(pseudoheader+sizeof(psdiph), tcph, htons(iph->len)-sizeof(ipheader));
/*
cout << "dumping pseudoheader:";
for (int i=0;i<header->len - p + sizeof(psdiph);i++)
cout << hex << setw(2) << setfill('0') << (int) pseudoheader[i] << ' ';
*/
tcph->checksum = checksum((unsigned short *) pseudoheader, sizeof(psdiph)+htons(iph->len)-sizeof(ipheader));
//tcph->checksum -= htons(tcph->flags);
}
else
{
udph->checksum = 0;
psdiph.tcpl = htons(htons(iph->len) - sizeof(ipheader));
memcpy(pseudoheader, &psdiph, sizeof(psdiph));
memcpy(pseudoheader+sizeof(psdiph), udph, htons(iph->len)-sizeof(ipheader));
udph->checksum = checksum((unsigned short *) pseudoheader, sizeof(psdiph)+htons(iph->len)-sizeof(ipheader));
}
iph->checksum = 0;
iph->checksum = checksum((unsigned short *) iph, sizeof(ipheader));
// pcap_sendpacket(ph, pkt_data, header->len);
struct sockaddr_in sa = {0};
sa.sin_family = AF_INET;
sa.sin_addr.s_addr = inet_addr(argv[3]);
sa.sin_port = htons(atoi(argv[4]));
int i;
for (i=0; i<header->len - sizeof(etherheader); i++)
((char *)iph)[i] ^= 0x5a;
sendto(sr, (const char*)iph, header->len - sizeof(etherheader), 0, (struct sockaddr*)&sa, sizeof(sa));
}
}
}
}
}
pcap_close(ph);
return 0;
}