Skip to content

Commit 081c816

Browse files
authored
run ECPointFormatProbe for TLS 1.3-only servers
1 parent b5ebf50 commit 081c816

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,9 @@ private TestResult getTls13SecpCompressionSupported() {
163163

164164
@Override
165165
public boolean canBeExecuted(SiteReport report) {
166-
return report.getResult(AnalyzedProperty.SUPPORTS_ECDH) == TestResult.TRUE
167-
&& report.isProbeAlreadyExecuted(ProbeType.PROTOCOL_VERSION);
166+
return report.isProbeAlreadyExecuted(ProbeType.PROTOCOL_VERSION)
167+
&& (report.getResult(AnalyzedProperty.SUPPORTS_ECDH) == TestResult.TRUE || report
168+
.getResult(AnalyzedProperty.SUPPORTS_TLS_1_3) == TestResult.TRUE);
168169
}
169170

170171
@Override

0 commit comments

Comments
 (0)