réplica de
git://git.gnupg.org/gnupg.git
sincronizado 2025-07-03 22:56:33 +02:00
gpg: Fix off-by-one read in the attribute subpacket parser.
* g10/parse-packet.c (parse_attribute_subpkts): Check that the
attribute packet is large enough for the subpacket type.
--
Reported-by: Hanno Böck
Signed-off-by: Werner Koch <wk@gnupg.org>
(backported from commit 0988764397
)
Este commit está contenido en:
padre
69767ccf42
commit
2b4809406b
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
|
@ -2026,6 +2026,14 @@ parse_attribute_subpkts(PKT_user_id *uid)
|
|||
if( buflen < n )
|
||||
goto too_short;
|
||||
|
||||
if (!n)
|
||||
{
|
||||
/* Too short to encode the subpacket type. */
|
||||
if (opt.verbose)
|
||||
log_info ("attribute subpacket too short\n");
|
||||
break;
|
||||
}
|
||||
|
||||
attribs=xrealloc(attribs,(count+1)*sizeof(struct user_attribute));
|
||||
memset(&attribs[count],0,sizeof(struct user_attribute));
|
||||
|
||||
|
|
Cargando…
Añadir tabla
Añadir enlace
Referenciar en una nueva incidencia