Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 403 Bytes

possibleBufferAccessOutOfBounds.md

File metadata and controls

11 lines (6 loc) · 403 Bytes

Pattern: Possible out of bounds buffer access

Issue: -

Description

Possible buffer overflow if strlen(source) is larger than or equal to sizeof(destination). The source buffer is larger than the destination buffer so there is the potential for overflowing the destination buffer.

Further Reading