Operating System - HP-UX
1753788 Members
7883 Online
108799 Solutions
New Discussion юеВ

Re: OpenSSL CVE-2010-3864

 
SOLVED
Go to solution
Steve Hinchman
Advisor

OpenSSL CVE-2010-3864

Before version 9.08p is released by HP for distribution, the recommended fix is:

1. Confirm that internal session caching is disabled or
2. the implementation is not multi-threaded.

Can someone please tell me how perform step 1 and verify step 2.

Regards,
Steve Hinchman
4 REPLIES 4
vaasusworld
Occasional Advisor
Solution

Re: OpenSSL CVE-2010-3864

Hi,

Generally you can enables/disables session caching by setting the mode in ├в SSL_CTX_set_session_cache_mode (SSL_CTX ctx, long mode)├в function.

Mode "SSL_SESS_CACHE_OFF" means, no session caching for client or server takes place.

The default mode is SSL_SESS_CACHE_SERVER, means it is enabled by default.

You can find more information in the below link...

http://www.openssl.org/docs/ssl/SSL_CTX_set_session_cache_mode.html

Thanks & Regards,
Vasu
vaasusworld
Occasional Advisor

Re: OpenSSL CVE-2010-3864

Hi,

OpenSSL can also be used in multi-threaded applications.

Regards,
Vasu
Steve Hinchman
Advisor

Re: OpenSSL CVE-2010-3864

Vasu,

Thanks for the replies.

So, if I understand correctly, both issues are dependent upon the application calling/using OpenSSL's TSL, correct?

For example, does Tomcat need to be configured to enable/disable internal session caching? Or is it set by application using Tomcat?

Regards,
Steve
vaasusworld
Occasional Advisor

Re: OpenSSL CVE-2010-3864

>> So, if I understand correctly, both issues are dependent upon the application calling/using OpenSSL's TSL, correct?

The answer is YES.

Regards,
Vasu