From 7462654f06971a97960d3e12e1a3bd171a3ca01d Mon Sep 17 00:00:00 2001 From: Nestori Syynimaa <31915053+NestoriSyynimaa@users.noreply.github.com> Date: Tue, 18 Sep 2018 15:06:07 +0300 Subject: [PATCH] Added missing "DigestValue" to dictionary I added the missing "DigestValue" to dictionary between "DigestMethod" and "Address". ref: https://msdn.microsoft.com/en-us/library/cc219187.aspx --- burp_wcf_plugin/src/NBFS.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/burp_wcf_plugin/src/NBFS.cs b/burp_wcf_plugin/src/NBFS.cs index 2531faa..18cfd74 100644 --- a/burp_wcf_plugin/src/NBFS.cs +++ b/burp_wcf_plugin/src/NBFS.cs @@ -209,6 +209,7 @@ static WcfDictionaryBuilder() dict.Add("Transforms"); dict.Add("Transform"); dict.Add("DigestMethod"); + dict.Add("DigestValue"); dict.Add("Address"); dict.Add("ReplyTo"); dict.Add("SequenceAcknowledgement");