You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
971 B

  1. From 50f06b3efb638efb0abd95dc62dca05ae67882c2 Mon Sep 17 00:00:00 2001
  2. From: Nick Wellnhofer <wellnhofer@aevum.de>
  3. Date: Fri, 7 Aug 2020 21:54:27 +0200
  4. Subject: [PATCH] Fix out-of-bounds read with 'xmllint --htmlout'
  5. Make sure that truncated UTF-8 sequences don't cause an out-of-bounds
  6. array access.
  7. Thanks to @SuhwanSong and the Agency for Defense Development (ADD) for
  8. the report.
  9. Fixes #178.
  10. ---
  11. xmllint.c | 6 ++++++
  12. 1 file changed, 6 insertions(+)
  13. --- a/xmllint.c
  14. +++ b/xmllint.c
  15. @@ -528,6 +528,12 @@ static void
  16. xmlHTMLEncodeSend(void) {
  17. char *result;
  18. + /*
  19. + * xmlEncodeEntitiesReentrant assumes valid UTF-8, but the buffer might
  20. + * end with a truncated UTF-8 sequence. This is a hack to at least avoid
  21. + * an out-of-bounds read.
  22. + */
  23. + memset(&buffer[sizeof(buffer)-4], 0, 4);
  24. result = (char *) xmlEncodeEntitiesReentrant(NULL, BAD_CAST buffer);
  25. if (result) {
  26. xmlGenericError(xmlGenericErrorContext, "%s", result);