Chris Wenham
Chris Wenham

Reputation: 24017

Is there a Bug Encyclopedia?

Has anyone developed an encyclopedia or wiki of software bugs, either bug types (off-by-one, buffer overflow, etc.) or even just famous bugs (Grace Hopper's moth, the Arianne rocket failure, etc.)?

I was thinking that for tough situations, a cross-referenced encyclopedia of bug types, examples, and symptoms of bugs would help programmers. Especially if one could search by how the bug is manifesting itself (crashing, bad output, memory leaks, etc.).

Upvotes: 19

Views: 322

Answers (4)

Mark Hurd
Mark Hurd

Reputation: 10931

Wikipedia does have articles for many general and specific bugs, such as all the ones you named:

Upvotes: 0

Kredns
Kredns

Reputation: 37211

This ones kind of funny (if you have a cynical sense of humor):

10 Historical Software Bugs with Extreme Consequences

Upvotes: 1

Shiraz Bhaiji
Shiraz Bhaiji

Reputation: 65431

This one is written from the point of view of testers, but may still help:

http://www.riceconsulting.com/articles/20-most-common-software-problems.htm

Upvotes: 1

bua
bua

Reputation: 4880

I think this is second to none:

Top 25 Most Dangerous Programming Errors

http://cwe.mitre.org/top25/

And many more at this location...

Upvotes: 6

Related Questions