tree: 311a51583a90bec97ec3449a1ea3929e47419e81 [path history] [tgz]
  1. corpuses/
  2. .gitignore
  3. CMakeLists.txt
  4. common.c
  5. common.h
  6. fuzz_client.c
  7. fuzz_client.options
  8. fuzz_dtlsclient.c
  9. fuzz_dtlsclient.options
  10. fuzz_dtlsserver.c
  11. fuzz_dtlsserver.options
  12. fuzz_privkey.c
  13. fuzz_privkey.options
  14. fuzz_pubkey.c
  15. fuzz_pubkey.options
  16. fuzz_server.c
  17. fuzz_server.options
  18. fuzz_x509crl.c
  19. fuzz_x509crl.options
  20. fuzz_x509crt.c
  21. fuzz_x509crt.options
  22. fuzz_x509csr.c
  23. fuzz_x509csr.options
  24. Makefile
  25. onefile.c
  26. README.md
tests/fuzz/README.md

What is it?

This directory contains fuzz targets. Fuzz targets are simple codes using the library. They are used with a so-called fuzz driver, which will generate inputs, try to process them with the fuzz target, and alert in case of an unwanted behavior (such as a buffer overflow for instance).

These targets were meant to be used with oss-fuzz but can be used in other contexts.

This code was contributed by Philippe Antoine ( Catena cyber ).

How to run?

To run the fuzz targets like oss-fuzz:

git clone https://github.com/google/oss-fuzz
cd oss-fuzz
python infra/helper.py build_image mbedtls
python infra/helper.py build_fuzzers --sanitizer address mbedtls
python infra/helper.py run_fuzzer mbedtls fuzz_client

You can use undefined sanitizer as well as address sanitizer. And you can run any of the fuzz targets like fuzz_client.

To run the fuzz targets without oss-fuzz, you first need to install one libFuzzingEngine (libFuzzer for instance). Then you need to compile the code with the compiler flags of the wished sanitizer.

perl scripts/config.pl set MBEDTLS_PLATFORM_TIME_ALT
mkdir build
cd build
cmake ..
make

Finally, you can run the targets like ./test/fuzz/fuzz_client.