Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What browsers only use SSLv2? I'm planning to disable SSLv2 on our web server, and would want to know what browsers will be affected. I can't find anywhere what SSL versions Firefox 1/2 and IE6/7 support.

share|improve this question

2 Answers

up vote 18 down vote accepted

According to the book, Data Center Fundamentals, page 369, SSLv3 support was added in Netscape 2.x and Internet Explorer 3.x, and TLS was added in Netscape 4.x and Internet Explorer 4.x.

So, SSLv3 support has been widely available since 1995–1996.

My working assumption is that SSLv2-only browsers are not found outside a museum.

share|improve this answer
thanks! that's just what I was looking for. :) – ksuralta May 21 '09 at 11:50
And also note that most version of Netscape 1.x that supports SSLv2 has a weak random number generator the protocol vulnerable to additional attacks. – Yuhong Bao Dec 23 '12 at 2:54

I believe that it depends on the underlying SSL library that is being used.

share|improve this answer
1  
That doesn't really answer the question. – ksuralta May 19 '09 at 9:35
Because it depends on the library and not necessarily the browser? – sybreon May 20 '09 at 0:16
1  
Given a major number for a browser you can easily answer this question. For example, Firefox Y.Z will use version X of libfoo, where version X either supports SSLv3 or not. – Kristopher Ives Nov 3 '11 at 18:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.