LoginSignup
1
1

More than 5 years have passed since last update.

2014年 主要脆弱性 - Heartbleed, Shellshock, POODLE - への対策

Last updated at Posted at 2014-12-23

Heartbleed

対策

OpenSSLをアップデート(1.0.1gへ)するか、OpenSSLをオプション-DOPENSSL_NO_HEARTBEATS付きでリコンパイルする

  • Ubuntu 14.04ではopenssl version -aの結果1.0.1fと表示されるが、対策はなされており、脆弱ではない

Shellshock

対策

Bashをアップデートする。4.3-7ubuntu1.4, 4.2-2ubuntu2.5, 4.1-2ubuntu3.4 以上で安全。

  • Ubuntuの場合 sudo apt-get update && sudo apt-get install bash

POODLE

対策

SSL3.0に対応しないようにする

  • Nginxの場合 ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  • Apache httpd + mod_ssl の場合 SSLProtocol All -SSLv2 -SSLv3
  • AWS ELBの場合 ELBSecurityPolicy-2014-10を使用
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1