1

I'm looking for a list of all vulnerabilities that can be present in C so I can practice them all.

I found this: Category:C/C++, but it's not of much use.

0xC0000022L
  • 10,908
  • 9
  • 41
  • 79

3 Answers3

3

Not a vulnerability list by itself, but SEI CERT C Coding Standard lists many “dangerous” code patterns which can be a source of vulnerabilities.

The book The Art of Software Security Assessment is a little old by now but still contains a lot of valuable advice.

Igor Skochinsky
  • 36,553
  • 7
  • 65
  • 115
2

These CWE lists will help you a lot:

Weaknesses in software written in C

Weaknesses in software written in C++

bereal
  • 103
  • 3
KingAmir
  • 54
  • 3
1

This is a great resource. You can find most of the material on SEI CERT website but the book is great.

https://www.amazon.com/Secure-Coding-2nd-Software-Engineering/dp/0321822137

in70x
  • 131
  • 3