19 Deadly Sins of Software Security
Packs a nice payload of general risks that manifest themselves in a variety of languages, and the selection there-in I found opens ones mind more to comprehending the security mindset.
After reading it, going through old code made me just scream "oh damn, look at all these massive glowing red danger points! must fix!", and as a result I highly recommend that book.
A constant mindfulness of security issues is a surprisingly lacking trait in this day-and-age, which is unfortunate, because now is the time when we've needed to be mindful of it more than ever.
One Such Example:
I was before this book not taught anything about using
printf("%s", var );
instead of
printf(var);
In C. To a novice programmer there may seem nothing wrong with that. But theres a little problem where you can use the value of var to read and write to arbitrary memory locations, which can lead to memory injection based corruption, execution of arbitrary code, and as a result, local machine access.
Yuck. So much badness for such a simple thing. And apparently that simple mistake is grossly prolific in the real world.
( See http://en.wikipedia.org/wiki/Format_string_attack for a full article on this problem )