Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NErinola committed Jun 9, 2022
2 parents 1ff0f74 + 0ca1980 commit 044eb00
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
FROM maven:3.6.1-jdk-11 AS build-image
WORKDIR /build
RUN git clone https://github.com/RUB-NDS/ModifiableVariable.git
RUN git clone https://github.com/RUB-NDS/ASN.1-Tool.git
RUN git clone https://github.com/RUB-NDS/X509-Attacker.git
RUN git clone https://github.com/RUB-NDS/TLS-Attacker.git
RUN git clone https://github.com/RUB-NDS/TLS-Scanner.git --recurse-submodules
WORKDIR /build/ModifiableVariable
RUN git checkout tags/3.5.0
RUN mvn clean install -DskipTests=true
WORKDIR /build/ASN.1-Tool
RUN mvn clean install -DskipTests=true
WORKDIR /build/X509-Attacker
RUN mvn clean install -DskipTests=true

WORKDIR /build/TLS-Attacker
RUN mvn clean install -DskipTests=true

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

#############
FROM openjdk:8-alpine
FROM openjdk:11

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ public enum TlsProbeType implements ProbeType {
SNI("Server name indication (SNI)"),
HANDSHAKE_SIMULATION("Handshake simulation"),
MAC("MAC"),
CCA_SUPPORT("Client certificate authenication support"),
CCA_REQUIRED("Client certificate authenication required"),
CCA("Client certificate authenication bypasses"),
CCA_SUPPORT("Client certificate authentication support"),
CCA_REQUIRED("Client certificate authentication required"),
CCA("Client certificate authentication bypasses"),
DIRECT_RACCOON("Direct RACCOON"),
EC_POINT_FORMAT("EC point formats"),
RACCOON_ATTACK("RACCOON attack"),
Expand Down

0 comments on commit 044eb00

Please sign in to comment.