Page 1 of 1

National Cyber Awareness Alert

Posted: Fri Oct 17, 2014 12:16 pm
by mklym
Got this notice a few minutes ago.

Code: Select all

TA14-290A: SSL 3.0 Protocol Vulnerability and POODLE Attack
10/17/2014 12:27 PM EDT

Original release date: October 17, 2014
Systems Affected

All systems and applications utilizing the Secure Socket Layer (SSL) 3.0 with cipher-block chaining (CBC) mode ciphers may be vulnerable. However, the POODLE (Padding Oracle On Downgraded Legacy Encryption) attack demonstrates this vulnerability using web browsers and web servers, which is one of the most likely exploitation scenarios.
Overview

US-CERT is aware of a design vulnerability found in the way SSL 3.0 handles block cipher mode padding. The POODLE attack demonstrates how an attacker can exploit this vulnerability to decrypt and extract information from inside an encrypted transaction.
Description

The SSL 3.0 vulnerability stems from the way blocks of data are encrypted under a specific type of encryption algorithm within the SSL protocol. The POODLE attack takes advantage of the protocol version negotiation feature built into SSL/TLS to force the use of SSL 3.0 and then leverages this new vulnerability to decrypt select content within the SSL session. The decryption is done byte by byte and will generate a large number of connections between the client and server.

While SSL 3.0 is an old encryption standard and has generally been replaced by Transport Layer Security (TLS) (which is not vulnerable in this way), most SSL/TLS implementations remain backwards compatible with SSL 3.0 to interoperate with legacy systems in the interest of a smooth user experience. Even if a client and server both support a version of TLS the SSL/TLS protocol suite allows for protocol version negotiation (being referred to as the “downgrade dance” in other reporting). The POODLE attack leverages the fact that when a secure connection attempt fails, servers will fall back to older protocols such as SSL 3.0. An attacker who can trigger a connection failure can then force the use of SSL 3.0 and attempt the new attack. [1]

Two other conditions must be met to successfully execute the POODLE attack: 1) the attacker must be able to control portions of the client side of the SSL connection (varying the length of the input) and 2) the attacker must have visibility of the resulting ciphertext. The most common way to achieve these conditions would be to act as Man-in-the-Middle (MITM), requiring a whole separate form of attack to establish that level of access.

These conditions make successful exploitation somewhat difficult. Environments that are already at above-average risk for MITM attacks (such as public WiFi) remove some of those challenges.
Impact

The POODLE attack can be used against any system or application that supports SSL 3.0 with CBC mode ciphers. This affects most current browsers and websites, but also includes any software that either references a vulnerable SSL/TLS library (e.g. OpenSSL) or implements the SSL/TLS protocol suite itself. By exploiting this vulnerability in a likely web-based scenario, an attacker can gain access to sensitive data passed within the encrypted web session, such as passwords, cookies and other authentication tokens that can then be used to gain more complete access to a website (impersonating that user, accessing database content, etc.).
Solution

There is currently no fix for the vulnerability SSL 3.0 itself, as the issue is fundamental to the protocol; however, disabling SSL 3.0 support in system/application configurations is the most viable solution currently available.

Some of the same researchers that discovered the vulnerability also developed a fix for one of the prerequisite conditions; TLS_FALLBACK_SCSV is a protocol extension that prevents MITM attackers from being able to force a protocol downgrade. OpenSSL has added support for TLS_FALLBACK_SCSV to their latest versions and recommend the following upgrades: [2]

    OpenSSL 1.0.1 users should upgrade to 1.0.1j.
    OpenSSL 1.0.0 users should upgrade to 1.0.0o.
    OpenSSL 0.9.8 users should upgrade to 0.9.8zc.

Both clients and servers need to support TLS_FALLBACK_SCSV to prevent downgrade attacks.

Other SSL 3.0 implementations are most likely also affected by POODLE. Contact your vendor for details. Additional vendor information may be available in the National Vulnerability Database (NVD) entry for CVE-2014-3566. [3]
References

    [1] This Poodle Bites: Exploiting The SSL Fallback
    [2] OpenSSL Security Advisory [15 Oct 2014]
    [3] Vulnerability Summary for CVE-2014-3566

