3

Is there any JVM option or Grizzly framework config file to prevent SSLv3 connections ? Somehow to disable SSLv3 and allow TLS cipher only. Any other idea is welcome.

user2050516
  • 760
  • 2
  • 5
  • 15
  • Have you considered to run GlassFish behind a reverse proxy (Apache HTTP) server? One could fix the Poodle vulnerability with just one line in the configuration file. – mjn Oct 21 '14 at 11:57
  • Maybe you can share this apache config. Even though this interface is internal on the oam interface and I have no means to put a proxy infront. – user2050516 Oct 21 '14 at 12:08
  • `SSLProtocol All -SSLv2 -SSLv3` (see also: https://bettercrypto.org/) – mjn Oct 21 '14 at 12:46

1 Answers1

2

Do you have a web admin console in GlassFish 2? In GlassFish 3, the admin can disable SSLv3 under Network Config / Network Listeners / http-listener-n / SSL tab

See screenshots at http://javadude.wordpress.com/2010/04/06/getting-started-with-glassfish-v3-and-ssl/

mjn
  • 36,362
  • 28
  • 176
  • 378