Some tools for code security checking
Posted Nov 13, 2003 7:59 UTC (Thu) by
eru (subscriber, #2753)
In reply to:
The upcoming security fight by ken
Parent article:
The upcoming security fight
Some free code analysis tools I have seen and evaluated:
Flawfinder:
http://www.dwheeler.com/flawfinder/
RATS:
http://www.securesoftware.com/download_form_rats.htm
These are both somewhat conceptually similar code scanners, about equal
in power, but one may catch things the other misses. Paranoid people
might want to run both. These are very easy to use.
Splint: http://splint.org/
Splint is quite a bit more complex tool, and for maximum benefit you need to add some annotations to your code to describe expectations about what functions do. Handles C only (Flawfinder and RATS do both C and C++.)
Jlint: http://artho.com/jlint/
This one is for Java.
(
Log in to post comments)