Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
ap-mgmt/ | 03-Aug-2024 | - | 215 | 160 | ||
asn1/ | 03-Aug-2024 | - | 211 | 176 | ||
dpp-uri/ | 03-Aug-2024 | - | 101 | 72 | ||
eap-aka-peer/ | 03-Aug-2024 | - | 163 | 115 | ||
eap-mschapv2-peer/ | 03-Aug-2024 | - | 181 | 127 | ||
eap-sim-peer/ | 03-Aug-2024 | - | 157 | 111 | ||
eapol-key-auth/ | 03-Aug-2024 | - | 366 | 274 | ||
eapol-key-supp/ | 03-Aug-2024 | - | 365 | 272 | ||
eapol-supp/ | 03-Aug-2024 | - | 230 | 161 | ||
json/ | 03-Aug-2024 | - | 71 | 45 | ||
p2p/ | 03-Aug-2024 | - | 205 | 144 | ||
sae/ | 03-Aug-2024 | - | 71 | 45 | ||
tls-client/ | 03-Aug-2024 | - | 190 | 149 | ||
tls-server/ | 03-Aug-2024 | - | 193 | 151 | ||
wnm/ | 03-Aug-2024 | - | 163 | 119 | ||
x509/ | 03-Aug-2024 | - | 56 | 32 | ||
README | D | 03-Aug-2024 | 673 | 24 | 18 | |
build-test.sh | D | 03-Aug-2024 | 200 | 20 | 15 | |
fuzzer-common.c | D | 03-Aug-2024 | 964 | 57 | 36 | |
fuzzer-common.h | D | 03-Aug-2024 | 325 | 15 | 4 | |
rules.include | D | 03-Aug-2024 | 689 | 32 | 25 |
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