Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Disable tls ticket extention using multiple hosts share cache updates. #52

Closed
wants to merge 5 commits into from

Commits on Oct 20, 2011

  1. Setting SO_KEEPALIVE on client socket and adding option to customize …

    …keepalive timer via TCP_KEEPIDLE setsockopt
    dpaneda committed Oct 20, 2011
    Configuration menu
    Copy the full SHA
    240a062 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2011

  1. Disable SSL renegotiation to fix CVE-2009-3555.

    If OpenSSL is too old, it does not properly associate renegotiation
    handshakes with an existing connection, which allows man-in-the-middle
    attackers to insert data into HTTPS sessions, and possibly other types
    of sessions protected by TLS or SSL, by sending an unauthenticated
    request that is processed retroactively by a server in a
    post-renegotiation context, related to a "plaintext injection" attack,
    aka the "Project Mogul" issue.
    
    If OpenSSL is recent enough, it will use SSL secure renegotiation
    instead (RFC 5746). However, this feature allows an attacker to
    trigger easily a lot of handshake which would allow to DoS the server.
    
    At least, there seems to be no easy way to tell if OpenSSL is
    vulnerable to CVE-2009-3555 and therefore, in doubt, it may be better
    to disable renegotiation.
    vincentbernat committed Oct 28, 2011
    Configuration menu
    Copy the full SHA
    5317e3c View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2011

  1. Merge pull request bumptech#43 from dpaneda/master

    Patch to set SO_KEEPALIVE on client socket
    Jamie Turner committed Nov 2, 2011
    Configuration menu
    Copy the full SHA
    2f3c466 View commit details
    Browse the repository at this point in the history
  2. Merge pull request bumptech#47 from vincentbernat/feature/disablereneg

    Disable SSL renegotiation to fix CVE-2009-3555.
    Jamie Turner committed Nov 2, 2011
    Configuration menu
    Copy the full SHA
    31f724c View commit details
    Browse the repository at this point in the history
  3. Merge pull request bumptech#48 from EmericBr/b21242a3

    Some shctx optimz
    Jamie Turner committed Nov 2, 2011
    Configuration menu
    Copy the full SHA
    976c3a9 View commit details
    Browse the repository at this point in the history