User Tools

Site Tools


secure_programming

This is an old revision of the document!


Uninitialized Variables

Unchecked Return Values

  • When developing an algorithm, developers tend to focus attention on the "good" path, the path that leads to the desired result.
  • The failure paths are given lower priority or forgotten about.
    • Effort is spent on getting the algorithm correct with the intent to go back and add error checking.
    • Once the algorithm is working schedule/deadlines may make moving on to a new task seem like a good idea.
  • Always checking for error conditions while developing the "good" path is distracting to the developer.
    • Each time the developer encounters a potential failure point they are no longer thinking about the algorithm at hand but how to handle this error and whether or not it can be recovered gracefully or if the program should be aborted.
    • Once the error condition is handled, the developer must "ramp up" again on where he left off on the "good" path.
    • It becomes very tempting to put off error handling to later, at which point it is easily neglected.

Buffer Overflows

Memory Leaks

Heap Corruption

Race Conditions

secure_programming.1349042718.txt.gz · Last modified: 2023/08/18 18:15 (external edit)