We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5ebf50 commit 081c816Copy full SHA for 081c816
TLS-Server-Scanner/src/main/java/de/rub/nds/tlsscanner/serverscanner/probe/ECPointFormatProbe.java
@@ -163,8 +163,9 @@ private TestResult getTls13SecpCompressionSupported() {
163
164
@Override
165
public boolean canBeExecuted(SiteReport report) {
166
- return report.getResult(AnalyzedProperty.SUPPORTS_ECDH) == TestResult.TRUE
167
- && report.isProbeAlreadyExecuted(ProbeType.PROTOCOL_VERSION);
+ return report.isProbeAlreadyExecuted(ProbeType.PROTOCOL_VERSION)
+ && (report.getResult(AnalyzedProperty.SUPPORTS_ECDH) == TestResult.TRUE || report
168
+ .getResult(AnalyzedProperty.SUPPORTS_TLS_1_3) == TestResult.TRUE);
169
}
170
171
0 commit comments