1. 01 10月, 2009 1 次提交
  2. 25 9月, 2009 1 次提交
  3. 24 9月, 2009 1 次提交
  4. 23 9月, 2009 2 次提交
  5. 10 9月, 2009 1 次提交
  6. 13 7月, 2009 1 次提交
  7. 20 5月, 2009 1 次提交
    • E
      TPM: get_event_name stack corruption · fbaa5869
      Eric Paris 提交于
      get_event_name uses sprintf to fill a buffer declared on the stack.  It fills
      the buffer 2 bytes at a time.  What the code doesn't take into account is that
      sprintf(buf, "%02x", data) actually writes 3 bytes.  2 bytes for the data and
      then it nul terminates the string.  Since we declare buf to be 40 characters
      long and then we write 40 bytes of data into buf sprintf is going to write 41
      characters.  The fix is to leave room in buf for the nul terminator.
      Signed-off-by: NEric Paris <eparis@redhat.com>
      Signed-off-by: NJames Morris <jmorris@namei.org>
      fbaa5869
  8. 14 5月, 2009 1 次提交
    • E
      TPM: get_event_name stack corruption · b1033870
      Eric Paris 提交于
      get_event_name uses sprintf to fill a buffer declared on the stack.  It fills
      the buffer 2 bytes at a time.  What the code doesn't take into account is that
      sprintf(buf, "%02x", data) actually writes 3 bytes.  2 bytes for the data and
      then it nul terminates the string.  Since we declare buf to be 40 characters
      long and then we write 40 bytes of data into buf sprintf is going to write 41
      characters.  The fix is to leave room in buf for the nul terminator.
      Signed-off-by: NEric Paris <eparis@redhat.com>
      Signed-off-by: NJames Morris <jmorris@namei.org>
      b1033870
  9. 25 3月, 2009 1 次提交
  10. 12 2月, 2009 1 次提交
  11. 06 2月, 2009 1 次提交
  12. 03 2月, 2009 2 次提交
  13. 09 1月, 2009 1 次提交
  14. 31 12月, 2008 1 次提交
  15. 20 10月, 2008 1 次提交
  16. 17 10月, 2008 3 次提交
  17. 11 10月, 2008 5 次提交
  18. 28 8月, 2008 1 次提交
  19. 27 7月, 2008 4 次提交
  20. 11 7月, 2008 1 次提交
  21. 03 7月, 2008 1 次提交
  22. 29 4月, 2008 2 次提交
  23. 21 4月, 2008 1 次提交
  24. 07 2月, 2008 2 次提交
  25. 15 1月, 2008 1 次提交
  26. 30 11月, 2007 1 次提交
  27. 24 10月, 2007 1 次提交