Skip to content

Commit

Permalink
Fixes for IC probe in public release (#243)
Browse files Browse the repository at this point in the history
* Don't attempt to test with FFDHE
  • Loading branch information
mmaehren authored Jun 14, 2022
1 parent 3262c4e commit a348f97
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Scanner-Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>TLS-Scanner</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.2</version>
</parent>
<packaging>jar</packaging>
<artifactId>Scanner-Core</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.2</version>
<build>
<plugins>
<plugin>
Expand Down
4 changes: 2 additions & 2 deletions TLS-Client-Scanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>TLS-Scanner</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.2</version>
</parent>
<name>TLS-Client-Scanner</name>
<packaging>jar</packaging>
Expand Down Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>Scanner-Core</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.2</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion TLS-Scanner-Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>TLS-Scanner</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.2</version>
</parent>
<packaging>jar</packaging>
<artifactId>TLS-Scanner-Core</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions TLS-Server-Scanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>TLS-Scanner</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.2</version>
</parent>
<name>TLS-Server-Scanner</name>
<packaging>jar</packaging>
Expand Down Expand Up @@ -67,7 +67,7 @@
<dependency>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>Scanner-Core</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.2</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public void adjustConfig(ServerReport report) {
supportedFpGroups = new LinkedList<>();
if (report.getSupportedNamedGroups() != null) {
for (NamedGroup group : report.getSupportedNamedGroups()) {
if (NamedGroup.getImplemented().contains(group)
if (NamedGroup.getImplemented().contains(group) && group.isCurve()
&& CurveFactory.getCurve(group) instanceof EllipticCurveOverFp) {
supportedFpGroups.add(group);
}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>TLS-Scanner</artifactId>
<groupId>de.rub.nds.tlsscanner</groupId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.2</version>
<packaging>pom</packaging>
<name>TLS-Scanner</name>
<url>https://github.com/tls-attacker/TLS-Scanner</url>
Expand Down Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Core</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit a348f97

Please sign in to comment.