File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed
TLS-Scanner-Core/src/main/java/de/rub/nds/tlsscanner/core/constants Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 1
1
FROM maven:3.6.1-jdk-11 AS build-image
2
2
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
3
7
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
4
18
5
19
WORKDIR /build/TLS-Scanner
6
20
RUN mvn clean install -DskipTests=true
7
21
8
22
# ############
9
- FROM openjdk:8-alpine
23
+ FROM openjdk:11
10
24
11
25
COPY --from=build-image /build/TLS-Scanner/apps /apps
12
26
Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ public enum TlsProbeType implements ProbeType {
46
46
SNI ("Server name indication (SNI)" ),
47
47
HANDSHAKE_SIMULATION ("Handshake simulation" ),
48
48
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" ),
52
52
DIRECT_RACCOON ("Direct RACCOON" ),
53
53
EC_POINT_FORMAT ("EC point formats" ),
54
54
RACCOON_ATTACK ("RACCOON attack" ),
You can’t perform that action at this time.
0 commit comments