注:「回避策」セクションは歴史的な理由から保持されていますが、以下の「修正」セクションまでスキップしてください。
回避策:
ここで述べたように:
良いニュース-そして、はい、良いニュースがあります-それは修正が簡単です。第一に、Linux自体にパッチが適用され、攻撃経路を阻止しています。次に、「チャレンジACK制限」を非常に大きな値に上げるだけで、攻撃を有効にしたサイドチャネルの問題を悪用することが事実上不可能に
なります。
この問題はクライアントとサーバーの両方、または実際にはネットワークを介して通信する2台のLinuxマシンの両方に影響するため、両方に回避策を実装し、リリース後すぐに修正することが重要です。
回避策を実装するには、次を実行します。
- 構成ファイルを開きます:
sudoedit /etc/sysctl.conf
net.ipv4.tcp_challenge_ack_limit = 999999999
ファイルに行を挿入して保存します
- 実行
sudo sysctl -p
して構成を更新します
ターミナルから直接操作を行うこともできます。
sudo bash -c 'echo "net.ipv4.tcp_challenge_ack_limit = 999999999" >>/etc/sysctl.conf'
または:
echo 'net.ipv4.tcp_challenge_ack_limit = 999999999' | sudo tee -a /etc/sysctl.conf
次に実行します:
sudo sysctl -p
修正:
ここで述べたように:
net/ipv4/tcp_input.c in the Linux kernel before 4.7 does not properly
determine the rate of challenge ACK segments, which makes it easier for
man-in-the-middle attackers to hijack TCP sessions via a blind in-window
attack.
...
sbeattie> fix is going to land in Ubuntu kernels in this SRU cycle,
with a likely release date of Aug 27. Earlier access to the kernels
with the fix will be available from the -proposed pocket, though they
come with the risk of being less tested.
そして、修正がリリースされました。
linux (4.4.0-36.55) xenial; urgency=low
[ Stefan Bader ]
* Release Tracking Bug
- LP: #1612305
* I2C touchpad does not work on AMD platform (LP: #1612006)
- SAUCE: pinctrl/amd: Remove the default de-bounce time
* CVE-2016-5696
- tcp: make challenge acks less predictable
-- Stefan Bader <stefan.bader@canonical.com> Thu, 11 Aug 2016 17:34:14 +0200
実行:
sudo apt-get update
sudo apt-get dist-upgrade
最新バージョンを使用していることを確認します。または、GUIを使用して更新する場合は、Software Updaterを使用します。
実行しているバージョンと使用可能なバージョンを確認するには、次のコマンドを使用します。
apt-cache policy linux-image-generic