Integer Overflow
{1}Weakness: Code Review
"Range from crashes and logic errors to escalation of privilege and
execution of code. Utilized to create allocation size errors; the
attacker is then able to exploit a heap overflow [Howard]"
const long MAX_LEN = 0x7fff;
short len = strlen(input);
if(len < MAX_LEN)
Card Comments