Skip to content

Commit 8694f7f

Browse files
committed
updated readme, dockerfile and fixed a typo
1 parent 6799690 commit 8694f7f

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

Dockerfile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
11
FROM maven:3.6.1-jdk-8 AS build-image
22
WORKDIR /build
3-
RUN git clone https://github.com/RUB-NDS/ASN.1-Tool.git && cd ASN.1-Tool && mvn clean install && cd ..
4-
RUN git clone https://github.com/RUB-NDS/X509-Attacker.git && cd X509-Attacker && mvn clean install && cd ..
53
RUN git clone https://github.com/RUB-NDS/TLS-Scanner.git --recurse-submodules
64

7-
RUN git clone https://github.com/RUB-NDS/TLS-Attacker.git && \
8-
TLS_ATTACKER_VERSION=$(cat TLS-Scanner/pom.xml | grep -A 1 "<artifactId>TLS-Core</artifactId>" | grep -o -E "[0-9.]+") && \
9-
cd TLS-Attacker && \
10-
git checkout "tags/$TLS_ATTACKER_VERSION" -b "$TLS_ATTACKER_VERSION" && \
11-
mvn clean install -DskipTests=true
12-
135
WORKDIR /build/TLS-Scanner
146
RUN mvn clean install -DskipTests=true
157

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ TLS-Scanner is a tool created by the Chair for Network and Data Security from th
44
**Please note:** *TLS-Scanner is a research tool intended for TLS developers, pentesters, administrators and researchers. There is no GUI. It is in the first version and may contain some bugs.*
55

66
# Compiling
7-
In order to compile and use TLS-Scanner, you need to have Java and Maven installed, as well as [TLS-Attacker](https://github.com/RUB-NDS/TLS-Attacker) in Version 3.4.0
7+
In order to compile and use TLS-Scanner, you need to run:
88

99
```bash
1010
$ cd TLS-Scanner
@@ -21,10 +21,6 @@ If you want to use TLS-Scanner as a library you need to install it with the foll
2121
$ mvn clean install
2222
```
2323

24-
For hints on installing the required libraries checkout the corresponding GitHub repositories.
25-
26-
**Please note:** *In order to run this tool you need TLS-Attacker version 3.4.0*
27-
2824
# Running
2925
In order to run TLS-Scanner you need to run the jar file in the apps/ folder.
3026

TLS-Server-Scanner/src/main/java/de/rub/nds/tlsscanner/serverscanner/report/SiteReportPrinter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ public StringBuilder appendInvalidCurveResults(StringBuilder builder) {
10531053
&& report.getResult(AnalyzedProperty.VULNERABLE_TO_INVALID_CURVE_EPHEMERAL) == TestResult.FALSE
10541054
&& report.getResult(AnalyzedProperty.VULNERABLE_TO_INVALID_CURVE_TWIST) == TestResult.FALSE
10551055
&& detail != ScannerDetail.ALL) {
1056-
prettyAppend(builder, "No Vulnerabilities Found");
1056+
prettyAppend(builder, "No Vulnerabilities found");
10571057
} else {
10581058
for (InvalidCurveResponse response : report.getInvalidCurveResultList()) {
10591059
if (response.getChosenGroupReusesKey() == TestResult.COULD_NOT_TEST

0 commit comments

Comments
 (0)