You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
security: ByteBuffer: fix heap buffer overflow on slice realloc
Motivation:
ByteBuffer had a very bad (exploitable!) security vulnerability if the
following conditions are all true:
- user writes to a ByteBuffer which is a slice (slice.lowerBound != 0)
- the slice is uniquely referenced (ie. the buffer that it was sliced
from is gone)
- the write triggers a re-allocation
Then the slice is actually _larger_ than the overall available capacity
so another write to said ByteBuffer could end up out of bounds.
Modifications:
- fixed slice reallocation
Result:
- fixed security vulnerability
0 commit comments