Skip to content

Commit a348f97

Browse files
authored
Fixes for IC probe in public release (#243)
* Don't attempt to test with FFDHE
1 parent 3262c4e commit a348f97

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Scanner-Core/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>de.rub.nds.tlsscanner</groupId>
66
<artifactId>TLS-Scanner</artifactId>
7-
<version>4.3.0-SNAPSHOT</version>
7+
<version>4.2.2</version>
88
</parent>
99
<packaging>jar</packaging>
1010
<artifactId>Scanner-Core</artifactId>
11-
<version>4.3.0-SNAPSHOT</version>
11+
<version>4.2.2</version>
1212
<build>
1313
<plugins>
1414
<plugin>

TLS-Client-Scanner/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.rub.nds.tlsscanner</groupId>
66
<artifactId>TLS-Scanner</artifactId>
7-
<version>4.3.0-SNAPSHOT</version>
7+
<version>4.2.2</version>
88
</parent>
99
<name>TLS-Client-Scanner</name>
1010
<packaging>jar</packaging>
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>de.rub.nds.tlsscanner</groupId>
5858
<artifactId>Scanner-Core</artifactId>
59-
<version>4.3.0-SNAPSHOT</version>
59+
<version>4.2.2</version>
6060
<type>jar</type>
6161
</dependency>
6262
</dependencies>

TLS-Scanner-Core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.rub.nds.tlsscanner</groupId>
66
<artifactId>TLS-Scanner</artifactId>
7-
<version>4.3.0-SNAPSHOT</version>
7+
<version>4.2.2</version>
88
</parent>
99
<packaging>jar</packaging>
1010
<artifactId>TLS-Scanner-Core</artifactId>

TLS-Server-Scanner/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.rub.nds.tlsscanner</groupId>
66
<artifactId>TLS-Scanner</artifactId>
7-
<version>4.3.0-SNAPSHOT</version>
7+
<version>4.2.2</version>
88
</parent>
99
<name>TLS-Server-Scanner</name>
1010
<packaging>jar</packaging>
@@ -67,7 +67,7 @@
6767
<dependency>
6868
<groupId>de.rub.nds.tlsscanner</groupId>
6969
<artifactId>Scanner-Core</artifactId>
70-
<version>4.3.0-SNAPSHOT</version>
70+
<version>4.2.2</version>
7171
<type>jar</type>
7272
</dependency>
7373
</dependencies>

TLS-Server-Scanner/src/main/java/de/rub/nds/tlsscanner/serverscanner/probe/InvalidCurveProbe.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public void adjustConfig(ServerReport report) {
141141
supportedFpGroups = new LinkedList<>();
142142
if (report.getSupportedNamedGroups() != null) {
143143
for (NamedGroup group : report.getSupportedNamedGroups()) {
144-
if (NamedGroup.getImplemented().contains(group)
144+
if (NamedGroup.getImplemented().contains(group) && group.isCurve()
145145
&& CurveFactory.getCurve(group) instanceof EllipticCurveOverFp) {
146146
supportedFpGroups.add(group);
147147
}

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>TLS-Scanner</artifactId>
55
<groupId>de.rub.nds.tlsscanner</groupId>
6-
<version>4.3.0-SNAPSHOT</version>
6+
<version>4.2.2</version>
77
<packaging>pom</packaging>
88
<name>TLS-Scanner</name>
99
<url>https://github.com/tls-attacker/TLS-Scanner</url>
@@ -60,7 +60,7 @@
6060
<dependency>
6161
<groupId>de.rub.nds.tlsattacker</groupId>
6262
<artifactId>TLS-Core</artifactId>
63-
<version>3.9.0-SNAPSHOT</version>
63+
<version>3.8.0</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>junit</groupId>

0 commit comments

Comments
 (0)