且构网

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

如何在Jetty中禁用SSLv3协议以防止Poodle攻击

更新时间:2022-12-22 18:14:56

我必须在我们集成的应用程序中禁用SSLv3 Jetty源代码。根据我在代码中更改的内容,我猜您会添加以下内容:

I had to disable SSLv3 in an application where we integrate Jetty source code. Based on what I changed in code, I would guess you add the following:

<Set name="ExcludeProtocols">
    <Array type="java.lang.String">             
       <Item>SSLv3</Item>
    </Array>
</Set>

试一试,让我知道它是否适合你。

Give it a shot and let me know if it works for you.