• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

ap-mgmt/03-Aug-2024-215160

asn1/03-Aug-2024-211176

dpp-uri/03-Aug-2024-10172

eap-aka-peer/03-Aug-2024-163115

eap-mschapv2-peer/03-Aug-2024-181127

eap-sim-peer/03-Aug-2024-157111

eapol-key-auth/03-Aug-2024-366274

eapol-key-supp/03-Aug-2024-365272

eapol-supp/03-Aug-2024-230161

json/03-Aug-2024-7145

p2p/03-Aug-2024-205144

sae/03-Aug-2024-7145

tls-client/03-Aug-2024-190149

tls-server/03-Aug-2024-193151

wnm/03-Aug-2024-163119

x509/03-Aug-2024-5632

READMED03-Aug-2024673 2418

build-test.shD03-Aug-2024200 2015

fuzzer-common.cD03-Aug-2024964 5736

fuzzer-common.hD03-Aug-2024325 154

rules.includeD03-Aug-2024689 3225

README

1hostap.git fuzz testing
2-----------------------
3
4These tools can be used for fuzz testing of various components used
5within wpa_supplicant and hostapd. Each directory contains a fuzzing
6tool that focuses on one input handler. Each tool can be compiled either
7to work with the libFuzzer or as a separate tool that reads the input
8from a file specified on the command line, e.g., for American fuzzy lop
9(afl-fuzz). Example test corpus is included in */corpus directory.
10
11Example fuzzing with libFuzzer
12
13cd @TOOL@
14make clean
15make LIBFUZZER=y
16./@TOOL@ corpus
17
18Example fuzzing with afl-fuzz
19
20cd @TOOL@
21make clean
22CC=afl-gcc make
23afl-fuzz -i corpus -o findings -- $PWD/@TOOL@ @@
24