cipher-suiteのEXPORTってなによ? cipherって? 暗号化方式のことらしいです。 AESとかDESとかRC2とかRC4とか cipher-suiteって? 暗号アルゴリズムの組み合わせらしいです。 公開鍵暗号(DHとかECDH とかDSAとかRSAとか… 高瀬 裕介ハック2015.05.22 3,084
AWSのELBに登録するSSL証明書を見る方法 証明書一覧を取得 iam-servercertlistbypath –aws-credential-file aws-credential-file 証明書の削除 iam-servercertdel –aws-cre… @iwasakiハック2015.02.19 374
curl で利用するSSLを指定してアクセスする TLSv1 を指定する curl -1 https://sample.com SSLv2 を指定する curl -2 https://sample.com SSLv3 を指定する curl -3 https://samp… nbeppuハック2014.10.20 1,400
CVE-2014-3566問題のまとめ opensslのPOODLEで脆弱性が見つかったとのことで、 SSLv3の根本の問題なので完全にFixするにはopensslの更新だけで済むところではないようです。 https://access.redhat.com/j… alkoshikawaハック2014.10.17 1,459
SSL証明書更新時のCSR作成に必要な情報を手っ取り早く取得する openssl s_client -connect {domain}:443 -showcerts でST、C、L、O、OUを取得します。 alkoshikawaハック2014.09.03 518
SSLContextを使ってSSLの有効期限を取得する import java.io.InputStream; import java.security.KeyStore; import java.security.cert.Certificate; import java.… 高瀬 裕介ハック2014.08.20 1,136
SSL証明書の中身を確認する Apache起動時に SSL Library Error: 185073780 error:0B080074:x509 certificate routines:X509_check_private_key:key va… alkoshikawaハック2014.08.14 1,391
knife solo でSSL周りの警告が出た時の対処方 SSL validation of HTTPS requests is disabled. HTTPS connections are still encrypted, but chef is not able to d… alkoshikawaハック2014.06.13 456
nginxでSSLを使う server { listen 443; ssl on; ssl_certificate /etc/pki/tls/certs/localhost.crt; ssl_certificate_key /etc/pki/tl… 高瀬 裕介ハック2014.06.12 318