stellar-strkey vulnerable to panic in SignedPayload::from_payload
Moderate severity
GitHub Reviewed
Published
Oct 24, 2023
in
stellar/rs-stellar-strkey
•
Updated Nov 9, 2023
Description
Published to the GitHub Advisory Database
Oct 25, 2023
Reviewed
Oct 25, 2023
Published by the National Vulnerability Database
Oct 25, 2023
Last updated
Nov 9, 2023
Impact
Panic vulnerability when a specially crafted payload is used.
This is because of the following calculation:
If
inner_payload_len
is0xffffffff
,(4 - inner_payload_len % 4) % 4 = 1
sowhich overflow.
Patches
Check that
inner_payload_len
is not above 64 which should never be the case.Patched in version 0.0.8
Workarounds
Sanitize input payload before it is passed to the vulnerable function so that bytes in
payload[32..32+4]
and parsed as au32
is not above 64.References
GitHub issue #58
References