mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-27 21:55:07 +03:00
Fix panic on invalid handshake length
This commit is contained in:
parent
4b48fd0b5f
commit
117e4b88f8
1 changed files with 3 additions and 0 deletions
|
@ -101,6 +101,9 @@ func (m *version_metadata) decode(r io.Reader, password []byte) bool {
|
|||
return false
|
||||
}
|
||||
|
||||
if len(bs) < ed25519.SignatureSize {
|
||||
return false
|
||||
}
|
||||
sig := bs[len(bs)-ed25519.SignatureSize:]
|
||||
bs = bs[:len(bs)-ed25519.SignatureSize]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue