Skip to content

Commit 19e95b1

Browse files
authored
Merge pull request #240 from tls-attacker/fixDirectRaccoon
Fixed DirectRaccoon probe
2 parents 044eb00 + 63b5b75 commit 19e95b1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public DirectRaccoonResult executeTest() {
6161
if (suite.usesDH() && CipherSuite.getImplemented().contains(suite)) {
6262
InformationLeakTest<DirectRaccoonOracleTestInfo> informationLeakTest =
6363
createDirectRaccoonInformationLeakTest(pair.getVersion(), suite,
64-
DirectRaccoonWorkflowType.CKE_CCS_FIN);
64+
DirectRaccoonWorkflowType.CKE);
6565
testResultList.add(informationLeakTest);
6666

6767
}
@@ -105,7 +105,11 @@ private List<VectorResponse> getVectorResponseList(ProtocolVersion version, Ciph
105105
List<TlsTask> taskList = new LinkedList<>();
106106
for (Boolean nullByte : withNullByteList) {
107107
Config config = configSelector.getBaseConfig();
108+
config.setHighestProtocolVersion(version);
109+
config.setDefaultClientSupportedCipherSuites(suite);
108110
config.setWorkflowExecutorShouldClose(false);
111+
config.setStopActionsAfterWarning(false);
112+
config.setStopReceivingAfterWarning(false);
109113
config.setStopActionsAfterFatal(false);
110114
config.setStopReceivingAfterFatal(false);
111115
WorkflowTrace trace =

0 commit comments

Comments
 (0)