S. Das
S. Das

Reputation: 75

How to test sslv3 is enable in jetty 8 or not

My task is to disable sslv3 in my jetty-8-1-14. I went through this link: How to disable sslv3 in jetty8

But to change the code I need to check the current status of sslv3 for jetty8 server.

Is there any command by which I can get whether the sslv3 is enable or not?

Upvotes: 0

Views: 294

Answers (1)

Joakim Erdfelt
Joakim Erdfelt

Reputation: 49545

There's no command that Jetty provides, or JMX exposed MBean, to check this.

However, you can use external tool like ssllabs.com/ssltest/ or openssl's s_client

Upvotes: 0

Related Questions