【发布时间】:2014-02-03 20:23:58
【问题描述】:
我有一个使用 TransportSecurityBindingElement 安全元素的 WCF 自定义绑定,但客户端和(第三方)服务器上的时间准确性一直存在问题。
如何删除秒以使时间戳仅精确到分钟(我被告知服务器会接受这一点)。
我的替代想法是在每次请求之前更新系统时间,但是这假设(错误地)服务器时间是准确的。我也尝试完全删除时间戳(可能不需要),但我得到一个 System.InvalidOperationException 说 Signing without primary signature requires timestamp.
.Net 代码构建安全元素:
Dim msgSecVer As System.ServiceModel.MessageSecurityVersion = ServiceModel.MessageSecurityVersion.WSSecurity10WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10
Dim tsbe As TransportSecurityBindingElement = SecurityBindingElement.CreateCertificateOverTransportBindingElement(msgSecVer)
tsbe.EnableUnsecuredResponse = True
tsbe.SetKeyDerivation(False)
tsbe.AllowInsecureTransport = True
tsbe.IncludeTimestamp = True
'adding clock skew doesn't seem to make any difference?
Dim clockSkew As TimeSpan = TimeSpan.FromMinutes(1)
tsbe.LocalClientSettings.MaxClockSkew = clockSkew
tsbe.LocalServiceSettings.MaxClockSkew = clockSkew
Return tsbe
消息头,注意(可能超出)时间戳的准确性:
POST http://wwwqa.xxxx.com/services/
Content-Type: text/xml; charset=utf-8
VsDebuggerCausalityData: xxxx
SOAPAction: ""
Host: wwwqa.xxxx.com
Content-Length: 2400
Expect: 100-continue
Connection: Keep-Alive
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<s:Header>
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<u:Timestamp u:Id="_0">
<u:Created>2013-12-04T10:53:13.568Z</u:Created>
<u:Expires>2013-12-04T10:58:13.568Z</u:Expires>
</u:Timestamp>
<o:BinarySecurityToken u:Id="uuid-bc441202-xxxx-xxxx-a176-02f2a61a6002-1" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3">....xxxx....</o:BinarySecurityToken>
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
<SignedInfo>
<CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
<SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
<Reference URI="#_0">
<Transforms>
<Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
</Transforms>
<DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
<DigestValue>xxxx</DigestValue>
</Reference>
</SignedInfo>
<SignatureValue>xxxx</SignatureValue>
<KeyInfo>
<o:SecurityTokenReference><o:Reference URI="#uuid-bc441202-xxxx-xxxx-a176-02f2a61a6002-1"/></o:SecurityTokenReference>
</KeyInfo>
</Signature>
</o:Security>
</s:Header>
【问题讨论】:
-
我没有,但现在我添加了时钟 Skew,但它似乎对发送的消息时间戳没有任何影响。 (我看不出有什么不同,我做错了什么吗?(有问题的更新代码)。
-
时间不正确时在哪里失败,删除时间戳时你的
InvalidOperationException在哪里抛出? -
如果服务是第 3 方并且您无法控制它,时钟偏差将不起作用。客户端和服务器都必须就一个共同的偏差时钟达成一致。 BTW 默认值为 5 分钟。因此,服务器必须故意将其设置为较低的值,以防止重放攻击。
-
@Zache,调用服务时失败(对于时间戳),服务有错误,并且当我去调用服务时引发了 InvalidOp(发送消息之前的.net 错误) .
标签: .net wcf httprequest wcf-client custom-binding