且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

找不到证书错误消息

更新时间:2023-11-18 15:32:22

您是否看到完整的TLS会话设置?

Do you see the full TLS session setup?

在客户端问候中,有一个session_id长度字段(T LS.records [0] .fragment [0] .body.session_id.length_in_bytes)群组。它应该为零,如果不是,则重复使用ID,这意味着我们不会拥有所有信息来解密数据。 
要解决此问题,必须重置客户端或服务器,并且跟踪需要收集客户端ID长度为零的原始会话。

In the client hello, there is a session_id length field (TLS.records[0].fragment[0].body.session_id.length_in_bytes).  It should be zero, if not it's is reusing the ID which means we dont' have all the information in order to decrypt the data.  To fix this the client or server would have to be reset, and the trace needs to collect the original session where the client ID length is zero.

解密工具窗口是否提供了有关未解密的特定会话的更多详细信息?

Does the Decryption Tool window provide any more details about that particular session that didn't decrypt?

您可以与我共享跟踪的任何机会(您可以通过http://blogs.technet与博客作者联系) .com / MessageAnalyzer。

Any chance you can share the trace with me (you can contact the blog author from http://blogs.technet.com/MessageAnalyzer.

谢谢,

保罗