-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbufbomb.c
458 lines (400 loc) · 10.5 KB
/
bufbomb.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
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
450
451
452
453
454
455
456
457
/*
* bufbomb.c - Bomb program that is solved using a buffer overflow attack
*
* Copyright (c) 2002, R. Bryant and D. O'Hallaron, All rights reserved.
* May not be used, modified, or copied without permission.
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <unistd.h>
#include <setjmp.h>
#include <string.h>
#include <signal.h>
#include <alloca.h>
#include "gencookie.h"
#include "config.h"
#include <inttypes.h>
#include <sys/mman.h>
#define NEW_STACK_SIZE (4096*4)
#ifdef __CYGWIN__
#include "getopt.h"
#endif
/* Binary code for HLT (halt) instruction */
#define HALT_INSTR 0xF4
#define KABOOM_CNT 5
#define NORMAL_CNT 1
FILE *infile = NULL;
int submit = NOTIFY;
int quiet = 0;
unsigned hexformat = 0;
unsigned long long cookie = 0;
char *team = NULL;
int grade = 0;
int success = 0;
/**************************************************************************
The following is the part of the code students will actually look at.
They are put at the beginning of the file to make them easier to find
in the diassembly, and to make their locations more stable when other
parts of the code get modified.
**************************************************************************/
/* Forward pointers */
void entry_check(int);
void validate(int);
char *Gets(char *);
unsigned long long getbuf();
/* $begin smoke-c */
void smoke()
{
entry_check(0); /* Make sure entered this function properly */
printf("Smoke!: You called smoke()\n");
validate(0);
exit(0);
}
/* $end smoke-c */
/* $begin fizz-c */
void fizz(int arg1, char arg2, long arg3, char* arg4, short arg5, short arg6, unsigned long long val)
{
entry_check(1); /* Make sure entered this function properly */
if (val == cookie) {
printf("Fizz!: You called fizz(0x%llx)\n", val);
validate(1);
} else {
printf("Misfire: You called fizz(0x%llx)\n", val);
}
exit(0);
}
/* $end fizz-c */
/* $begin bang-c */
unsigned long long global_value = 0;
void bang(unsigned long long val)
{
entry_check(2); /* Make sure entered this function properly */
if (global_value == cookie) {
printf("Bang!: You set global_value to 0x%llx\n", global_value);
validate(2);
} else {
printf("Misfire: global_value = 0x%llx\n", global_value);
}
exit(0);
}
/* $end bang-c */
/* $begin boom-c */
void test()
{
unsigned long long val;
volatile unsigned long long local = 0xdeadbeef;
char* variable_length;
entry_check(3); /* Make sure entered this function properly */
val = getbuf();
if (val <= 40) {
variable_length = alloca(val);
}
entry_check(3);
/* Check for corrupted stack */
if (local != 0xdeadbeef) {
printf("Sabotaged!: the stack has been corrupted\n");
}
else if (val == cookie) {
printf("Boom!: getbuf returned 0x%llx\n", val);
if (local != 0xdeadbeef) {
printf("Sabotaged!: the stack has been corrupted\n");
}
validate(3);
}
else {
printf("Dud: getbuf returned 0x%llx\n", val);
}
}
/* $end boom-c */
/* $begin getbuf-c */
unsigned long long getbuf()
{
char buf[36];
volatile char* variable_length;
int i;
unsigned long long val = (unsigned long long)Gets(buf);
variable_length = alloca((val % 40) < 36 ? 36 : val % 40);
for(i = 0; i < 36; i++)
{
variable_length[i] = buf[i];
}
return val % 40;
}
/* $end getbuf-c */
/* /\* $begin kaboom-c *\/ */
/* int getbufn() */
/* { */
/* char buf[512]; */
/* Gets(buf); */
/* return 1; */
/* } */
/* /\* $end kaboom-c *\/ */
/* void testn() */
/* { */
/* int val; */
/* volatile int local = 0xdeadbeef; */
/* entry_check(4); /\* Make sure entered this function properly *\/ */
/* val = getbufn(); */
/* /\* Check for corrupted stack *\/ */
/* if (local != 0xdeadbeef) { */
/* printf("Sabotaged!: the stack has been corrupted\n"); */
/* } */
/* else if (val == cookie) { */
/* printf("KABOOM!: getbufn returned 0x%x\n", val); */
/* validate(4); */
/* } */
/* else { */
/* printf("Dud: getbufn returned 0x%x\n", val); */
/* } */
/* } */
/* Like gets, except that can optionally (when hexformat nonzero)
accept format where characters are typed as pairs of hex digits.
Nondigit characters are ignored. Stops when encounters newline.
In addition, it stores the string in global buffer gets_buf
*/
#define GETLEN 1024
static char gets_buf[3*GETLEN+1];
int gets_cnt = 0;
static char trans_char[16] =
{'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
static void save_char(char c) {
if (gets_cnt < GETLEN) {
gets_buf[3*gets_cnt] = trans_char[(c>>4)&0xF];
gets_buf[3*gets_cnt+1] = trans_char[c&0xF];
gets_buf[3*gets_cnt+2] = ' ';
gets_cnt++;
}
}
static void save_term()
{
gets_buf[3*gets_cnt] = '\0';
}
char *Gets(char *dest)
{
int c, hc;
int even = 1; /* Have read even number of digits */
int otherd = 0; /* Other hex digit of pair */
char *sp = dest;
gets_cnt = 0;
if (!hexformat) {
while ((c = getc(infile)) != EOF && c != '\n') {
*sp++ = c;
save_char(c);
}
} else {
while ((hc = getc(infile)) != EOF && hc != '\n') {
if (isxdigit(hc)) {
int val;
if ('0' <= hc && hc <= '9')
val = hc - '0';
else if ('A' <= hc && hc <= 'F')
val = hc - 'A' + 10;
else
val = hc - 'a' + 10;
if (even) {
otherd = val;
even = 0;
} else {
c = otherd * 16 + val;
*sp++ = c;
save_char(c);
even = 1;
}
}
}
}
*sp++ = '\0';
save_term();
return dest;
}
/* Track successful results */
static int level_counts[5] =
{NORMAL_CNT, NORMAL_CNT, NORMAL_CNT, NORMAL_CNT, KABOOM_CNT};
int check_level = -1;
/* Simple check to make sure validation only happens after proper
function entry */
void entry_check(int level)
{
check_level = level;
}
void validate(int level)
{
if (!team) {
printf("No username indicated. Results not validated\n");
return;
}
if (level < 0 || level >= 5) {
printf("Invalid level. Results not validated\n");
return;
}
if (level != check_level) {
printf("Improper call to validate function. Results not validated\n");
return;
}
success = 1;
if (--level_counts[level] > 0) {
printf("Keep going\n");
} else if (grade) {
printf("Level %d VALID\n", level);
}
}
static void usage(char *name)
{
printf("Usage: %s -u username\n", name);
printf("\t-u username: Specify username\n");
exit(0);
}
/* Signal handler to catch bus errors */
void bushandler(int sig)
{
printf("Crash!: You caused a bus error!\n");
printf("Better luck next time\n");
exit(0);
}
/* Signal handler to catch segmentation violations */
void seghandler(int sig)
{
printf("Ouch!: You caused a segmentation fault!\n");
printf("Better luck next time\n");
exit(0);
}
/* Alarm handler to catch infinite loops */
static int alarm_time = 600;
void alarmhandler(int sig)
{
printf("Dead!: getbuf didn't complete within %d seconds\n", alarm_time);
printf("Better luck next time\n");
exit(0);
}
/* Illegal instruction handler */
void illegalhandler(int sig)
{
printf("Oops!: You executed an illegal instruction\n");
printf("Better luck next time\n");
exit(0);
}
/* Run either test or testn */
static void launch(int nitro, int offset) {
int localbuf[16];
int stable_tweak = 0;
int *space;
/*
This little hack adjusts the stack. For normal mode, it
tries to put it into a stable position from one run to the next.
In nitro mode, it makes it even less stable than it would normally be.
You don't need to understand it to do the assignment.
*/
stable_tweak = (((int) localbuf) & 0x3FF8) + offset;
space = (int *) alloca(stable_tweak);
/* Fill full of halt instructions, so that will get seg fault */
memset(space, HALT_INSTR, stable_tweak);
if (!quiet) {
if (hexformat)
printf("Type Hex string: ");
else {
printf("Type string: ");
}
}
test();
if (!success) {
printf("Better luck next time\n");
success = 0;
}
}
void test_function() {
// printf("This is a test\n");
}
void shift_stack_and_invoke_function(
uint64_t new_rsp,
void (*func_ptr)()) {
uint64_t old_rsp;
__asm__ volatile("movq %%rsp, %0\n" : "=a" (old_rsp));
__asm__ volatile("movq %0, %%rsp\n" : : "q" (new_rsp) : "memory", "rsp");
func_ptr();
__asm__ volatile("movq %0, %%rsp\n" : : "q" (old_rsp) : "memory", "rsp");
}
int main(int argc, char *argv[])
{
int cookie_tweak = 0;
int nitro = 0; /* Run in unstable mode? */
int i;
int *offsets;
int cnt = NORMAL_CNT;
char c;
char *m = memalign(NEW_STACK_SIZE, NEW_STACK_SIZE);
uint64_t new_rsp;
if(mprotect(m, NEW_STACK_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC)
!= 0) {
perror("Failure to set stack permissions\n");
exit(0);
}
new_rsp = (uint64_t)m + NEW_STACK_SIZE - 128;
shift_stack_and_invoke_function(new_rsp, test_function);
signal(SIGSEGV, seghandler);
signal(SIGBUS, bushandler);
signal(SIGALRM, alarmhandler);
signal(SIGILL, illegalhandler);
infile = stdin;
while ((c = getopt(argc, argv, "gt:u:")) != -1)
switch(c) {
case 'g': /* Hidden switch */
grade = 1;
quiet = 1;
alarm_time = 1; /* Should get immediate response */
break;
/* case 'h': */
/* usage(argv[0]); */
/* break; */
/* case 'q': /\* Disabled *\/ */
/* quiet = 1; */
/* break; */
/* case 'n': */
/* nitro = 1; */
/* cnt = KABOOM_CNT; */
/* break; */
/* case 'x': /\* Disabled *\/ */
/* hexformat = 1; */
/* break; */
case 't':
case 'u':
team = strdup(optarg);
printf("Username: %s\n", team);
cookie = gencookie(team);
printf("Cookie: 0x%llx\n", cookie);
break;
/* case 'f': /\* Disabled *\/ */
/* infile = fopen(optarg, "r"); */
/* if (!infile) { */
/* printf("Can't open file: %s\n", optarg); */
/* usage(argv[0]); */
/* } */
/* break; */
/* case 's': /\* automatically submit solution via email *\/ */
/* submit = 1; */
/* break; */
default:
usage(argv[0]);
}
if (!team) {
printf("You must include a username with -u\n");
usage(argv[0]);
}
srandom(cookie);
cookie_tweak = random() & 0xFF8;
/* Set up set of stack offsets */
offsets = (int *) calloc(cnt, sizeof(int));
for (i = 0; i < cnt-2; i++)
offsets[i] = random() & 0x38;
if (cnt >= 2)
offsets[cnt-2] = 0x38;
offsets[cnt-1] = 0;
/* Set up time out condition */
alarm(alarm_time);
for (i = 0; i < cnt; i++)
launch(nitro, offsets[i]+cookie_tweak);
return 0;
}