libexpat/expat/lib
Sebastian Pipping 1d50b80cf3 lib/xmlparse.c: Detect billion laughs attack with isolated external parser
When parsing DTD content with code like ..

  XML_Parser parser = XML_ParserCreate(NULL);
  XML_Parser ext_parser = XML_ExternalEntityParserCreate(parser, NULL, NULL);
  enum XML_Status status = XML_Parse(ext_parser, doc, (int)strlen(doc), XML_TRUE);

.. there are 0 bytes accounted as direct input and all input from `doc` accounted
as indirect input.  Now function accountingGetCurrentAmplification cannot calculate
the current amplification ratio as "(direct + indirect) / direct", and it did refuse
to divide by 0 as one would expect, but it returned 1.0 for this case to indicate
no amplification over direct input.  As a result, billion laughs attacks from
DTD-only input were not detected with this isolated way of using an external parser.

The new approach is to assume direct input of length not 0 but 22 -- derived from
ghost input "<!ENTITY a SYSTEM 'b'>", the shortest possible way to include an external
DTD --, and do the usual "(direct + indirect) / direct" math with "direct := 22".

GitHub issue #839 has more details on this issue and its origin in ClusterFuzz
finding 66812.
2024-03-06 23:41:07 +01:00
..
.gitignore Remove expat.h from .gitignore (#224) 2018-10-05 17:14:37 +02:00
ascii.h Increase precision in existing MIT headers based on Git history 2021-05-02 19:53:29 +02:00
asciitab.h Increase precision in existing MIT headers based on Git history 2021-05-02 19:53:29 +02:00
expat.h Sync file headers 2024-02-28 23:41:43 +01:00
expat_external.h Increase precision in existing MIT headers based on Git history 2021-05-02 19:53:29 +02:00
iasciitab.h Increase precision in existing MIT headers based on Git history 2021-05-02 19:53:29 +02:00
internal.h Sync file headers 2024-02-28 23:41:43 +01:00
latin1tab.h Increase precision in existing MIT headers based on Git history 2021-05-02 19:53:29 +02:00
libexpat.def.cmake Add app setting for enabling/disabling reparse heuristic 2024-01-29 17:09:36 +01:00
Makefile.am Sync file headers 2024-02-28 23:41:43 +01:00
nametab.h Increase precision in existing MIT headers based on Git history 2021-05-02 19:53:29 +02:00
siphash.h Fixed most clang -Wreserved-id-macro warnings 2022-10-25 09:06:44 -04:00
utf8tab.h Increase precision in existing MIT headers based on Git history 2021-05-02 19:53:29 +02:00
winconfig.h Sync file headers 2024-02-06 14:13:00 +01:00
xmlparse.c lib/xmlparse.c: Detect billion laughs attack with isolated external parser 2024-03-06 23:41:07 +01:00
xmlrole.c Sync file headers 2024-02-06 14:13:00 +01:00
xmlrole.h Sync file headers 2024-02-06 14:13:00 +01:00
xmltok.c Sync file headers 2024-02-06 14:13:00 +01:00
xmltok.h Sync file headers 2024-02-06 14:13:00 +01:00
xmltok_impl.c Mass-apply clang-format 17.0.3 using ./apply-clang-format.sh 2023-10-20 23:49:51 +02:00
xmltok_impl.h fix typos (#655) 2022-09-26 00:26:04 +02:00
xmltok_ns.c Sync years in file headers 2022-01-13 23:45:22 +01:00