hostap/tests/fuzzing
Johannes Berg dcc5288e5b gitignore: Add various things
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
2020-10-10 13:06:53 +03:00
..
ap-mgmt gitignore: Add various things 2020-10-10 13:06:53 +03:00
asn1 gitignore: Add various things 2020-10-10 13:06:53 +03:00
dpp-uri gitignore: Add various things 2020-10-10 13:06:53 +03:00
eap-aka-peer gitignore: Add various things 2020-10-10 13:06:53 +03:00
eap-mschapv2-peer gitignore: Add various things 2020-10-10 13:06:53 +03:00
eap-sim-peer gitignore: Add various things 2020-10-10 13:06:53 +03:00
eapol-key-auth gitignore: Add various things 2020-10-10 13:06:53 +03:00
eapol-key-supp gitignore: Add various things 2020-10-10 13:06:53 +03:00
eapol-supp gitignore: Add various things 2020-10-10 13:06:53 +03:00
json gitignore: Add various things 2020-10-10 13:06:53 +03:00
p2p gitignore: Add various things 2020-10-10 13:06:53 +03:00
sae gitignore: Add various things 2020-10-10 13:06:53 +03:00
tls-client gitignore: Add various things 2020-10-10 13:06:53 +03:00
tls-server gitignore: Add various things 2020-10-10 13:06:53 +03:00
wnm gitignore: Add various things 2020-10-10 13:06:53 +03:00
x509 gitignore: Add various things 2020-10-10 13:06:53 +03:00
README tests: New style fuzzing tool for wpa_supplicant WNM handling 2019-06-02 13:00:36 +03:00
build-test.sh tests: Build test for new fuzzer tools 2019-06-02 13:00:39 +03:00
fuzzer-common.c tests: New style fuzzing tool for wpa_supplicant WNM handling 2019-06-02 13:00:36 +03:00
fuzzer-common.h tests: New style fuzzing tool for wpa_supplicant WNM handling 2019-06-02 13:00:36 +03:00
rules.include tests: Fix CFLAGS passing for new fuzzing tools 2019-06-11 06:34:19 +03:00

README

hostap.git fuzz testing
-----------------------

These tools can be used for fuzz testing of various components used
within wpa_supplicant and hostapd. Each directory contains a fuzzing
tool that focuses on one input handler. Each tool can be compiled either
to work with the libFuzzer or as a separate tool that reads the input
from a file specified on the command line, e.g., for American fuzzy lop
(afl-fuzz). Example test corpus is included in */corpus directory.

Example fuzzing with libFuzzer

cd @TOOL@
make clean
make LIBFUZZER=y
./@TOOL@ corpus

Example fuzzing with afl-fuzz

cd @TOOL@
make clean
CC=afl-gcc make
afl-fuzz -i corpus -o findings -- $PWD/@TOOL@ @@