DESCRIPTION:
submitting "flawfinder ." does not parse the current directory (tested on Cygwin).
ANALYSIS:
line 1468: if (skipdotdir and len(base_filename) > 0 and ("." == base_filename[0])) disables all dot-directories even the dot-dir, which indicates the current directory.
CORRECTIVE ACTION:
if (skipdotdir and len(base_filename) > 1 and ("." == base_filename[0])). The Length of the...
2007-07-23 10:20:57 UTC in Flawfinder