--- Tony Anecito [Thu, Feb 26, 2009 at 02:00:17PM -0800]: ---
> Hi All,
>
>
> I got the following returned in the html and trying to figure out what
> version of SSL this Apache config supports. The numbers look like module
> numbers but not SSL version numbers but I could be wrong.
>
> Server: Apache/2.0.63 (Unix) mod_ssl/2.0.63 OpenSSL/0.9.8g\r\n
what do you mean by ``SSL version numbers''? you are running version
0.9.8g of OpenSSL.
do you really mean SSLv2, SSLv3? maybe something like this will help?
#!/bin/sh
openssl ciphers -v |
while read cipher version other; do
printf 'HEAD / HTTP/1.0\n\n' |
openssl s_client -connect 127.0.0.1:443 -cipher $cipher \
-ssl${version##*v} -quiet 2>&1 |
grep HTTP >/dev/null && echo $version $cipher
done
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [email protected]
" from the digest: [email protected]
For additional commands, e-mail: [email protected]