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
If an entity with an index greater than 2047 is sent over the network the client's heap may be corrupted because the index is sent using only 11 bits (2^11 == 2048). Essentially the index is sent over as index % 2048. If the entity in the resulting index is not in use then the heap can be corrupted due to invalid access.
To prevent this the server should refuse to send entities with an index that would cause such a problem.
The text was updated successfully, but these errors were encountered:
If an entity with an index greater than 2047 is sent over the network the client's heap may be corrupted because the index is sent using only 11 bits (2^11 == 2048). Essentially the index is sent over as
index % 2048
. If the entity in the resulting index is not in use then the heap can be corrupted due to invalid access.To prevent this the server should refuse to send entities with an index that would cause such a problem.
The text was updated successfully, but these errors were encountered: