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/linuxlogo-5.11/linux_logo.h
Examining data/linuxlogo-5.11/parse_logos.c
Examining data/linuxlogo-5.11/load_logo.h
Examining data/linuxlogo-5.11/defaults.h
Examining data/linuxlogo-5.11/load_logo.c
Examining data/linuxlogo-5.11/logo_types.h
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/FreeBSD/cpuinfo_bsd.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/FreeBSD/sysinfo_bsd.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/all/uname.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/all/bogomips.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/all/fix_mhz.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/all/sysinfo_common.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/all/parsing.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Irix/sysinfo_irix.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/version.h
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/sysinfo.h
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_s390.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sh3.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_cris.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/sysinfo_linux.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_vax.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/include/uname.h
Examining data/linuxlogo-5.11/libsysinfo-0.2.2/include/generic.h
Examining data/linuxlogo-5.11/intl_test.c
Examining data/linuxlogo-5.11/linux_logo.c
Examining data/linuxlogo-5.11/tests/memory_print.c
Examining data/linuxlogo-5.11/tests/memory_method.c

FINAL RESULTS:

data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c:54:14:  [4] (shell) popen:
  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.
    if ((fff=popen("lsattr -El proc0","r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c:55:16:  [4] (buffer) fscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
       while ( fscanf(fff,"%s",(char *)&temp_string2)!=EOF) {
data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c:71:14:  [4] (shell) popen:
  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.
    if ((fff=popen("lsdev -Cc processor -SA|wc -l","r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c:76:14:  [4] (shell) popen:
  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.
    if ((fff=popen("lsattr -E -l sys0 -a realmem -F value","r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Irix/sysinfo_irix.c:46:8:  [4] (shell) popen:
  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.
   fff=popen("hinv -t memory","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/Irix/sysinfo_irix.c:57:8:  [4] (shell) popen:
  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.
   fff=popen("hinv","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/Irix/sysinfo_irix.c:62:8:  [4] (shell) popen:
  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.
   fff=popen("hinv -t cpu","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:60:7:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
	     sscanf(model_string,"%s",model_string);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:44:5:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
    sscanf(vendor_string,"%s",temp);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:46:5:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
    sscanf(model_string,"%s",temp);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:53:8:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
       sscanf(model_string,"%*s %s",temp);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:57:8:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
       sscanf(model_string,"%*s %s",temp);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:61:8:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
       sscanf(model_string,"%s",temp);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:118:8:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
       sscanf(model_string,"%*s %s",temp);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:63:8:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
       sscanf(model_string,"%*s %s",temp);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:69:8:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
       sscanf(model_string,"%*s %s",temp);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:75:8:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
       sscanf(model_string,"%*s %*s %*s %*s %s",temp);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:188:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    strcpy (op->oprom_array, prop);
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:26:9:  [4] (shell) popen:
  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.
    fff=popen("w | head -n 1","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:76:10:  [4] (shell) popen:
  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.
    pipe=popen("/usr/sbin/prtconf","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:96:10:  [4] (shell) popen:
  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.
    pipe=popen("/usr/sbin/psrinfo","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:105:10:  [4] (shell) popen:
  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.
    pipe=popen("uname -r","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:112:13:  [4] (shell) popen:
  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.
       pipe=popen("/usr/sbin/psrinfo -v","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:121:13:  [4] (shell) popen:
  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.
       pipe=popen("/usr/sbin/psrinfo -p -v","r");
data/linuxlogo-5.11/linux_logo.c:52:11:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
   return strcat(dest,src);   
data/linuxlogo-5.11/linux_logo.c:1144:8:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
       printf(ESCAPE"7");
data/linuxlogo-5.11/linux_logo.c:1152:8:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
       printf(ESCAPE"8");
data/linuxlogo-5.11/linux_logo.c:680:5:  [3] (random) srand:
  This function is not sufficiently random for security-related functions
  such as key and nonce creation (CWE-327). Use a more secure technique for
  acquiring random values.
    srand(time_time.tv_usec);   /* Not really random, but... */
data/linuxlogo-5.11/linux_logo.c:933:9:  [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.
    if (getenv("HOME")) {
data/linuxlogo-5.11/linux_logo.c:934:27:  [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.
       string_size=strlen(getenv("HOME"));
data/linuxlogo-5.11/linux_logo.c:936:23:  [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.
       strncpy(tempst,getenv("HOME"),string_size);
data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c:41:4:  [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_string2[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c:42:4:  [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 chip[BUFSIZ]="Unknown";
data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c:43:4:  [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_string[BUFSIZ],bogomips_total[BUFSIZ]="???";
data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c:44:4:  [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 bogo_total[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/FreeBSD/cpuinfo_bsd.c:22:4:  [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 val_str[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:15:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:16:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ],hardware_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:38:17:  [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).
	     cpu_count=atoi(parse_line(temp_string));
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:76:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:79:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:14:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:15:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ],hardware_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:22:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:96:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:99:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:14:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:15:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ],temp[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:24:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:59:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:62:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_cris.c:15:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_cris.c:16:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_cris.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:13:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:14:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:59:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:62:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:18:3:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:19:3:  [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	vendor_string[BUFSIZ], model_string[BUFSIZ], plain_model[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:20:3:  [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	family_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:28:14:  [2] (misc) fopen:
  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).
  if ((fff = fopen(get_cpuinfo_file(), "r")) != NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:44:14:  [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).
		 rev_int = atoi(parse_line(temp_string));
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:13:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:14:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:59:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:62:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:15:5:  [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 cpuinfo_file[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:16:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:17:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:30:12:  [2] (misc) fopen:
  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).
       fff=fopen(cpuinfo_file,"r");
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:39:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(cpuinfo_file,"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:90:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:93:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:13:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:14:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:59:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:62:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:15:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:16:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ],temp[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:25:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:75:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:78:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c:15:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c:16:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:15:5:  [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_string[BUFSIZ],temp[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:16:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:132:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:135:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_s390.c:15:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_s390.c:16:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_s390.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_s390.c:28:17:  [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).
	     cpu_count=atoi(parse_line(temp_string));
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sh3.c:15:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sh3.c:16:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sh3.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:18:5:  [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_string[BUFSIZ],temp[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:19:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:26:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:36:17:  [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).
	     cpu_count=atoi(parse_line(temp_string));	     
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:109:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:112:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:156:12:  [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.
    static char buf[4096];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:234:14:  [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).
    promfd = open("/dev/openprom", O_RDONLY);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_vax.c:15:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_vax.c:16:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_vax.c:23:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:15:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:16:5:  [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 vendor_string[BUFSIZ],model_string[BUFSIZ],plain_model[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:24:14:  [2] (misc) fopen:
  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).
    if ((fff=fopen(get_cpuinfo_file(),"r") )!=NULL) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:53:13:  [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).
		   family=atoi(parse_line(temp_string));
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:428:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
	  sprintf(temp_string,"%i86",family);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:463:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
	  sprintf(temp_string,"%i86",family);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:473:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
	  sprintf(temp_string,"%i86",family);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/sysinfo_linux.c:21:9:  [2] (misc) fopen:
  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).
    fff=fopen("/proc/uptime","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/sysinfo_linux.c:36:9:  [2] (misc) fopen:
  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).
    fff=fopen("/proc/loadavg","r");
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/sysinfo_linux.c:60:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/sysinfo_linux.c:63:15:  [2] (misc) fopen:
  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).
    if ((info=fopen("/proc/iomem", "r"))) {
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/sysinfo_linux.c:134:5:  [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_string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/sysinfo_linux.c:138:10:  [2] (misc) fopen:
  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).
    info=fopen("/proc/meminfo", "r");
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:24:5:  [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 throw_away[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:38:5:  [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_version[33];
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:73:5:  [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 string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:90:5:  [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 string[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/all/sysinfo_common.c:10:5:  [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 cpuinfo_file[BUFSIZ];
data/linuxlogo-5.11/libsysinfo-0.2.2/sysinfo.h:15:5:  [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 os_name[SYSINFO_OS_NAME_SIZE+1]; 
data/linuxlogo-5.11/libsysinfo-0.2.2/sysinfo.h:16:5:  [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 os_version[SYSINFO_OS_VERSION_SIZE+1]; 
data/linuxlogo-5.11/libsysinfo-0.2.2/sysinfo.h:17:5:  [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 os_revision[SYSINFO_OS_REVISION_SIZE+1];
data/linuxlogo-5.11/libsysinfo-0.2.2/sysinfo.h:36:4:  [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 chip_vendor[SYSINFO_CHIP_VENDOR_SIZE+1];
data/linuxlogo-5.11/libsysinfo-0.2.2/sysinfo.h:37:4:  [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 chip_type[SYSINFO_CHIP_TYPE_SIZE+1];
data/linuxlogo-5.11/linux_logo.c:171:5:  [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_string[BUFSIZ],final_string[BUFSIZ];
data/linuxlogo-5.11/linux_logo.c:202:5:  [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_version[BUFSIZ];
data/linuxlogo-5.11/linux_logo.c:255:5:  [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_string[BUFSIZ],hostname[BUFSIZ],domain[BUFSIZ];
data/linuxlogo-5.11/linux_logo.c:256:5:  [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_line[BUFSIZ];
data/linuxlogo-5.11/linux_logo.c:259:5:  [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 char_string[2]={0,0};
data/linuxlogo-5.11/linux_logo.c:927:5:  [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 config_string[BUFSIZ];
data/linuxlogo-5.11/linux_logo.c:938:20:  [2] (misc) fopen:
  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).
       config_file=fopen(tempst,"r");
data/linuxlogo-5.11/linux_logo.c:944:20:  [2] (misc) fopen:
  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).
       config_file=fopen("/etc/linux_logo.conf","r");
data/linuxlogo-5.11/linux_logo.c:1037:5:  [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_string[BUFSIZ],*temp_pointer;
data/linuxlogo-5.11/linux_logo.c:1120:10:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
	        strcpy(temp_pointer,"#L\n#H\n");
data/linuxlogo-5.11/linux_logo.c:1136:10:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
	        strcpy(temp_pointer,"#U\n#H\n");
data/linuxlogo-5.11/linux_logo.h:19:8:  [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 user_text[BUFSIZ];
data/linuxlogo-5.11/linux_logo.h:20:8:  [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 format[BUFSIZ];
data/linuxlogo-5.11/load_logo.c:12:4:  [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_st[BUFSIZ];
data/linuxlogo-5.11/load_logo.c:22:8:  [2] (misc) fopen:
  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).
   fff=fopen(filename,"r");
data/linuxlogo-5.11/parse_logos.c:52:5:  [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_st[BUFSIZ];
data/linuxlogo-5.11/parse_logos.c:57:9:  [2] (misc) fopen:
  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).
    fff=fopen("logo_config.Solaris","r");   
data/linuxlogo-5.11/parse_logos.c:59:9:  [2] (misc) fopen:
  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).
    fff=fopen("logo_config.Irix","r");
data/linuxlogo-5.11/parse_logos.c:61:9:  [2] (misc) fopen:
  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).
    fff=fopen("logo_config.BSD","r");
data/linuxlogo-5.11/parse_logos.c:63:9:  [2] (misc) fopen:
  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).
    fff=fopen("logo_config","r");
data/linuxlogo-5.11/parse_logos.c:65:9:  [2] (misc) fopen:
  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).
    ggg=fopen("load_logos.h","w");
data/linuxlogo-5.11/libsysinfo-0.2.2/AIX/sysinfo_aix.c:63:7:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
	     fscanf(fff,"%64s%64s%64s%64s%64s",(char *)&chip,(char *)&temp_string,
data/linuxlogo-5.11/libsysinfo-0.2.2/FreeBSD/cpuinfo_bsd.c:31:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
     strncpy(cpu_info->chip_type,val_str,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Irix/sysinfo_irix.c:63:4:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
   fscanf(fff,"%*s %32s %64s",cpu_info->chip_vendor,cpu_info->chip_type);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:28:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:33:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(vendor_string,parse_line(temp_string),BUFSIZ);  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:59:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_vendor,vendor_string,SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:60:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_alpha.c:84:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:27:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(vendor_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:31:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:36:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:42:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(model_string,"StrongARM",16);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:45:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(model_string,"StrongARM",14);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:48:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(model_string,"XScale",14);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:51:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(model_string,"710",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:54:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(model_string,"940",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:57:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(model_string,"Feroceon",9);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:73:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_vendor,vendor_string,SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:74:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:78:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"ARM",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:82:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"Intel",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:84:10:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    else strncpy(cpu_info->chip_vendor,"ARM",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_arm.c:104:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:21:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(vendor_string,"ATMEL",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:29:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:33:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(vendor_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:45:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_vendor,temp,SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:47:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,temp,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_avr32.c:67:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_cris.c:28:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_cris.c:43:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(cpu_info->chip_vendor,"CRIS",SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_cris.c:44:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:20:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(vendor_string,"FRV",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:28:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:46:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_vendor,vendor_string,SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:47:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_frv.c:67:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:34:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		 strncpy(vendor_string, parse_line(temp_string), BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:35:48:  [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).
    	      if (!strncmp(temp_string, "family", strlen("family")))
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:36:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		 strncpy(family_string, parse_line(temp_string), BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:41:44:  [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).
	      if (!(strncmp(temp_string, "model", strlen("model")))) 
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:42:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		 strncpy(model_string, parse_line(temp_string), BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:43:47:  [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).
	      if (!(strncmp(temp_string, "revision", strlen("revision"))))
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:61:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(cpu_info->chip_type, "Unknown", 9);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:63:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type, family_string, SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:65:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
  strncpy(cpu_info->chip_vendor, "Unknown", 9);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:80:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
      strncpy(cpu_info->chip_vendor,"Intel",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ia64.c:107:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(cpu_info->chip_type, model_string, SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:20:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(vendor_string,"m32r",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:28:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:46:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_vendor,vendor_string,SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:47:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m32r.c:67:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:27:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpuinfo_file,get_cpuinfo_file(),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:32:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpuinfo_file,"/proc/hardware",15);  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:44:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:63:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(model_string,"COLDFIRE",9);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:68:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(cpu_info->chip_vendor,"Motorola",9);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:69:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_m68k.c:98:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:20:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(vendor_string,"MicroBlaze",11);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:28:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:46:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_vendor,vendor_string,SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:47:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_microblaze.c:67:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:22:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(vendor_string,"MIPS",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:30:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:35:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(vendor_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:49:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_vendor,vendor_string,SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:50:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:54:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       strncpy(cpu_info->chip_type,temp,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:58:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       strncpy(cpu_info->chip_type,temp,SYSINFO_CHIP_TYPE_SIZE);	
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:62:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       strncpy(cpu_info->chip_type,temp,SYSINFO_CHIP_TYPE_SIZE);  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_mips.c:83:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c:34:10:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	        strncpy(vendor_string,"PA-RISC",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c:41:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c:56:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(model_string,"Forte W",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c:59:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(model_string,"Crescendo",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c:62:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_vendor,vendor_string,SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_parisc.c:63:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:28:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:58:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(cpu_info->chip_vendor,"PPC",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:59:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:62:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"POWER3",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:65:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"POWER4",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:68:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"POWER5",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:71:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"POWER6",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:74:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"POWER7",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:77:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"POWER8",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:82:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"G3",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:87:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"G3",3);	    
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:91:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"G3",3);	    
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:95:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"7400",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:101:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"G4",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:105:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"G4",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:110:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"G4",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:114:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"Cell",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:119:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       strncpy(cpu_info->chip_type,temp,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_ppc.c:140:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_s390.c:41:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(vendor_string,"IBM",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_s390.c:42:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(model_string,"S390",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_s390.c:43:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_vendor,vendor_string,SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_s390.c:44:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sh3.c:28:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sh3.c:42:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(cpu_info->chip_vendor,"SH",SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sh3.c:43:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:31:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:56:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(cpu_info->chip_vendor,"Sparc",SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:57:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:62:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"Cypress",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:64:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       strncpy(cpu_info->chip_type,temp,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:68:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"ROSS",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:70:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       strncpy(cpu_info->chip_type,temp,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:74:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"TI",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:76:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       strncpy(cpu_info->chip_type,temp,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:79:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"UltraSparc II",14);  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:85:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"SpitFire",9);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:88:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"Power-UP",9);  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:91:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"UltraSparc II",14);  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:94:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"UltraSparc III+",16);  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_sparc.c:117:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
             strncpy(hardware_string,parse_line(temp_string),
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_vax.c:29:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_vax.c:44:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(cpu_info->chip_vendor,"DEC",SYSINFO_CHIP_VENDOR_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_vax.c:45:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:31:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(vendor_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:35:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(model_string,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:41:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		      strncpy(plain_model,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:57:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(plain_model,parse_line(temp_string),BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:74:12:  [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).
       if (strlen(plain_model)>1) strncpy(model_string,plain_model,BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:74:35:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       if (strlen(plain_model)>1) strncpy(model_string,plain_model,BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:78:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"Unknown",9);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:80:10:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    else strncpy(cpu_info->chip_type,model_string,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:82:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(cpu_info->chip_vendor,"Unknown",9);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:99:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"AMD",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:104:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"K6",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:108:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"K6",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:112:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"K6-2+",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:114:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"K6-2",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:116:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"K6-2",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:118:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"K6-III",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:124:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"K5",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:129:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Athlon",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:134:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Athlon 64 X2",13);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:137:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Athlon 64",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:140:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Athlon",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:148:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Athlon XP",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:154:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Duron",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:159:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Unknown",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:164:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	 strncpy(cpu_info->chip_type,"Sempron",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:169:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	 strncpy(cpu_info->chip_type,"Turion",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:174:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Opteron",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:180:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Phenom II",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:183:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Phenom",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:189:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Geode",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:194:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Unknown",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:200:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"K6-III",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:212:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"Centaur",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:228:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_vendor,"VIA",4);	  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:229:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	  strncpy(cpu_info->chip_type,model_string+4,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:234:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Esther",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:243:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"Cyrix",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:246:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"MediaGX",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:249:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Geode",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:252:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"6x86",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:254:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"6x86MMX",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:257:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"MIII",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:259:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"MII",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:266:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"Intel",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:271:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:274:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium",8);  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:277:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium Pro",12);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:280:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium II",11);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:283:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium III",12);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:286:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium IV",11);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:292:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Pentium M",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:295:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Pentium III",12);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:299:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Xeon MP",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:304:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Atom",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:311:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Celeron M",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:314:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Celeron",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:322:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium 4",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:327:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium D",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:332:10:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	        strncpy(cpu_info->chip_type,"Pentium 4 M",12);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:335:10:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	        strncpy(cpu_info->chip_type,"Mobile Pentium 4",17);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:348:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium Xeon",16);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:352:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"i7",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:355:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"i5",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:358:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"i3",3);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:362:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Core2 Duo",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:365:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Core2 Quad",11);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:368:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Core2",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:374:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Core Duo",9);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:377:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	    strncpy(cpu_info->chip_type,"Core2 Duo",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:380:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	    strncpy(cpu_info->chip_type,"Core2 Duo",10);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:387:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	     strncpy(cpu_info->chip_type,"Pentium II",11);  
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:391:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Pentium III",12);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:396:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"QEMU Virtual",13);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:404:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"NexGen",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:411:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"NSC",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:412:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_type,"Geode",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:419:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"Rise",5);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:426:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"SiS",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:429:11:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
          strncpy(cpu_info->chip_type,temp_string,4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:439:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"Transmeta",10); 
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:442:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"Crusoe",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:450:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"UMC",4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:453:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	  strncpy(cpu_info->chip_type,"486SX",6);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:461:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
       strncpy(cpu_info->chip_vendor,"Vortex",7);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:464:11:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
          strncpy(cpu_info->chip_type,temp_string,4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:474:11:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
          strncpy(cpu_info->chip_type,temp_string,4);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:478:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	     strncpy(cpu_info->chip_type,plain_model,SYSINFO_CHIP_TYPE_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/Linux/cpuinfo_x86.c:493:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       strncpy(cpu_info->chip_type,model_string,64);
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:28:8:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
       fscanf(fff,"%64s %64s %64s %64s %64s %64s %64s %f %f %f", 
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:44:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(os_info->os_name,"Solaris",8);
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:47:13:  [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).
    while(i<strlen(os_info->os_version)) {
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:59:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(os_info->os_version,temp_version,SYSINFO_OS_VERSION_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:103:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(cpu_info->chip_vendor,"SPARC",33);
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:115:8:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
       fscanf(pipe,"%*s %64s %*s %*s %*s %f",cpu_info->chip_type,
data/linuxlogo-5.11/libsysinfo-0.2.2/SunOS/sysinfo_solaris.c:123:8:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
       fscanf(pipe,"%64s %*s %*s %*s %f",cpu_info->chip_type,
data/linuxlogo-5.11/libsysinfo-0.2.2/all/sysinfo_common.c:26:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(internal_state.cpuinfo_file,filename,BUFSIZ);
data/linuxlogo-5.11/libsysinfo-0.2.2/all/uname.c:12:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(os_info->os_name,buf.sysname,SYSINFO_OS_NAME_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/all/uname.c:13:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(os_info->os_version,buf.release,SYSINFO_OS_VERSION_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/all/uname.c:14:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(os_info->os_revision,buf.version,SYSINFO_OS_REVISION_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/all/uname.c:25:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(hostname,buf.nodename,SYSINFO_HOSTNAME_SIZE);
data/linuxlogo-5.11/libsysinfo-0.2.2/all/uname.c:27:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(domain,"Unknown",SYSINFO_DOMAIN_SIZE);  /* Can't get there from here */
data/linuxlogo-5.11/linux_logo.c:48:8:  [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).
   if (strlen(src) >= space_remaining) {
data/linuxlogo-5.11/linux_logo.c:183:51:  [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).
       vmw_strcat(final_string,temp_string,BUFSIZ-strlen(final_string));
data/linuxlogo-5.11/linux_logo.c:189:51:  [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).
       vmw_strcat(final_string,temp_string,BUFSIZ-strlen(final_string));
data/linuxlogo-5.11/linux_logo.c:194:51:  [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).
       vmw_strcat(final_string,temp_string,BUFSIZ-strlen(final_string));
data/linuxlogo-5.11/linux_logo.c:267: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(settings->format);
data/linuxlogo-5.11/linux_logo.c:283:47:  [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).
	     vmw_strcat(temp_line,char_string,BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:290:52:  [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).
	        case '#': vmw_strcat(temp_line,"#",BUFSIZ-strlen(temp_line)); break;
data/linuxlogo-5.11/linux_logo.c:299:60:  [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).
	                  vmw_strcat(temp_line,temp_string,BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:303:17:  [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).
				     BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:307:17:  [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).
				     BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:311:17:  [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).
				     BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:317:60:  [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).
	                  vmw_strcat(temp_line,temp_string,BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:330:13:  [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).
					BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:335:13:  [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).
			     if (strlen(temp_line)>0) {
data/linuxlogo-5.11/linux_logo.c:336:15:  [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).
				temp_line[strlen(temp_line)-1]=0;
data/linuxlogo-5.11/linux_logo.c:346:17:  [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).
					    BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:351:13:  [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).
					BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:355:17:  [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).
					    BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:360:17:  [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).
				     BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:366:13:  [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).
					BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:370:16:  [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).
				    BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:399:45:  [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).
                                     BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:403:55:  [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).
	                     vmw_strcat(temp_line,"s",BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:408:17:  [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).
				     BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:412:13:  [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).
					BUFSIZ-strlen(temp_line)); 
data/linuxlogo-5.11/linux_logo.c:416:17:  [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).
				     BUFSIZ-strlen(temp_line)); 
data/linuxlogo-5.11/linux_logo.c:420:16:  [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).
		   	     if (strlen(temp_line)>0) {
data/linuxlogo-5.11/linux_logo.c:421:15:  [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).
				temp_line[strlen(temp_line)-1]=0;
data/linuxlogo-5.11/linux_logo.c:426:13:  [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).
					BUFSIZ-strlen(temp_line));
data/linuxlogo-5.11/linux_logo.c:579:10:  [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).
		center(strlen(sysinfo_string[i]),settings->width,
data/linuxlogo-5.11/linux_logo.c:755:12:  [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).
       if (strlen(temp_logo->name)<8) printf("\t");
data/linuxlogo-5.11/linux_logo.c:808:26:  [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).
	            string_size=strlen(argument);
data/linuxlogo-5.11/linux_logo.c:812:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	            strncpy(settings->format,argument,BUFSIZ);
data/linuxlogo-5.11/linux_logo.c:820:22:  [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).
	            while(i<strlen(settings->format)) {
data/linuxlogo-5.11/linux_logo.c:863:10:  [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).
			  if (strlen(temp_st)>7) {
data/linuxlogo-5.11/linux_logo.c:866:10:  [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).
			  if (strlen(temp_st)>8) {
data/linuxlogo-5.11/linux_logo.c:894:14:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	            strncpy(settings->user_text,argument,BUFSIZ);
data/linuxlogo-5.11/linux_logo.c:934:20:  [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).
       string_size=strlen(getenv("HOME"));
data/linuxlogo-5.11/linux_logo.c:935:22:  [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).
       tempst=calloc(strlen(config_filename)+string_size+1,sizeof(char));
data/linuxlogo-5.11/linux_logo.c:936:8:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
       strncpy(tempst,getenv("HOME"),string_size);
data/linuxlogo-5.11/linux_logo.c:937:8:  [1] (buffer) strncat:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, snprintf,
  or automatically resizing strings.
       strncat(tempst,config_filename,strlen(config_filename));
data/linuxlogo-5.11/linux_logo.c:937:39:  [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).
       strncat(tempst,config_filename,strlen(config_filename));
data/linuxlogo-5.11/linux_logo.c:957:17:  [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).
	     for(i=0;i<strlen(config_string);i++) {
data/linuxlogo-5.11/linux_logo.c:972:16:  [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).
          size=strlen(config_string);
data/linuxlogo-5.11/linux_logo.c:979:11:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
          strncpy(fake_data,"linux_logo ",11);
data/linuxlogo-5.11/linux_logo.c:1096:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	  strncpy(settings.format,_(DEFAULT_BANNER_FORMAT),BUFSIZ);
data/linuxlogo-5.11/linux_logo.c:1099:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	  strncpy(settings.format,DEFAULT_CLASSIC_FORMAT,BUFSIZ);
data/linuxlogo-5.11/linux_logo.c:1104:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	  strncpy(temp_string,settings.format,BUFSIZ);
data/linuxlogo-5.11/linux_logo.c:1105:11:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
          strncpy(settings.format,"#E\n",BUFSIZ);
data/linuxlogo-5.11/linux_logo.c:1106:50:  [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).
	  vmw_strcat(settings.format,temp_string,BUFSIZ-strlen(settings.format));
data/linuxlogo-5.11/linux_logo.c:1116:48:  [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).
	     vmw_strcat(settings.format,"#L\n",BUFSIZ-strlen(settings.format));
data/linuxlogo-5.11/linux_logo.c:1119:11:  [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).
	     if (strlen(settings.format)+3<BUFSIZ) {
data/linuxlogo-5.11/linux_logo.c:1132:48:  [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).
	     vmw_strcat(settings.format,"#U\n",BUFSIZ-strlen(settings.format));
data/linuxlogo-5.11/linux_logo.c:1135:11:  [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).
	     if (strlen(settings.format)+3<BUFSIZ) {
data/linuxlogo-5.11/load_logo.c:38: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).
	 size+=strlen(temp_st);
data/linuxlogo-5.11/load_logo.c:45:6:  [1] (buffer) strncat:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, snprintf,
  or automatically resizing strings.
	    strncat( new_logo->logo,temp_st,strlen(temp_st));
data/linuxlogo-5.11/load_logo.c:45:38:  [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).
	    strncat( new_logo->logo,temp_st,strlen(temp_st));
data/linuxlogo-5.11/load_logo.c:52:22:  [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).
         ascii_size+=strlen(temp_st);
data/linuxlogo-5.11/load_logo.c:59:6:  [1] (buffer) strncat:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, snprintf,
  or automatically resizing strings.
	    strncat( new_logo->ascii_logo,temp_st,strlen(temp_st));
data/linuxlogo-5.11/load_logo.c:59:44:  [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).
	    strncat( new_logo->ascii_logo,temp_st,strlen(temp_st));
data/linuxlogo-5.11/load_logo.c:78:28:  [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).
	    new_logo->description[strlen(new_logo->description)-1]=0;
data/linuxlogo-5.11/load_logo.c:82:21:  [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).
	    new_logo->name[strlen(new_logo->name)-1]=0;
data/linuxlogo-5.11/parse_logos.c:17:14:  [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).
   for(i=0;i<strlen(string);i++) {
data/linuxlogo-5.11/parse_logos.c:87:12:  [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).
	  temp_st[strlen(temp_st)-1]='\0';  /* Stupid fgets */
data/linuxlogo-5.11/parse_logos.c:90:8:  [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).
	  if (strlen(temp_st)<1) break;

ANALYSIS SUMMARY:

Hits = 447
Lines analyzed = 4640 in approximately 0.20 seconds (23076 lines/second)
Physical Source Lines of Code (SLOC) = 3171
Hits@level = [0] 156 [1] 290 [2] 126 [3]   4 [4]  27 [5]   0
Hits@level+ = [0+] 603 [1+] 447 [2+] 157 [3+]  31 [4+]  27 [5+]   0
Hits/KSLOC@level+ = [0+] 190.161 [1+] 140.965 [2+] 49.5112 [3+] 9.7761 [4+] 8.51466 [5+]   0
Symlinks skipped = 3 (--allowlink overrides but see doc for security issue)
Dot directories skipped = 1 (--followdotdir overrides)
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.