Skip to content

Commit 63b5b75

Browse files
committed
Fixed version, cipher suite, and workflow setting
1 parent 044eb00 commit 63b5b75

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)