1. 18 5月, 2016 2 次提交
  2. 17 5月, 2016 1 次提交
  3. 16 5月, 2016 1 次提交
  4. 09 5月, 2016 3 次提交
  5. 06 5月, 2016 1 次提交
  6. 03 5月, 2016 4 次提交
    • K
      Check that we have enough padding characters. · 70428ead
      Kurt Roeckx 提交于
      Reviewed-by: NEmilia Käsper <emilia@openssl.org>
      
      CVE-2016-2107
      
      MR: #2572
      70428ead
    • M
      Ensure EVP_EncodeUpdate handles an output length that is too long · 2bd5d70c
      Matt Caswell 提交于
      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: NRichard Levitte <levitte@openssl.org>
      2bd5d70c
    • M
      Avoid overflow in EVP_EncodeUpdate · ee1e3cac
      Matt Caswell 提交于
      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: NRichard Levitte <levitte@openssl.org>
      ee1e3cac
    • M
      Fix encrypt overflow · 3f358213
      Matt Caswell 提交于
      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: NTim Hudson <tjh@openssl.org>
      3f358213
  7. 02 5月, 2016 1 次提交
  8. 29 4月, 2016 1 次提交
    • K
      Add aliases for des-ede-ecb and des-ede3-ecb ciphers. · 842dc987
      Kirill Marinushkin 提交于
      Currently we can get all block ciphers with
      	EVP_get_cipherbyname("<alg_name>-<block-mode-name>")
      for example, by names "aes-128-ecb" or "des-ede-cbc".
      I found a problem with des-ede-ecb and des-ede3-ecb ciphers as
      they can be accessed only with names:
      	EVP_get_cipherbyname("des-ede")
      	EVP_get_cipherbyname("des-ede3")
      It breaks the general concept.
      
      In this patch I add aliases which allow to use names:
      	EVP_get_cipherbyname("des-ede-ecb")
      	EVP_get_cipherbyname("des-ede3-ecb")
      in addition to the currently used names.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      842dc987
  9. 21 4月, 2016 1 次提交
  10. 20 4月, 2016 2 次提交
  11. 18 4月, 2016 2 次提交
  12. 14 4月, 2016 2 次提交
  13. 13 4月, 2016 5 次提交
  14. 30 3月, 2016 1 次提交
  15. 23 3月, 2016 1 次提交
  16. 22 3月, 2016 1 次提交
  17. 21 3月, 2016 3 次提交
  18. 19 3月, 2016 1 次提交
  19. 18 3月, 2016 2 次提交
  20. 11 3月, 2016 3 次提交
  21. 09 3月, 2016 2 次提交