mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: tinyxml: Fix CVE-2023-34194.
* gnu/packages/patches/tinyxml-CVE-2023-34194.patch: Add patch. * gnu/packages/xml.scm, gnu/local.mk: Record it. Signed-off-by: Zheng Junjie <z572@z572.online>
This commit is contained in:
parent
afaae8ab2f
commit
8dfd0173ee
3 changed files with 31 additions and 1 deletions
28
gnu/packages/patches/tinyxml-CVE-2023-34194.patch
Normal file
28
gnu/packages/patches/tinyxml-CVE-2023-34194.patch
Normal file
|
@ -0,0 +1,28 @@
|
|||
From: Guilhem Moulin <guilhem@debian.org>
|
||||
Date: Sat, 30 Dec 2023 14:15:54 +0100
|
||||
Subject: Avoid reachable assertion via crafted XML document with a '\0'
|
||||
located after whitespace
|
||||
|
||||
Bug: https://www.forescout.com/resources/sierra21-vulnerabilities
|
||||
Bug-Debian: https://bugs.debian.org/1059315
|
||||
Bug-Debian: https://security-tracker.debian.org/tracker/CVE-2023-34194
|
||||
Bug-Debian: https://security-tracker.debian.org/tracker/CVE-2023-40462
|
||||
---
|
||||
tinyxmlparser.cpp | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/tinyxmlparser.cpp b/tinyxmlparser.cpp
|
||||
index 8aa0dfa..1601962 100644
|
||||
--- a/tinyxmlparser.cpp
|
||||
+++ b/tinyxmlparser.cpp
|
||||
@@ -1606,6 +1606,10 @@ const char* TiXmlDeclaration::Parse( const char* p, TiXmlParsingData* data, TiXm
|
||||
}
|
||||
|
||||
p = SkipWhiteSpace( p, _encoding );
|
||||
+ if ( !p || !*p )
|
||||
+ {
|
||||
+ break;
|
||||
+ }
|
||||
if ( StringEqual( p, "version", true, _encoding ) )
|
||||
{
|
||||
TiXmlAttribute attrib;
|
Loading…
Add table
Add a link
Reference in a new issue