diff options
Diffstat (limited to 'src/extra_tests/tls-attacker/fuzzing/setup.sh')
-rwxr-xr-x | src/extra_tests/tls-attacker/fuzzing/setup.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/extra_tests/tls-attacker/fuzzing/setup.sh b/src/extra_tests/tls-attacker/fuzzing/setup.sh new file mode 100755 index 000000000..8c83f6eff --- /dev/null +++ b/src/extra_tests/tls-attacker/fuzzing/setup.sh @@ -0,0 +1,31 @@ +#!/bin/sh + +if [ ! -d output ] +then + mkdir output +fi + +cd .. + +openssl genpkey -algorithm RSA -out rsa2048key.pem -pkeyopt rsa_keygen_bits:2048 +openssl req -key rsa2048key.pem -new -x509 -days 365 -out rsa2048cert.pem -subj "/C=DE/ST=NRW/L=Bochum/O=TLS-Attacker/CN=tls-attacker.de" + +if [ ! -d TLS-Attacker ] +then + git clone https://github.com/RUB-NDS/TLS-Attacker.git +fi + +cd TLS-Attacker +git checkout . +git pull +./mvnw clean package -DskipTests=true + +cd ../../../../ +make clean +export ASAN_OPTIONS=check_initialization_order=true +if [ -n "$CC" ] + then ./configure.py --with-sanitizers --disable-shared --with-debug-info --with-bzip2 --with-lzma --with-sqlite --with-zlib --cc="$CC" --cc-bin="$CXX" + else ./configure.py --with-sanitizers --disable-shared --with-debug-info --with-bzip2 --with-lzma --with-sqlite --with-zlib +fi + +make -j4
\ No newline at end of file |