Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions projects/openssl/bignum.options
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[libfuzzer]
max_len = 2048
3 changes: 2 additions & 1 deletion projects/openssl/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#
################################################################################

./config enable-fuzz-libfuzzer -DPEDANTIC -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION no-shared --with-fuzzer-lib=/usr/lib/libFuzzingEngine $CFLAGS
./config enable-fuzz-libfuzzer -DPEDANTIC -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION no-shared enable-tls1_3 enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 enable-ssl3 enable-ssl3-method enable-nextprotoneg enable-weak-ssl-ciphers --with-fuzzer-lib=/usr/lib/libFuzzingEngine $CFLAGS -fno-sanitize=alignment
make -j$(nproc) EX_LIBS="-ldl /usr/local/lib/libc++.a"

fuzzers=$(find fuzz -executable -type f '!' -name \*.py '!' -name \*-test)
Expand All @@ -25,3 +25,4 @@ for f in $fuzzers; do
zip -j $OUT/${fuzzer}_seed_corpus.zip fuzz/corpora/${fuzzer}/*
done

cp $SRC/*.options $OUT/
4 changes: 4 additions & 0 deletions projects/openssl/project.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
homepage: "https://www.openssl.org/"
primary_contact: "kurt@roeckx.be"
auto_ccs: "openssl-security@openssl.org"
sanitizers:
- address
- undefined