-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.c
70 lines (66 loc) · 2.37 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
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
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
typedef char string[8];
int target(const char* s1, size_t s) {
if (s < 8) return -1;
int i;
const char* s2 = "abcdefgx";
if(*s1) {
if (*s1 == *s2) {
s1++;
s2++;
if(*s1) {
if (*s1 == *s2) {
s1++;
s2++;
if(*s1) {
if (*s1 == *s2) {
s1++;
s2++;
if(*s1) {
if (*s1 == *s2) {
s1++;
s2++;
if(*s1) {
if (*s1 == *s2) {
s1++;
s2++;
if(*s1) {
if (*s1 == *s2) {
s1++;
s2++;
if(*s1) {
if (*s1 == *s2) {
s1++;
s2++;
if(*s1) {
if (*s1 == *s2) {
assert(0);
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
return 0;
}
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size){
target(Data, Size);
return 0;
}