wijhierbeneden wrote:
> Hello
>
> I want to make a list of all the vulnerabilities in C/C++.
> I am aware of bufferoverflow/heapoverflow/race conditions/format string bugs/
> Off-by-one/ numeric under- and overflow/ unsigned-signed mismatch
>
> Are there other vulnerabilities in c/c++??
A colleague of mine once encountered
#define HASHSIZE 51 /* a small prime */
.... and since it's well beyond the capabilities of
current (or even of imagined) compilers to detect
bugs of this sort, I think we can classify this as
a built-in vulnerability of the language.
You're going to wind up with a l-o-n-g list,
you know ...
--