Changes between Version 12 and Version 13 of SecurityInfo


Ignore:
Timestamp:
01/25/14 17:19:43 (3 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SecurityInfo

    v12 v13  
    88 
    99== Checking the HTTPS certificates == 
     10 
     11Following [https://security.stackexchange.com/questions/20399/how-to-verify-the-ssl-fingerprint-by-command-line-wget-curl the suggestion here] you can get the fingerprints on the the command line remotely: 
     12 
     13{{{ 
     14openssl s_client -connect transitionnetwork.org:443 < /dev/null 2>/dev/null | openssl x509 -fingerprint -noout -in /dev/stdin 
     15SHA1 Fingerprint=44:15:8B:F2:0C:D3:E6:92:9A:41:6E:FC:2A:46:36:89:90:B1:16:70 
     16}}} 
     17 
     18And on the server: 
     19 
     20{{{ 
     21cd /etc/ssl/transitionnetwork.org 
     22openssl x509 -noout -in transitionnetwork.org.crt -fingerprint 
     23SHA1 Fingerprint=44:15:8B:F2:0C:D3:E6:92:9A:41:6E:FC:2A:46:36:89:90:B1:16:70 
     24}}} 
    1025 
    1126There is [https://wiki.transitionnetwork.org/Security a page for users on the main wiki], following is some more techie info.