Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler.
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
Examining data/aewm++-goodies-1.0/ae_fspanel-1.0/ae_fspanel.c
Examining data/aewm++-goodies-1.0/ae_fspanel-1.0/ae_fspanel.h
Examining data/aewm++-goodies-1.0/appbar-1.0/appbar.cc
Examining data/aewm++-goodies-1.0/appbar-1.0/icon.cc
Examining data/aewm++-goodies-1.0/appbar-1.0/image.cc
Examining data/aewm++-goodies-1.0/appbar-1.0/linkedlist.cc
Examining data/aewm++-goodies-1.0/appbar-1.0/main.cc
Examining data/aewm++-goodies-1.0/appbar-1.0/scanner.cc
Examining data/aewm++-goodies-1.0/setrootimage-1.0/image.cc
Examining data/aewm++-goodies-1.0/setrootimage-1.0/linkedlist.cc
Examining data/aewm++-goodies-1.0/setrootimage-1.0/setrootimage.cc
Examining data/aewm++-goodies-1.0/xsession/xsession.c

FINAL RESULTS:

data/aewm++-goodies-1.0/appbar-1.0/icon.cc:214:2:  [4] (shell) system:
  This causes a new program to execute and is difficult to use safely
  (CWE-78). try using a library call that implements the same functionality
  if available.
	system((char*)temp.c_str());
data/aewm++-goodies-1.0/appbar-1.0/appbar.cc:186:31:  [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker. They can have any content and length, and the same variable can
  be set more than once (CWE-807, CWE-20). Check environment variables
  carefully before using them.
	std::string appbar_rc_home = getenv("HOME");
data/aewm++-goodies-1.0/ae_fspanel-1.0/ae_fspanel.c:555:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char label[2];
data/aewm++-goodies-1.0/ae_fspanel-1.0/ae_fspanel.c:1116:20:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
        variable = atoi(argv[++i]);                                  \
data/aewm++-goodies-1.0/appbar-1.0/appbar.cc:192:17:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	homeConfigFile.open(appbar_rc_home.c_str());	
data/aewm++-goodies-1.0/appbar-1.0/scanner.cc:28:12:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	inputFile.open(filename);
data/aewm++-goodies-1.0/setrootimage-1.0/setrootimage.cc:47:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp_red[3] = "/0"; 
data/aewm++-goodies-1.0/setrootimage-1.0/setrootimage.cc:48:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp_green[3]= "/0"; 
data/aewm++-goodies-1.0/setrootimage-1.0/setrootimage.cc:49:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char temp_blue[3]= "/0"; 
data/aewm++-goodies-1.0/setrootimage-1.0/setrootimage.cc:77:20:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
        variable = atoi(argv[++i]);                                  \
data/aewm++-goodies-1.0/ae_fspanel-1.0/ae_fspanel.c:464:9:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		len = strlen (tk->name);

ANALYSIS SUMMARY:

Hits = 11
Lines analyzed = 7357 in approximately 0.16 seconds (45419 lines/second)
Physical Source Lines of Code (SLOC) = 5353
Hits@level = [0]  34 [1]   1 [2]   8 [3]   1 [4]   1 [5]   0
Hits@level+ = [0+]  45 [1+]  11 [2+]  10 [3+]   2 [4+]   1 [5+]   0
Hits/KSLOC@level+ = [0+] 8.4065 [1+] 2.05492 [2+] 1.86811 [3+] 0.373622 [4+] 0.186811 [5+]   0
Minimum risk level = 1
Not every hit is necessarily a security vulnerability.
There may be other security vulnerabilities; review your code!
See 'Secure Programming HOWTO'
(https://dwheeler.com/secure-programs) for more information.