2007-01-16 03:44:45 +01:00
|
|
|
This is "flawfinder" by David A. Wheeler, <dwheeler@dwheeler.com>.
|
2014-07-31 05:25:10 +02:00
|
|
|
It's a simple Python program for scanning C/C++ source code
|
|
|
|
for security problems. It uses lexical scanning to find tokens
|
|
|
|
(such as function names) that suggest likely problems, estimates their
|
|
|
|
level of risk (e.g., by the text of function calls), and reports the resutlts.
|
2007-01-16 03:44:45 +01:00
|
|
|
|
|
|
|
For more information, see:
|
|
|
|
http://www.dwheeler.com/flawfinder
|
|
|
|
|
2007-01-17 00:26:02 +01:00
|
|
|
See INSTALL.txt for installation instructions.
|
2014-07-29 03:58:22 +02:00
|
|
|
It is released under the GNU GPL license version 2 or later (GPLv2+).
|
|
|
|
|