mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
return an error when parsing a too long connection ID from a header (#3533)
This commit is contained in:
parent
7023b52e13
commit
31995601a9
2 changed files with 12 additions and 0 deletions
|
@ -29,6 +29,9 @@ func ParseConnectionID(data []byte, shortHeaderConnIDLen int) (protocol.Connecti
|
|||
return protocol.ConnectionID{}, io.EOF
|
||||
}
|
||||
destConnIDLen := int(data[5])
|
||||
if destConnIDLen > protocol.MaxConnIDLen {
|
||||
return protocol.ConnectionID{}, protocol.ErrInvalidConnectionIDLen
|
||||
}
|
||||
if len(data) < 6+destConnIDLen {
|
||||
return protocol.ConnectionID{}, io.EOF
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue