Integer Overflow Errors

An integer overflow happens when a program tries to store an integer value that is too big for the declared integer type. Apart from incorrect results and system instability, it can also cause buffer overflows and provide an entry point for attackers. Let’s see why integer overflow errors are possible and what you can do to prevent them.

Integer Overflow Errors
An integer overflow happens when a program tries to store an integer value that is too big for the declared integer type. It is a type of arithmetic overflow error that can not only lead to incorrect results and system instability but also cause buffer overflows and provide an entry point for attackers. Let's see why integer overflow errors are possible, how they can be dangerous, and what you can do to prevent them.

Integer overflow can cause a large number to wrap around to zero

Why Integer Overflows Happen

At the most basic level, an integer overflow occurs when the result of an arithmetic operation needs more bits than the target variable has. For example, the biggest number you can store in a 32-bit unsigned integer variable is 4,294,967,295. In hexadecimal notation, this is 0xFFFFFFFF and here you can clearly see that all bytes already have maximum values (i.e. all 32 bits are set). If you have a calculation that gives a larger number, not all bits of the result will fit in the 32 bits available for this data type and you get an overflow. The behavior in an integer overflow situation depends on the hardware, compiler, and programming language. In most modern systems, the value doesn't actually overflow into adjacent memory bits but is wrapped around or truncated using a modulo operation to fit in the variable. For unsigned integers, this usually means retaining the least significant bits (for 32 bits, this would be the last 10 digits of the decimal value), in effect wrapping the result around zero. For example, if you have a 32-bit integer (unsigned) with the maximum value and increment it by 42, you might get 4,294,967,295 + 42 = 41. In some specialized hardware, such as signal processors, there is no wraparound or truncation in these cases – the maximum value is simply limited to the biggest representable positive number. For signed integer types, things get even weirder due to the way negative numbers are represented in binary. Because the leftmost bit of a signed integer is 1 only for negative numbers, when a positive value overflows, it can actually become negative. If a negative value becomes smaller than the minimum value for the current signed type, you get underflow – the negative version of overflow.

How Attackers Can Exploit Integer Overflows

Because of their undefined behavior, integer overflow and underflow errors are notoriously difficult to debug. They tend to occur in very specific cases and may silently return incorrect results, especially when combined with signedness errors. For example, a counter variable may be initialized to -1 and incremented before each read, which theoretically means it should always be 0 or positive. If something goes wrong and the counter is cast to an unsigned integer while it still negative, you may get a counter that counts down from 4,294,967,295 instead of counting up from 0. Depending on where the result is used, such a miscalculation might lead to anything from strange error messages to crashing a spacecraft. But apart from direct consequences, integer overflows can also provide a starting point for attacks. If integers originating from user inputs are used as buffer sizes, attackers may be able to manipulate these values to cause a buffer overflow, potentially leading to arbitrary code execution. Such vulnerabilities usually involve C/C++ programs that operate directly on memory buffers.

Preventing Integer Overflow Conditions

Because integer overflows occur only for specific operand values in otherwise valid code, the only reliable way to prevent them is to use overflow checks or value sanity testing for every integer operation where an overflowing value could theoretically appear. You can use built-in compiler functions or external libraries for this. Using suitably large integer types is also important, especially if big numbers will be manipulated. In programming languages such as Python, the internal types of numeric variables are automatically adjusted to match their values, which prevents basic integer overflows.
Zbigniew Banach

About the Author

Zbigniew Banach - Technical Content Lead & Managing Editor

Cybersecurity writer and blog managing editor at Invicti Security. Drawing on years of experience with security, software development, content creation, journalism, and technical translation, he does his best to bring web application security and cybersecurity in general to a wider audience.