diff options
author | h1994st <h1994st@gmail.com> | 2020-03-27 02:03:20 -0400 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-01 13:10:06 +0200 |
commit | 245304f5938a700e93a3403b30509dea55a6549e (patch) | |
tree | d5b2dbfb795bf4e0f424c777fdade42d553ee40b /test/test-custom-mutator.c | |
parent | be441dc17668a5e7726f2af7286a0d18c75cecbe (diff) | |
download | afl++-245304f5938a700e93a3403b30509dea55a6549e.tar.gz |
Add a test case for the custom mutator
- Update the Makefile in examples/custom_mutators - Add a test program for testing the custom mutator - Update test.sh for testing the custom mutator - [TODO] Update the result checking criterias of the custom mutator in test.sh
Diffstat (limited to 'test/test-custom-mutator.c')
-rw-r--r-- | test/test-custom-mutator.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/test-custom-mutator.c b/test/test-custom-mutator.c new file mode 100644 index 00000000..b44c3634 --- /dev/null +++ b/test/test-custom-mutator.c @@ -0,0 +1,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); + int *ptr = NULL; + if( str[0] == 'P') { + *ptr = 123; + } + return 0; +} |