-
Notifications
You must be signed in to change notification settings - Fork 0
/
DetectorAlonsoAli_SidneyReis.c
347 lines (296 loc) · 8.99 KB
/
DetectorAlonsoAli_SidneyReis.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
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <linux/if_ether.h>
#include <netpacket/packet.h>
#include <net/ethernet.h>
#include <fcntl.h>
#include <net/if.h> //estrutura ifr
#include <netinet/ether.h> //header ethernet
#include <netinet/in.h> //definicao de protocolos
#include <arpa/inet.h> //funcoes para manipulacao de enderecos IP
//#include <netinet/ip6.h> //header ipv6
#include <net/ethernet.h> //Header do pacote Ethernet
//#include <net/if_arp.h> //header do pacote ARP
#include <netinet/in_systm.h> //tipos de dados
#include <errno.h>
#include <linux/if_ether.h>
#include <netpacket/packet.h>
#include <signal.h>
#define ETHERTYPE_LEN 2
#define MAC_ADDR_LEN 6
#define BUFFER_LEN 1518
#define BUFFSIZE 1518
#define FLAGS 67
#define ATTACKCOUNTER 3979
struct ifreq ifr;
unsigned char buff[BUFFSIZE]; // buffer de recepcao
int detected = 0;
unsigned char interfaceName[5];
int m_mIndex = 0;
int sockd = 0;
int estadoTcpConnect = 0;
int estadoTcpHalfOpening = 0;
int ethertype;
int ipv6type;
int i;
int tcpConnectCounter = 0;
typedef struct
{
uint16_t port;
unsigned char macAddress[6];
uint16_t state;
}tipoAtaque;
tipoAtaque listaTcpConnect[10000];
int listaLimiteTcpConnect = 0;
tipoAtaque listaHalfOpen[10000];
int listaLimitehalfOpen = 0;
tipoAtaque listaStealthScan[10000];
int listaLimiteStealthScan = 0;
tipoAtaque listaSynAck[10000];
int listaLimiteSynAck = 0;
//ideia: lista de portas e marcar qual ataque esta sendo feito em cada
void processaTcpConnect()
{
if(buff[FLAGS] == 0x02) //recebemos um SYN
{
int existe = 0;
for(i = 0; i < listaLimiteTcpConnect; i++) //iteramos na lista verificando se a porta desse pacote que recebemos já está na lista
{
if(listaTcpConnect[i].port == buff[56])
{
existe = 1; //se a porta já existe na lista, não fazemos mais nada aqui
break;
}
}
if(!existe) //se a porta não existe na lista, adicionamos uma nova entrada da struct na nossa lista
{
tipoAtaque novaPort;
memcpy(&novaPort.port, &buff[56], 2); //copia porta para a struct
memcpy(&novaPort.macAddress, &buff[6], 6); //copia mac para a struct
novaPort.state = 1; //estado é 1, pois recebemos um SYN
listaTcpConnect[listaLimiteTcpConnect] = novaPort; //adicionamos a struct na lista
listaLimiteTcpConnect++; //incrementamos o tamanho da lista
}
//printf("Recebmos um SYN");
}
if(buff[FLAGS] == 0x10) // recebemos um ACK
{
int existe = 0;
int index = 0;
for(i = 0; i < listaLimiteTcpConnect; i++) //iteramos na lista verificando se a porta desse pacote que recebemos já está na lista
{
if(listaTcpConnect[i].port == buff[56])
{
existe = 1; //se a porta já existe na lista, alteramos essa flag para ver o estado dela
index = i; //posição da struct na nossa lista
break;
}
}
if(existe) // se a porta desse pacote já se encontra na nossa list
{
printf("chegou jiaeo\n");
listaTcpConnect[index].state = 2; // colocamos a entrada dessa para estado terminal, pois passamos por um SYN, e agora chegamos em um ACK na mesma porta.
}
}
int terminalCount = 0;
int flagTipo = 0;
for (i = 0; i < listaLimiteTcpConnect; i++) //iteramos sobre a lista
{
if(listaTcpConnect[i].state >= 1) //varremos a lista contando quantos estados 1 ou 2 tem.
{
terminalCount++;
}
if(listaTcpConnect[i].state == 2) //se possuirmos 1 estado terminal na lista, alteramos a flag para dizermos que é um TcpConnectAttack
{
flagTipo = 1;
}
}
//printf("%d\n", terminalCount);
if(terminalCount >= ATTACKCOUNTER && flagTipo == 1) // se tivermos mais que 3 tentativas de acesso as nossas portas e algum deles tentou dar ACK, então temos um TCP connect acontecendo
{
printf("Ataque de TCPConnect acontecendo, xessus\n");
}
else if(terminalCount >= ATTACKCOUNTER) //se tivermos mais que 3 tentativa de acesso as nossas portas e nenhum ack, então pode ser tanto TCP connect ou half opening.
{
printf("Ataque de TCP Connect ou Half-Opening acontecendo, doublexessus\n");
}
}
void processaTcpHalfOpening()
{
if(buff[FLAGS] == 0x02) //recebemos um SYN
{
int existe = 0;
for(i = 0; i < listaLimitehalfOpen; i++)
{
if(listaHalfOpen[i].port == buff[56])
{
existe = 1;
break;
}
}
if(!existe)
{
tipoAtaque novaPort;
memcpy(&novaPort.port, &buff[56], 2);
memcpy(&novaPort.macAddress, &buff[6], 6);
novaPort.state = 1;
listaHalfOpen[listaLimitehalfOpen] = novaPort;
listaLimitehalfOpen++;
}
//printf("Recebmos um SYN");
}
if(buff[FLAGS] == 0x04) // RST
{
int existe = 0;
int index = 0;
for(i = 0; i < listaLimitehalfOpen; i++)
{
if(listaHalfOpen[i].port == buff[56])
{
existe = 1;
index = i;
break;
}
}
if(existe)
{
printf("chegou jiaeo\n");
listaHalfOpen[index].state = 2;
}
}
int terminalCount = 0;
int flagTipo = 0;
for (i = 0; i < listaLimitehalfOpen; i++)
{
if(listaHalfOpen[i].state >= 1)
{
terminalCount++;
}
if(listaHalfOpen[i].state == 2)
{
flagTipo = 1;
}
}
//printf("%d\n", terminalCount);
if(terminalCount >= ATTACKCOUNTER && flagTipo == 1)
{
printf("Ataque de TCP Half-Opening acontecendo, xessus\n");
}
else if(terminalCount >= ATTACKCOUNTER)
{
printf("Ataque de TCP Connect ou Half-Opening acontecendo, doublexessus\n");
}
}
void processaStealthScan()
{
if(buff[FLAGS] == 0x01) //recebemos um FIN
{
int existe = 0;
for(i = 0; i < listaLimiteStealthScan; i++)
{
if(listaStealthScan[i].port == buff[56])
{
existe = 1;
break;
}
}
if(!existe)
{
tipoAtaque novaPort;
memcpy(&novaPort.port, &buff[56], 6);
memcpy(&novaPort.macAddress, &buff[6], 6);
novaPort.state = 1;
listaStealthScan[listaLimiteStealthScan] = novaPort;
listaLimiteStealthScan++;
}
//printf("Recebmos um FIN");
}
int terminalCount = 0;
for (i = 0; i < listaLimiteStealthScan; i++)
{
if(listaStealthScan[i].state >= 1)
{
terminalCount++;
}
}
//printf("%d\n", terminalCount);
if(terminalCount >= ATTACKCOUNTER)
{
printf("Ataque de Stealth Scan acontecendo, xessus\n");
}
}
void processaSynAck()
{
if(buff[FLAGS] == 0x12) //recebemos um SYN/ACK
{
int existe = 0;
for(i = 0; i < listaLimiteSynAck; i++)
{
if(listaSynAck[i].port == buff[56])
{
existe = 1;
break;
}
}
if(!existe)
{
tipoAtaque novaPort;
memcpy(&novaPort.port, &buff[56], 6);
memcpy(&novaPort.macAddress, &buff[6], 6);
novaPort.state = 1;
listaSynAck[listaLimiteSynAck] = novaPort;
listaLimiteSynAck++;
}
//printf("Recebmos um SYN/ACK");
}
int terminalCount = 0;
for (i = 0; i < listaLimiteSynAck; i++)
{
if(listaSynAck[i].state >= 1)
{
terminalCount++;
}
}
//printf("%d\n", terminalCount);
if(terminalCount >= ATTACKCOUNTER)
{
printf("Ataque de SYN/ACK acontecendo, xessus\n");
}
}
int main()
{
ethertype = htons(0x86DD);
ipv6type = 0x6;
strcpy(interfaceName, "eth0");
// O procedimento abaixo eh utilizado para "setar" a interface em modo promiscuo
strcpy(ifr.ifr_name, interfaceName);
if(ioctl(sockd, SIOCGIFINDEX, &ifr) < 0)
printf("erro no ioctl!\n");
ioctl(sockd, SIOCGIFFLAGS, &ifr);
ifr.ifr_flags |= IFF_PROMISC;
ioctl(sockd, SIOCSIFFLAGS, &ifr);
if((sockd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL))) < 0)
{
printf("Erro na criacao do socket.\n");
exit(1);
}
while(detected != 1)
{
recv(sockd,(char *) &buff, sizeof(buff), 0x0);
if(memcmp(&buff[12], ðertype, 2) == 0)
{
if(buff[20] == 0x6) //tcp
{
processaTcpConnect();
//processaTcpHalfOpening();
//processaStealthScan();
//processaSynAck();
}
}
}
}