1. 03 May, 2016 11 commits
    • Matt Caswell's avatar
      Prepare for 1.0.1t release · 3d2e575b
      Matt Caswell authored
      
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      OpenSSL_1_0_1t
      3d2e575b
    • Matt Caswell's avatar
      make update · 289cc052
      Matt Caswell authored
      
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      289cc052
    • Matt Caswell's avatar
      0e6b8bf4
    • Dr. Stephen Henson's avatar
      Fix ASN1_INTEGER handling. · f5da52e3
      Dr. Stephen Henson authored
      
      
      Only treat an ASN1_ANY type as an integer if it has the V_ASN1_INTEGER
      tag: V_ASN1_NEG_INTEGER is an internal only value which is never used
      for on the wire encoding.
      
      Thanks to David Benjamin <davidben@google.com> for reporting this bug.
      
      This was found using libFuzzer.
      
      RT#4364 (part)CVE-2016-2108.
      
      Reviewed-by: default avatarEmilia Käsper <emilia@openssl.org>
      f5da52e3
    • Kurt Roeckx's avatar
      Check that we have enough padding characters. · 4159f311
      Kurt Roeckx authored
      
      
      Reviewed-by: default avatarEmilia Käsper <emilia@openssl.org>
      
      CVE-2016-2107
      
      MR: #2572
      4159f311
    • Matt Caswell's avatar
      Remove some documentation for functions not in 1.0.x · e903aaf8
      Matt Caswell authored
      
      
      A few functions in the recently added EVP_EncodeInit docs don't apply to
      the 1.0.x branches.
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      e903aaf8
    • Matt Caswell's avatar
    • Matt Caswell's avatar
      Ensure EVP_EncodeUpdate handles an output length that is too long · 5d20e984
      Matt Caswell authored
      
      
      With the EVP_EncodeUpdate function it is the caller's responsibility to
      determine how big the output buffer should be. The function writes the
      amount actually used to |*outl|. However this could go negative with a
      sufficiently large value for |inl|. We add a check for this error
      condition.
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      5d20e984
    • Matt Caswell's avatar
      Avoid overflow in EVP_EncodeUpdate · 5b814481
      Matt Caswell authored
      
      
      An overflow can occur in the EVP_EncodeUpdate function which is used for
      Base64 encoding of binary data. If an attacker is able to supply very large
      amounts of input data then a length check can overflow resulting in a heap
      corruption. Due to the very large amounts of data involved this will most
      likely result in a crash.
      
      Internally to OpenSSL the EVP_EncodeUpdate function is primarly used by the
      PEM_write_bio* family of functions. These are mainly used within the
      OpenSSL command line applications, so any application which processes
      data from an untrusted source and outputs it as a PEM file should be
      considered vulnerable to this issue.
      
      User applications that call these APIs directly with large amounts of
      untrusted data may also be vulnerable.
      
      Issue reported by Guido Vranken.
      
      CVE-2016-2105
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      5b814481
    • Matt Caswell's avatar
      Prevent EBCDIC overread for very long strings · 29195161
      Matt Caswell authored
      
      
      ASN1 Strings that are over 1024 bytes can cause an overread in
      applications using the X509_NAME_oneline() function on EBCDIC systems.
      This could result in arbitrary stack data being returned in the buffer.
      
      Issue reported by Guido Vranken.
      
      CVE-2016-2176
      
      Reviewed-by: default avatarAndy Polyakov <appro@openssl.org>
      29195161
    • Matt Caswell's avatar
      Fix encrypt overflow · 56ea2245
      Matt Caswell authored
      
      
      An overflow can occur in the EVP_EncryptUpdate function. If an attacker is
      able to supply very large amounts of input data after a previous call to
      EVP_EncryptUpdate with a partial block then a length check can overflow
      resulting in a heap corruption.
      
      Following an analysis of all OpenSSL internal usage of the
      EVP_EncryptUpdate function all usage is one of two forms.
      
      The first form is like this:
      EVP_EncryptInit()
      EVP_EncryptUpdate()
      
      i.e. where the EVP_EncryptUpdate() call is known to be the first called
      function after an EVP_EncryptInit(), and therefore that specific call
      must be safe.
      
      The second form is where the length passed to EVP_EncryptUpdate() can be
      seen from the code to be some small value and therefore there is no
      possibility of an overflow.
      
      Since all instances are one of these two forms, I believe that there can
      be no overflows in internal code due to this problem.
      
      It should be noted that EVP_DecryptUpdate() can call EVP_EncryptUpdate()
      in certain code paths. Also EVP_CipherUpdate() is a synonym for
      EVP_EncryptUpdate(). Therefore I have checked all instances of these
      calls too, and came to the same conclusion, i.e. there are no instances
      in internal usage where an overflow could occur.
      
      This could still represent a security issue for end user code that calls
      this function directly.
      
      CVE-2016-2106
      
      Issue reported by Guido Vranken.
      
      Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
      (cherry picked from commit 3f358213)
      56ea2245
  2. 02 May, 2016 1 commit
  3. 29 Apr, 2016 4 commits
  4. 27 Apr, 2016 1 commit
  5. 26 Apr, 2016 1 commit
  6. 25 Apr, 2016 2 commits
  7. 23 Apr, 2016 1 commit
  8. 22 Apr, 2016 1 commit
  9. 07 Apr, 2016 1 commit
  10. 26 Mar, 2016 1 commit
  11. 18 Mar, 2016 4 commits
  12. 14 Mar, 2016 1 commit
  13. 09 Mar, 2016 1 commit
  14. 08 Mar, 2016 1 commit
  15. 07 Mar, 2016 3 commits
  16. 04 Mar, 2016 1 commit
    • Dr. Stephen Henson's avatar
      Sanity check PVK file fields. · 298d823b
      Dr. Stephen Henson authored
      
      
      PVK files with abnormally large length or salt fields can cause an
      integer overflow which can result in an OOB read and heap corruption.
      However this is an rarely used format and private key files do not
      normally come from untrusted sources the security implications not
      significant.
      
      Fix by limiting PVK length field to 100K and salt to 10K: these should be
      more than enough to cover any files encountered in practice.
      
      Issue reported by Guido Vranken.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      (cherry picked from commit 5f57abe2)
      298d823b
  17. 01 Mar, 2016 5 commits