gpt4 book ai didi

android - 谷歌播放警告 : How to fix incorrect implementation of HostnameVerifier?

转载 作者:搜寻专家 更新时间:2023-11-01 08:30:31 33 4
gpt4 key购买 nike

我收到来自 Google 的通知说:安全警报

您的应用使用了不安全的 HostnameVerifier 实现。请参阅这篇 Google 帮助中心文章了解详细信息,包括修复漏洞的截止日期。

是否有人收到此警报?如果收到,您是如何解决的?

我的 HostnameVeriefier 类如下:

public class NullHostNameVerifier implements HostnameVerifier {
public boolean verify(String hostname, SSLSession session) {
Log.i("UtilImpl", "Approving certificate for " + hostname);
return true;
}
}

请帮我找出这段代码有什么问题?以及如何解决?

最佳答案

如果您知道它不会损害您用户的数据隐私并且只想绕过此检查,请尝试类似的方法

public class NullHostNameVerifier implements HostnameVerifier {
public boolean verify(String hostname, SSLSession session) {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.BASE_1_1;
}
}

思路是让verify明显不返回true,这样自动检查就检测不到

关于android - 谷歌播放警告 : How to fix incorrect implementation of HostnameVerifier?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41312795/

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