Skip to main content

Questions tagged [integer-overflow]

Filter by
Sorted by
Tagged with
1 vote
1 answer
390 views

I am trying to analyze CVE-2023-34453. As per the NVD description, there is an integer overflow error in snappy-java, specifically in the method shuffle(int[] input) in BitShuffle.java. In a huge ...
anonymous's user avatar
  • 559
0 votes
1 answer
576 views

I'm preparing for an introductory information security examination in university and this is one of the examination questions on Secure Programming. In such questions, I would usually catch for ...
Prashin Jeevaganth's user avatar
0 votes
1 answer
358 views

Something very weird happens when I control my code execution to fish out integer overflows. The control program checks the value of the overflow flag using inline assembly. Code: #include <stdio....
AXANO's user avatar
  • 899
5 votes
1 answer
5k views

In order to avoid problems with integer overflow in C or C++, some people have suggested to use unsigned integers. How can this protect against possible overflow attacks? Doesn't an unsigned integer ...
Fumerian Gaming's user avatar