small tips.
https://www.titania-security.com/ -> Resources -> sslscan
sslscan lists what type of SSL cipher suites your server supports.
install sslcan via apt-get
| 
# tail -1 /etc/lsb-release 
DISTRIB_DESCRIPTION="Ubuntu 12.04.2 LTS" 
# uname -ri 
3.2.0-44-generic x86_64 
# apt-get install -y sslscan | 
sslscan host:port
If you would like to know the usage of sslscan more , please check “man sslscan”
| 
# sslscan 127.0.0.1:443 
Testing SSL server 127.0.0.1 on port 443 
  Supported Server Cipher(s): 
    Failed    SSLv3  256 bits  ECDHE-RSA-AES256-GCM-SHA384 
    Failed    SSLv3  256 bits  ECDHE-ECDSA-AES256-GCM-SHA384 
  Prefered Server Cipher(s): 
    SSLv3  128 bits  RC4-SHA 
    TLSv1  128 bits  RC4-SHA 
  SSL Certificate: 
    Version: 0 
    Serial Number: -18403659056578741564 
    Signature Algorithm: sha1WithRSAEncryption | 

No comments:
Post a Comment
Note: Only a member of this blog may post a comment.