Skip to content

Commit 044eb00

Browse files
committed
2 parents 1ff0f74 + 0ca1980 commit 044eb00

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

Dockerfile

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
FROM maven:3.6.1-jdk-11 AS build-image
22
WORKDIR /build
3+
RUN git clone https://github.com/RUB-NDS/ModifiableVariable.git
4+
RUN git clone https://github.com/RUB-NDS/ASN.1-Tool.git
5+
RUN git clone https://github.com/RUB-NDS/X509-Attacker.git
6+
RUN git clone https://github.com/RUB-NDS/TLS-Attacker.git
37
RUN git clone https://github.com/RUB-NDS/TLS-Scanner.git --recurse-submodules
8+
WORKDIR /build/ModifiableVariable
9+
RUN git checkout tags/3.5.0
10+
RUN mvn clean install -DskipTests=true
11+
WORKDIR /build/ASN.1-Tool
12+
RUN mvn clean install -DskipTests=true
13+
WORKDIR /build/X509-Attacker
14+
RUN mvn clean install -DskipTests=true
15+
16+
WORKDIR /build/TLS-Attacker
17+
RUN mvn clean install -DskipTests=true
418

519
WORKDIR /build/TLS-Scanner
620
RUN mvn clean install -DskipTests=true
721

822
#############
9-
FROM openjdk:8-alpine
23+
FROM openjdk:11
1024

1125
COPY --from=build-image /build/TLS-Scanner/apps /apps
1226

TLS-Scanner-Core/src/main/java/de/rub/nds/tlsscanner/core/constants/TlsProbeType.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ public enum TlsProbeType implements ProbeType {
4646
SNI("Server name indication (SNI)"),
4747
HANDSHAKE_SIMULATION("Handshake simulation"),
4848
MAC("MAC"),
49-
CCA_SUPPORT("Client certificate authenication support"),
50-
CCA_REQUIRED("Client certificate authenication required"),
51-
CCA("Client certificate authenication bypasses"),
49+
CCA_SUPPORT("Client certificate authentication support"),
50+
CCA_REQUIRED("Client certificate authentication required"),
51+
CCA("Client certificate authentication bypasses"),
5252
DIRECT_RACCOON("Direct RACCOON"),
5353
EC_POINT_FORMAT("EC point formats"),
5454
RACCOON_ATTACK("RACCOON attack"),

0 commit comments

Comments
 (0)