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
Implement setters and getters for SA fields with bounds checking to prevent overrunning buffers.
Use Case
sa.iv_len = 16 bytes, but has no bounds checking when setting sa.iv, meaning you can set > 16 bytes of memory, which overruns to other fields in the sa struct.
The text was updated successfully, but these errors were encountered:
Summary
Implement setters and getters for SA fields with bounds checking to prevent overrunning buffers.
Use Case
sa.iv_len = 16 bytes
, but has no bounds checking when settingsa.iv
, meaning you can set> 16 bytes
of memory, which overruns to other fields in the sa struct.The text was updated successfully, but these errors were encountered: