1. 12 Jun, 2014 1 commit
  2. 10 Jun, 2014 1 commit
  3. 09 Jun, 2014 1 commit
  4. 06 Jun, 2014 3 commits
  5. 05 Jun, 2014 4 commits
  6. 03 Jun, 2014 5 commits
    • Dr. Stephen Henson's avatar
      Fix CVE-2014-3470 · 141a5482
      Dr. Stephen Henson authored
      Check session_cert is not NULL before dereferencing it.
      141a5482
    • Dr. Stephen Henson's avatar
      Fix CVE-2014-0221 · de2422af
      Dr. Stephen Henson authored
      Unnecessary recursion when receiving a DTLS hello request can be used to
      crash a DTLS client. Fixed by handling DTLS hello request without recursion.
      
      Thanks to Imre Rad (Search-Lab Ltd.) for discovering this issue.
      de2422af
    • Dr. Stephen Henson's avatar
      Additional CVE-2014-0224 protection. · 897169fd
      Dr. Stephen Henson authored
      Return a fatal error if an attempt is made to use a zero length
      master secret.
      897169fd
    • Dr. Stephen Henson's avatar
      Fix for CVE-2014-0224 · 410a49a4
      Dr. Stephen Henson authored
      Only accept change cipher spec when it is expected instead of at any
      time. This prevents premature setting of session keys before the master
      secret is determined which an attacker could use as a MITM attack.
      
      Thanks to KIKUCHI Masashi (Lepidum Co. Ltd.) for reporting this issue
      and providing the initial fix this patch is based on.
      410a49a4
    • Dr. Stephen Henson's avatar
      Fix for CVE-2014-0195 · 82ba68c4
      Dr. Stephen Henson authored
      A buffer overrun attack can be triggered by sending invalid DTLS fragments
      to an OpenSSL DTLS client or server. This is potentially exploitable to
      run arbitrary code on a vulnerable client or server.
      
      Fixed by adding consistency check for DTLS fragments.
      
      Thanks to Jüri Aedla for reporting this issue.
      82ba68c4
  7. 02 Jun, 2014 3 commits
  8. 01 Jun, 2014 2 commits
  9. 29 May, 2014 3 commits
  10. 27 May, 2014 1 commit
  11. 25 May, 2014 1 commit
  12. 24 May, 2014 1 commit
  13. 21 May, 2014 2 commits
  14. 15 May, 2014 1 commit
  15. 14 May, 2014 3 commits
  16. 12 May, 2014 1 commit
  17. 11 May, 2014 3 commits
  18. 08 May, 2014 1 commit
    • Dr. Stephen Henson's avatar
      Return an error if no recipient type matches. · 70ddf8ec
      Dr. Stephen Henson authored
      If the key type does not match any CMS recipient type return
      an error instead of using a random key (MMA mitigation). This
      does not leak any useful information to an attacker.
      
      PR#3348
      (cherry picked from commit 83a3182e0560f76548f4378325393461f6275493)
      70ddf8ec
  19. 06 May, 2014 3 commits
    • Geoff Thorpe's avatar
      evp: prevent underflow in base64 decoding · 9febee02
      Geoff Thorpe authored
      
      
      This patch resolves RT ticket #2608.
      
      Thanks to Robert Dugal for originally spotting this, and to David
      Ramos for noticing that the ball had been dropped.
      
      Signed-off-by: default avatarGeoff Thorpe <geoff@openssl.org>
      9febee02
    • Geoff Thorpe's avatar
      bignum: allow concurrent BN_MONT_CTX_set_locked() · a721216f
      Geoff Thorpe authored
      
      
      The lazy-initialisation of BN_MONT_CTX was serialising all threads, as
      noted by Daniel Sands and co at Sandia. This was to handle the case that
      2 or more threads race to lazy-init the same context, but stunted all
      scalability in the case where 2 or more threads are doing unrelated
      things! We favour the latter case by punishing the former. The init work
      gets done by each thread that finds the context to be uninitialised, and
      we then lock the "set" logic after that work is done - the winning
      thread's work gets used, the losing threads throw away what they've done.
      
      Signed-off-by: default avatarGeoff Thorpe <geoff@openssl.org>
      a721216f
    • Dr. Stephen Henson's avatar
      Initialize num properly. · 47f689ac
      Dr. Stephen Henson authored
      PR#3289
      PR#3345
      (cherry picked from commit 3ba1e406)
      47f689ac