Handshake alert: unrecognized_name error

安稳与你 提交于 2019-12-09 05:37:36

问题


I am using Charles 3.7 to debug SSL connections. I was able to view most of the HTTPS connections, however there is 1 or 2 sites that returned "SSLProtocol: handshake alert: unrecognized_name" when I try to debug it, and I was unable to load the website with Charles on. I am able to do so using Fiddler. Any ideas on how to resolve this issue? Thanks.


回答1:


I came across this when using the latest beta Charles 3.10b9 on 10.10. We fixed by using a similar method to Shade's answer:

I opened info.plist in Xcode and did the following:

Under the JVMOptions (as oppose to VMOptions) key add the string:

-Djsse.enableSNIExtension=false



回答2:


Looks like this has more to do with a security improvement from Java 1.7 and server configuration than it does Charles. Can you confirm which JRM Charles is using? help -> about java

Here's an article about the same error message but after upgrading to Java 1.7:

http://www.pressingquestion.com/2030237/Ssl-Handshake-Alert-Unrecognized_name-Error-Since-Upgrade-To-Java-170

Do you need to use Charles for those sites throwing the error? You can disable SSL Proxying per site if not.




回答3:


Add -Djsse.enableSNIExtension=false to the info.plist in the Contents folder for the Charles application. In:

<key>VMOptions</key>
<string>-Xmx512m -Djsse.enableSNIExtension=false</string>



回答4:


Try using command line from project's path:

mvn clean install -Djsse.enableSNIExtension=false


来源:https://stackoverflow.com/questions/15725118/handshake-alert-unrecognized-name-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!