forked from nautilus-fuzz/nautilus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.c
41 lines (39 loc) · 1.65 KB
/
test.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
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv) {
char ptr[20];
if(argc>1){
FILE *fp = fopen(argv[1], "r");
fgets(ptr, sizeof(ptr), fp);
}
else{
fgets(ptr, sizeof(ptr), stdin);
}
printf("%s", ptr);
if(ptr[0] == 'd') {
if(ptr[1] == 'e') {
if(ptr[2] == 'a') {
if(ptr[3] == 'd') {
if(ptr[4] == 'b') {
if(ptr[5] == 'e') {
if(ptr[6] == 'e') {
if(ptr[7] == 'f') {
abort();
}
else printf("%c",ptr[7]);
}
else printf("%c",ptr[6]);
}
else printf("%c",ptr[5]);
}
else printf("%c",ptr[4]);
}
else printf("%c",ptr[3]);
}
else printf("%c",ptr[2]);
}
else printf("%c",ptr[1]);
}
else printf("%c",ptr[0]);
return 0;
}