gpt4 book ai didi

java - 如何猜测具有 WS-Security 响应的城墙中的项目顺序?

转载 作者:太空宇宙 更新时间:2023-11-04 08:45:34 25 4
gpt4 key购买 nike

我的 axis2+rampart 客户端与某些 WS-Secured 服务器配合使用。服务器升级后(JBoss 升级,WSDL 进行了一些更改,但测试功能中没有更改),它停止工作。服务器所有者声称他们的 WS-Security 配置没有更改,但现在我的客户报告:

org.apache.axis2.AxisFault: Must Understand check failed for header http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd : Security

早些时候,当axis2.xml中的“items”顺序不好时,我得到了这个异常。我所要做的就是将这些项目组合起来。它们看起来像:

<parameter name="InflowSecurity">
<action>
<items>Signature Encrypt Timestamp</items>
...

现在这个问题又出现了。我看到回复中没有“时间戳”。我从项目中删除了它,但没有任何改变。

回复如下:

<soap:Envelope xmlns:soap="..."
xmlns:xenc="...">
<soap:Header>
<wsse:Security
xmlns:wsse="..."
soap:mustUnderstand="1">
<xenc:EncryptedKey xmlns:xenc="..."
Id="EncKeyId-B8B3555394366F3F0112919826983351032">
<xenc:EncryptionMethod Algorithm="..." />
<ds:KeyInfo xmlns:ds="...">
<wsse:SecurityTokenReference
xmlns:wsse="...">
<wsse:KeyIdentifier
...
</wsse:KeyIdentifier>
</wsse:SecurityTokenReference>
</ds:KeyInfo>
<xenc:CipherData>
<xenc:CipherValue>
...
</xenc:CipherValue>
</xenc:CipherData>
<xenc:ReferenceList>
<xenc:DataReference URI="#EncDataId-624" />
</xenc:ReferenceList>
</xenc:EncryptedKey>
<ds:Signature xmlns:ds="..."
Id="Signature-622">
<ds:SignedInfo>
<ds:CanonicalizationMethod
Algorithm="..." />
<ds:SignatureMethod Algorithm="..." />
<ds:Reference URI="#id-623">
<ds:Transforms>
<ds:Transform Algorithm="..." />
</ds:Transforms>
<ds:DigestMethod Algorithm="..." />
<ds:DigestValue>
...
</ds:DigestValue>
</ds:Reference>
</ds:SignedInfo>
<ds:SignatureValue>
...
</ds:SignatureValue>
<ds:KeyInfo Id="KeyId-B8B3555394366F3F0112919826983181029">
<wsse:SecurityTokenReference
xmlns:wsse="..."
xmlns:wsu="..."
wsu:Id="STRId-B8B3555394366F3F0112919826983181030">
<wsse:KeyIdentifier
EncodingType="..."
ValueType="...">
...
</wsse:KeyIdentifier>
</wsse:SecurityTokenReference>
</ds:KeyInfo>
</ds:Signature>
</wsse:Security>
</soap:Header>
<soap:Body xmlns:ns1="..."
xmlns:wsu="..."
wsu:Id="id-623">
<xenc:EncryptedData xmlns:xenc="..."
Id="EncDataId-624" Type="...">
<xenc:EncryptionMethod Algorithm="..." />
<ds:KeyInfo xmlns:ds="...">
<wsse:SecurityTokenReference
xmlns:wsse="...">
<wsse:Reference
xmlns:wsse="..."
URI="#EncKeyId-B8B3555394366F3F0112919826983351032" />
</wsse:SecurityTokenReference>
</ds:KeyInfo>
<xenc:CipherData>
<xenc:CipherValue>
...
</xenc:CipherValue>
</xenc:CipherData>
</xenc:EncryptedData>
</soap:Body>
</soap:Envelope>

我的问题:

  1. 我如何知道安全的哪一部分真正失败了?是否是顺序错误、缺少某些元素、某些元素多余或类似错误?
  2. 如果我拥有的只是签名和加密的回复,我如何猜测应该将哪些项目添加到 Rampart InflowSecurity 配置中?有没有办法知道我应该使用什么顺序的项目?

最佳答案

这是一个相当老的问题,但由于我刚刚结束了那段痛苦之地的旅程,我将分享答案。

a) 项目的顺序由底层 wss4j 库强制执行,而不是由 Rampart 强制执行。有问题的方法是 org.apache.ws.security.handler.WSHandler 中的 checkReceiverResults()。您可能在使用扩展 WSHandler 的 Rampart WSDoAllReceiver 时遇到了问题。

b) 好消息是 checkReceiverResults() 方法受到保护。因此,您可以扩展 WSDoAllReceiver 并重写该方法以使其更加宽松。我建议查看在 wss4j-1.5.8 中添加到 WSHandler 的 checkReceiverResultsAnyOrder() 实现。

回答你的问题:

您可以调试 checkReceiverResults() 方法来查找并“修复” axis2.xml 文件中项目的顺序。但这不是一个好方法,因为 header 的顺序可能总是会改变(SOAP header 中的元素顺序没有要求)。所以我的建议是调用 checkReceiverResultsAnyOrder() 而不是 checkReceiverResults()。

关于java - 如何猜测具有 WS-Security 响应的城墙中的项目顺序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4409438/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com