Revision History

    October 17, 2014 Initial Release

Re: National Cyber Awareness Alert

Posted: Fri Oct 17, 2014 12:52 pm
by Shawn
Woof, Woof......Can someone dumb this down for a non network guy like me to understand?

I feel dumb this week

Re: National Cyber Awareness Alert

Posted: Fri Oct 17, 2014 1:17 pm
by mklym
They are saying that the old SSL 3.0 is vulnerable to attach, allowing the attacker to decrypt secure, encrypted connections.
Disabling SSL 3.0 in your browser would help. That is my take on the situation. Others may be able to add/correct info.

Re: National Cyber Awareness Alert

Posted: Fri Oct 17, 2014 2:59 pm
by kode-niner
Patched all my servers two days ago. Essentially this is a man-in-the-middle type attack where you would have to sniff on the same network as either the client or host. This is difficult to do on a wired network and someone would have to be after something specific to go through the trouble. However it gets easier on unsecured  public wifi. Just upgrade your browsers and you should be fine.

Re: National Cyber Awareness Alert

Posted: Fri Oct 17, 2014 6:37 pm
by mklym
Here is the Microsoft notice. FYI

Code: Select all

********************************************************************
Title: Microsoft Security Advisory Notification
Issued: October 17, 2014
********************************************************************

Security Advisories Updated or Released Today
==============================================

* Microsoft Security Advisory (2949927)
  - Title: Vulnerability in SSL 3.0 Could Allow Information
    Disclosure
  - https://technet.microsoft.com/library/security/2949927
  - Revision Note: V2.0 (October 17, 2014): Removed Download Center
    links for Microsoft security update 2949927. Microsoft recommends
        that customers experiencing issues uninstall this update.
        Microsoft is investigating behavior associated with this update,
        and will update the advisory when more information becomes
        available.

Re: National Cyber Awareness Alert

Posted: Fri Oct 17, 2014 8:13 pm
by mklym
There is an extension for Firefox that will set the minimum TLS version to TLS 1.0, disabling SSL v3. Here is info about it:

Code: Select all

SSL Version Control 0.2
Adds a simple preference to set the minimum SSL version that Firefox will accept.SSLv3 is now insecure, and is soon going to be disabled by default.
https://blog.mozilla.org/security/2014/10/14/the-poodle-attack-and-the-end-of-ssl-3-0/

In the meantime, you can use this extension to turn off SSLv3 in your copy of Firefox. When you install the add-on, it will set the minimum TLS version to TLS 1.0 (disabling SSLv3). If you want to change that setting later, like if you really need to access an SSLv3 site, just go to Tools / Add-ons and click the "Preferences" button next to the add-on. That will give you a drop-down menu to select the minimum TLS version you want to allow.

As of version 0.2, this add-on should work with all Mozilla products, including Firefox, Firefox for Android, Thunderbird, and Seamonkey.
https://addons.mozilla.org/en-US/firefo ... l/?src=api

Other browsers should have some method to disable SSL v3.

Re: National Cyber Awareness Alert

Posted: Fri Oct 17, 2014 8:27 pm
by ADOR
Glad I don't have to worry about this on my server, unless they are wanting to play minecraft, lol. Then they can fight the kids over it.

Re: National Cyber Awareness Alert

Posted: Mon Oct 20, 2014 4:55 am
by Toughbook
I wonder how serious this is for the average person....

Re: National Cyber Awareness Alert

Posted: Mon Oct 20, 2014 5:07 am
by Shawn
Toughbook wrote:I wonder how serious this is for the average person....

Does that imply that you think anyone here is average? I think we all missed that train long ago.

Re: National Cyber Awareness Alert

Posted: Mon Oct 20, 2014 8:23 am
by kode-niner
mklym wrote:There is an extension for Firefox that will set the minimum TLS version to TLS 1.0, disabling SSL v3. Here is info about it:

https://addons.mozilla.org/en-US/firefo ... l/?src=api

Other browsers should have some method to disable SSL v3.
No need for an add-on. Setting security.tls.version.min = 1 in about:config is sufficient.
Toughbook wrote:I wonder how serious this is for the average person....
Serious enough but easy to fix on the client side's browser while we're waiting for permanent fixes through browser upgrades.