Skip to content

Commit

Permalink
Merge pull request #240 from tls-attacker/fixDirectRaccoon
Browse files Browse the repository at this point in the history
Fixed DirectRaccoon probe
  • Loading branch information
NErinola authored Jun 9, 2022
2 parents 044eb00 + 63b5b75 commit 19e95b1
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public DirectRaccoonResult executeTest() {
if (suite.usesDH() && CipherSuite.getImplemented().contains(suite)) {
InformationLeakTest<DirectRaccoonOracleTestInfo> informationLeakTest =
createDirectRaccoonInformationLeakTest(pair.getVersion(), suite,
DirectRaccoonWorkflowType.CKE_CCS_FIN);
DirectRaccoonWorkflowType.CKE);
testResultList.add(informationLeakTest);

}
Expand Down Expand Up @@ -105,7 +105,11 @@ private List<VectorResponse> getVectorResponseList(ProtocolVersion version, Ciph
List<TlsTask> taskList = new LinkedList<>();
for (Boolean nullByte : withNullByteList) {
Config config = configSelector.getBaseConfig();
config.setHighestProtocolVersion(version);
config.setDefaultClientSupportedCipherSuites(suite);
config.setWorkflowExecutorShouldClose(false);
config.setStopActionsAfterWarning(false);
config.setStopReceivingAfterWarning(false);
config.setStopActionsAfterFatal(false);
config.setStopReceivingAfterFatal(false);
WorkflowTrace trace =
Expand Down

0 comments on commit 19e95b1

Please sign in to comment.