mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Bug 758588: Heap-based buffer overread in xmlParserPrintFileContextInternal <https://bugzilla.gnome.org/show_bug.cgi?id=758588>
* parser.c: (xmlParseEndTag2): Add bounds checks before dereferencing ctxt->input->cur past the end of the buffer, or incrementing the pointer past the end of the buffer. * result/errors/758588.xml: Add test result. * result/errors/758588.xml.err: Ditto. * result/errors/758588.xml.str: Ditto. * test/errors/758588.xml: Add regression test.
This commit is contained in:
parent
cbb271655c
commit
db07dd613e
8
parser.c
8
parser.c
@ -9825,6 +9825,7 @@ static void
|
||||
xmlParseEndTag2(xmlParserCtxtPtr ctxt, const xmlChar *prefix,
|
||||
const xmlChar *URI, int line, int nsNr, int tlen) {
|
||||
const xmlChar *name;
|
||||
size_t curLength;
|
||||
|
||||
GROW;
|
||||
if ((RAW != '<') || (NXT(1) != '/')) {
|
||||
@ -9833,8 +9834,11 @@ xmlParseEndTag2(xmlParserCtxtPtr ctxt, const xmlChar *prefix,
|
||||
}
|
||||
SKIP(2);
|
||||
|
||||
if ((tlen > 0) && (xmlStrncmp(ctxt->input->cur, ctxt->name, tlen) == 0)) {
|
||||
if (ctxt->input->cur[tlen] == '>') {
|
||||
curLength = ctxt->input->end - ctxt->input->cur;
|
||||
if ((tlen > 0) && (curLength >= (size_t)tlen) &&
|
||||
(xmlStrncmp(ctxt->input->cur, ctxt->name, tlen) == 0)) {
|
||||
if ((curLength >= (size_t)(tlen + 1)) &&
|
||||
(ctxt->input->cur[tlen] == '>')) {
|
||||
ctxt->input->cur += tlen + 1;
|
||||
ctxt->input->col += tlen + 1;
|
||||
goto done;
|
||||
|
0
result/errors/758588.xml
Normal file
0
result/errors/758588.xml
Normal file
9
result/errors/758588.xml.err
Normal file
9
result/errors/758588.xml.err
Normal file
File diff suppressed because one or more lines are too long
10
result/errors/758588.xml.str
Normal file
10
result/errors/758588.xml.str
Normal file
File diff suppressed because one or more lines are too long
1
test/errors/758588.xml
Normal file
1
test/errors/758588.xml
Normal file
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user