aboutsummaryrefslogtreecommitdiff
path: root/test/test-custom-mutator.c
blob: f868550c003b13c16ab2d00650b0f165bca48999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * Reference:
 * https://github.com/bruce30262/libprotobuf-mutator_fuzzing_learning/blob/master/4_libprotobuf_aflpp_custom_mutator/vuln.c
 */

#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <unistd.h>

int main(int argc, char *argv[]) {

  char str[100];
  read(0, str, 100);
  if (str[6] == 'A') { abort(); }
  return 0;

}