aboutsummaryrefslogtreecommitdiffstats
path: root/src/extra_tests/tls-attacker/README.md
diff options
context:
space:
mode:
authorJuraj Somorovsky <[email protected]>2016-11-19 22:25:40 +0100
committerJuraj Somorovsky <[email protected]>2016-11-19 22:25:40 +0100
commitae2a958630cd104f4117bb897481bc86a744b09b (patch)
tree103d3fed21c732fefcae952c76d49627832b83ee /src/extra_tests/tls-attacker/README.md
parentacf1999cb85fc6bca83ac828b66593a6767174f7 (diff)
TLS-Attacker testsuite and fuzzing
Diffstat (limited to 'src/extra_tests/tls-attacker/README.md')
-rw-r--r--src/extra_tests/tls-attacker/README.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/extra_tests/tls-attacker/README.md b/src/extra_tests/tls-attacker/README.md
new file mode 100644
index 000000000..abff9b2c3
--- /dev/null
+++ b/src/extra_tests/tls-attacker/README.md
@@ -0,0 +1,35 @@
+# TLS-Attacker testsuite and fuzzing
+
+Extended Botan library tests with TLS-Attacker. https://github.com/RUB-NDS/TLS-Attacker
+
+## Testsuite
+Contains a testsuite to validate correct TLS server behavior.
+
+Run
+```bash
+setup.sh
+```
+to download and build the recent TLS-Attacker version, and generate RSA key pairs.
+
+Run
+```bash
+server_testsuite.sh
+server_policytest.sh
+```
+to run the tests. Testsuite executes specific TLS handshakes with the Botan server and verifies that the server correctly handles specific TLS versions and cipher suites. The policy test instantiates the Botan server with a specific policy and verifies that the server behaves according to this policy.
+
+
+## Fuzzing
+Starts the TLS-Attacker fuzzer against the Botan server.
+
+Run
+```bash
+setup.sh
+```
+to download and build the recent TLS-Attacker version, generate RSA key pairs, and re-compile Botan with Address Sanitizer.
+
+Run
+```bash
+server_fuzzer.sh
+```
+to start the fuzzer. The fuzzer config is located in `config.xml`. Per default, one Botan server is started on port 55020, with the generated RSA keys.` \ No newline at end of file