Files
VictoriaMetrics/lib/encoding
Max Kotliar 78c0d64b6b lib/encoding: fix integer overflow in UnmarshalBytes (#10629)
Poison varint: MaxUint64 encoded as varint (0xFFFFFFFFFFFFFFFF). 
The bounds check uint64(nSize)+n overflows to 9, bypassing the guard. 
Then int(MaxUint64)=-1 makes src[10:9] which panics.
2026-03-11 12:12:19 +01:00
..
2026-02-18 14:30:30 +01:00