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/uudeview-0.5.20/doc/td-v1.c
Examining data/uudeview-0.5.20/doc/td-v2.c
Examining data/uudeview-0.5.20/doc/td-v3.c
Examining data/uudeview-0.5.20/inews/clientlib.c
Examining data/uudeview-0.5.20/inews/clientlib.h
Examining data/uudeview-0.5.20/inews/conf.h
Examining data/uudeview-0.5.20/inews/version.c
Examining data/uudeview-0.5.20/inews/nntp.h
Examining data/uudeview-0.5.20/inews/inews.c
Examining data/uudeview-0.5.20/tcl/uuwish.c
Examining data/uudeview-0.5.20/tcl/uutcl.c
Examining data/uudeview-0.5.20/unix/uufnflt.c
Examining data/uudeview-0.5.20/unix/uufnflt.h
Examining data/uudeview-0.5.20/unix/uudeview.c
Examining data/uudeview-0.5.20/unix/uuenview.c
Examining data/uudeview-0.5.20/uulib/crc32.c
Examining data/uudeview-0.5.20/uulib/crc32.h
Examining data/uudeview-0.5.20/uulib/fptools.c
Examining data/uudeview-0.5.20/uulib/fptools.h
Examining data/uudeview-0.5.20/uulib/uucheck.c
Examining data/uudeview-0.5.20/uulib/uudeview.h
Examining data/uudeview-0.5.20/uulib/uuencode.c
Examining data/uudeview-0.5.20/uulib/uuint.h
Examining data/uudeview-0.5.20/uulib/uuutil.c
Examining data/uudeview-0.5.20/uulib/uulib.c
Examining data/uudeview-0.5.20/uulib/uustring.c
Examining data/uudeview-0.5.20/uulib/uustring.h
Examining data/uudeview-0.5.20/uulib/uunconc.c
Examining data/uudeview-0.5.20/uulib/acconfig.h
Examining data/uudeview-0.5.20/uulib/uuscan.c
Examining data/uudeview-0.5.20/acconfig.h

FINAL RESULTS:

data/uudeview-0.5.20/inews/clientlib.c:82:10:  [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).
		(void) strcpy(buf, cp);
data/uudeview-0.5.20/inews/clientlib.c:86:11:  [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).
	  (void) strcpy (buf, cp);
data/uudeview-0.5.20/inews/clientlib.c:96:18:  [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).
          (void) strcpy (buf, NNTPSERVER);
data/uudeview-0.5.20/inews/clientlib.c:228:24:  [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( namebuf, machine );
data/uudeview-0.5.20/inews/inews.c:204:11:  [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).
	  (void) strcpy(sigfile, passwd->pw_dir);
data/uudeview-0.5.20/inews/inews.c:205: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).
	  (void) strcat(sigfile, &dotdir[1]);
data/uudeview-0.5.20/inews/inews.c:207:11:  [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).
	  (void) strcpy(sigfile, dotdir);
data/uudeview-0.5.20/inews/inews.c:306:4:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
			fprintf(ser_wr_fp, passwd->pw_name+1);
data/uudeview-0.5.20/tcl/uutcl.c:182:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (command, "%s -s \"%s\"", uue_mailprog, subject);
data/uudeview-0.5.20/tcl/uutcl.c:184:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (command, "%s", uue_mailprog);
data/uudeview-0.5.20/tcl/uutcl.c:197:7:  [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).
      strcat (command, ptr);
data/uudeview-0.5.20/tcl/uutcl.c:201:7:  [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).
      strcat (rcptlist, ptr);
data/uudeview-0.5.20/tcl/uutcl.c:207:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (command, "%s", uue_inewsprog);
data/uudeview-0.5.20/tcl/uutcl.c:216:7:  [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).
      strcat (rcptlist, ptr);
data/uudeview-0.5.20/tcl/uutcl.c:249:20:  [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 ((thepipe = popen (command, "w")) == NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:308:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf  (tmpstring, "%s %d {%s}\n", data->tclproc, level, message);
data/uudeview-0.5.20/tcl/uutcl.c:381:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (temp, " { version %s } ", version);
data/uudeview-0.5.20/tcl/uutcl.c:408:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (temp, " { prog_mailer \"%s\" } ", PROG_MAILER);
data/uudeview-0.5.20/tcl/uutcl.c:423:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (temp, " { prog_inews \"%s\" } ", PROG_INEWS);
data/uudeview-0.5.20/tcl/uutcl.c:431:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (temp, " { domainname %s } ", DOMAINNAME);
data/uudeview-0.5.20/tcl/uutcl.c:439:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (temp, " { nntpserver %s } ", NNTPSERVER);
data/uudeview-0.5.20/tcl/uutcl.c:464:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring,
data/uudeview-0.5.20/tcl/uutcl.c:472:3:  [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 (theDMcbdata.tclproc, argv[1]);
data/uudeview-0.5.20/tcl/uutcl.c:486:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring,
data/uudeview-0.5.20/tcl/uutcl.c:498:3:  [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 (theBusycbdata.tclproc, argv[1]);
data/uudeview-0.5.20/tcl/uutcl.c:544:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (tmpstring, " { %d %d {%s} %s %s {",
data/uudeview-0.5.20/tcl/uutcl.c:554:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf (t2, "%s%s%d ",
data/uudeview-0.5.20/tcl/uutcl.c:558:2:  [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).
	strcat (tmpstring, t2);
data/uudeview-0.5.20/tcl/uutcl.c:561:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	  sprintf (t2, "%s%s%d ",
data/uudeview-0.5.20/tcl/uutcl.c:565:4:  [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).
	  strcat (tmpstring, t2);
data/uudeview-0.5.20/tcl/uutcl.c:596:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring,
data/uudeview-0.5.20/tcl/uutcl.c:604:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring, "couldn't read %s: %s (%s)",
data/uudeview-0.5.20/tcl/uutcl.c:631:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring,
data/uudeview-0.5.20/tcl/uutcl.c:644:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring, "Error while decoding %s (%s): %s (%s)",
data/uudeview-0.5.20/tcl/uutcl.c:668:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring,
data/uudeview-0.5.20/tcl/uutcl.c:681:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring, "Error while decoding %s (%s): %s (%s)",
data/uudeview-0.5.20/tcl/uutcl.c:716:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
  sprintf (tmpstring, "%s insert end \"", data->widget);
data/uudeview-0.5.20/tcl/uutcl.c:755:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring,
data/uudeview-0.5.20/tcl/uutcl.c:767:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
  sprintf  (tmpstring, "%s delete 1.0 end", argv[2]);
data/uudeview-0.5.20/tcl/uutcl.c:775:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring, "Error while getting info for %s (%s): %s (%s)",
data/uudeview-0.5.20/tcl/uutcl.c:808:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring,
data/uudeview-0.5.20/tcl/uutcl.c:821:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring, "Error while decoding %s (%s): %s (%s)",
data/uudeview-0.5.20/tcl/uutcl.c:831:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
  sprintf  (tmpstring, "%s delete 1.0 end", argv[2]);
data/uudeview-0.5.20/tcl/uutcl.c:840:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring, "Could not open temp file %s of %s (%s): %s",
data/uudeview-0.5.20/tcl/uutcl.c:864:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring, "Error while reading from temp file %s of %s (%s): %s",
data/uudeview-0.5.20/tcl/uutcl.c:889:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring,
data/uudeview-0.5.20/tcl/uutcl.c:907:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (tmpstring,
data/uudeview-0.5.20/tcl/uutcl.c:1030:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (errstring, "error while encoding %s to file: %s (%s)", argv[1],
data/uudeview-0.5.20/tcl/uutcl.c:1079:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (errstring, "error while emailing %s: %s (%s)", argv[1],
data/uudeview-0.5.20/tcl/uutcl.c:1128:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (errstring, "error while posting %s: %s (%s)", argv[1],
data/uudeview-0.5.20/unix/uudeview.c:350:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (newName, "%s.%d", originalName, i);
data/uudeview-0.5.20/unix/uudeview.c:353:7:  [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 (newName, originalName);
data/uudeview-0.5.20/unix/uudeview.c:355:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf (p, "_%d%s", i, strchr (originalName, '.'));
data/uudeview-0.5.20/unix/uudeview.c:358:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf (newName, "%s_%d", originalName, i);
data/uudeview-0.5.20/unix/uudeview.c:476:3:  [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(stdfile, tmpdir);
data/uudeview-0.5.20/unix/uudeview.c:478:3:  [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).
  strcat(stdfile, tmpprefix);
data/uudeview-0.5.20/unix/uudeview.c:745:9:  [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 (savepath, argv[++number]);
data/uudeview-0.5.20/unix/uudeview.c:748:6:  [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).
	    strcat (savepath, DIRSEPARATOR);
data/uudeview-0.5.20/unix/uudeview.c:1095:6:  [4] (race) access:
  This usually indicates a security flaw. If an attacker can change anything
  along the path between the call to access() and the file's actual use
  (e.g., by moving files), the attacker can exploit the race condition
  (CWE-362/CWE-367!). Set up the correct permissions (e.g., using setuid())
  and try to open the file directly.
	if (access(ptr1, W_OK|X_OK) == 0) {
data/uudeview-0.5.20/unix/uudeview.c:1107:2:  [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 (savepath, ptr1);
data/uudeview-0.5.20/unix/uudeview.c:1110:6:  [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).
	    strcat (savepath, DIRSEPARATOR);
data/uudeview-0.5.20/unix/uudeview.c:1149:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (targetname, "%s%s%s",
data/uudeview-0.5.20/unix/uudeview.c:1165:2:  [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 (targetname, renamedname);
data/uudeview-0.5.20/unix/uudeview.c:1237:6:  [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 (savepath, ptr1);
data/uudeview-0.5.20/unix/uudeview.c:1240:3:  [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).
		strcat (savepath, DIRSEPARATOR);
data/uudeview-0.5.20/unix/uudeview.c:1289:8:  [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 (ptr2, iter->binfile);
data/uudeview-0.5.20/unix/uudeview.c:1306:2:  [4] (shell) system:
  This causes a new program to execute and is difficult to use safely
  (CWE-78). try using a library call that implements the same functionality
  if available.
	system (command);
data/uudeview-0.5.20/unix/uudeview.c:1533:7:  [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).
      strcat (savepath, DIRSEPARATOR);
data/uudeview-0.5.20/unix/uuenview.c:321:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (command, "%s -s \"%s\"", uue_mailprog, subject);
data/uudeview-0.5.20/unix/uuenview.c:323:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (command, "%s", uue_mailprog);
data/uudeview-0.5.20/unix/uuenview.c:336:7:  [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).
      strcat (command, ptr);
data/uudeview-0.5.20/unix/uuenview.c:341:7:  [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).
      strcat (*rcptlist, ptr);
data/uudeview-0.5.20/unix/uuenview.c:348:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (command, "%s", uue_inewsprog);
data/uudeview-0.5.20/unix/uuenview.c:357:7:  [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).
      strcat (*rcptlist, ptr);
data/uudeview-0.5.20/unix/uuenview.c:396:20:  [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 ((thepipe = popen (command, "w")) == NULL) {
data/uudeview-0.5.20/unix/uuenview.c:487:4:  [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 (boundary, ParseValue (ptr));
data/uudeview-0.5.20/unix/uuenview.c:747:20:  [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 ((thepipe = popen (command, "w")) == NULL) {
data/uudeview-0.5.20/unix/uuenview.c:975:6:  [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 (outdir, myargv[++index]);
data/uudeview-0.5.20/unix/uuenview.c:980:3:  [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).
		strcat (outdir, DIRSEPARATOR);
data/uudeview-0.5.20/unix/uuenview.c:1208:6:  [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 (filename, myargv[index]);
data/uudeview-0.5.20/unix/uuenview.c:1214:4:  [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 (usename, myargv[index+1]);
data/uudeview-0.5.20/unix/uuenview.c:1224:4:  [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 (usename, myargv[index]);
data/uudeview-0.5.20/unix/uuenview.c:1239:4:  [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 (usename, myargv[index+1]);
data/uudeview-0.5.20/unix/uuenview.c:1249:2:  [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 (filename, myargv[index]);
data/uudeview-0.5.20/unix/uuenview.c:1250:2:  [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 (usename,  filename);
data/uudeview-0.5.20/uulib/fptools.c:96:3:  [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 (result, string);
data/uudeview-0.5.20/uulib/uucheck.c:748:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (temp, "%s.%03d", nofname, ++nofnum);
data/uudeview-0.5.20/uulib/uucheck.c:781:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (temp, "%s.%03d", nofname, ++nofnum);
data/uudeview-0.5.20/uulib/uucheck.c:835:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
        sprintf (temp, "%s.%03d", nofname, ++nofnum);
data/uudeview-0.5.20/uulib/uucheck.c:1446:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
        sprintf (uucheck_tempname, "%s.%03d", nofname, ++nofnum);
data/uudeview-0.5.20/uulib/uuencode.c:1212:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (oname, "%s", diskname);
data/uudeview-0.5.20/uulib/uuencode.c:1223:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (oname, "%s%s", (uusavepath)?uusavepath:"", diskname);
data/uudeview-0.5.20/uulib/uuencode.c:1237:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (oname, "%s%s", 
data/uudeview-0.5.20/uulib/uuencode.c:1315:7:  [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  (optr, uuencodeext);
data/uudeview-0.5.20/uulib/uuencode.c:1548:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (subline, "- %s - %s (001/001)", oname, subject);
data/uudeview-0.5.20/uulib/uuencode.c:1550:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (subline, "- %s - (001/001)", oname);
data/uudeview-0.5.20/uulib/uuencode.c:1554:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (subline, "%s (001/001) - [ %s ]", subject, oname);
data/uudeview-0.5.20/uulib/uuencode.c:1556:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (subline, "[ %s ] (001/001)", oname);
data/uudeview-0.5.20/uulib/uuencode.c:1715:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (mimeid, "UUDV-%ld.%ld.%s",
data/uudeview-0.5.20/uulib/uuencode.c:1733:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (subline, "- %s - %s (%03d/%03d)", oname, subject,
data/uudeview-0.5.20/uulib/uuencode.c:1736:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (subline, "- %s - (%03d/%03d)", oname,
data/uudeview-0.5.20/uulib/uuencode.c:1741:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (subline, "%s (%03d/%03d) - [ %s ]", 
data/uudeview-0.5.20/uulib/uuencode.c:1744:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf (subline, "[ %s ] (%03d/%03d)",
data/uudeview-0.5.20/uulib/uulib.c:287:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (uulib_msgstring, "%s(%d): %s", file, line, msgnames[level]);
data/uudeview-0.5.20/uulib/uulib.c:291:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (uulib_msgstring, "%s", msgnames[level]);
data/uudeview-0.5.20/uulib/uulib.c:296:5:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
    vsprintf (msgptr, format, ap);
data/uudeview-0.5.20/uulib/uulib.c:932: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 (uugen_fnbuffer, destname);
data/uudeview-0.5.20/uulib/uulib.c:934:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf (uugen_fnbuffer, "%s%s",
data/uudeview-0.5.20/uulib/uunconc.c:654:7:  [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 (uuncdl_fulline+leftover, s);
data/uudeview-0.5.20/uulib/uunconc.c:684:7:  [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 (uuncdl_fulline+leftover, s);
data/uudeview-0.5.20/uulib/uunconc.c:1357:3:  [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(data->binfile, tmpdir);
data/uudeview-0.5.20/uulib/uunconc.c:1359:3:  [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).
  strcat(data->binfile, tmpprefix);
data/uudeview-0.5.20/uulib/uunconc.c:1557: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(ntmp, tmpdir);
data/uudeview-0.5.20/uulib/uunconc.c:1559:5:  [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).
    strcat(ntmp, tmpprefix); 
data/uudeview-0.5.20/acconfig.h:72:8:  [3] (tmpfile) tempnam:
  Temporary file race condition (CWE-377).
#undef tempnam
data/uudeview-0.5.20/inews/clientlib.c:81:11:  [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 (cp = getenv("NNTPSERVER")) {
data/uudeview-0.5.20/inews/clientlib.c:85:11:  [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 (cp = getenv("NNTP_SERVER")) {
data/uudeview-0.5.20/inews/inews.c:197:16:  [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 ((dotdir = getenv("DOTDIR")) == NULL)
data/uudeview-0.5.20/inews/inews.c:265:14:  [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.
	full_name = getenv("NAME");
data/uudeview-0.5.20/unix/uudeview.c:459: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.
	tmpdir=getenv("TMPDIR");
data/uudeview-0.5.20/unix/uudeview.c:469:18:  [3] (tmpfile) tempnam:
  Temporary file race condition (CWE-377).
  if ((stdfile = tempnam (NULL, "uu")) == NULL) {
data/uudeview-0.5.20/unix/uudeview.c:856:12:  [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 ((p = getenv ("LINES")) != NULL) {
data/uudeview-0.5.20/unix/uudeview.c:863:12:  [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 ((p = getenv ("COLUMNS")) != NULL) {
data/uudeview-0.5.20/unix/uudeview.c:1517:8:  [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 ("UUDEVIEW")) != NULL) {
data/uudeview-0.5.20/unix/uudeview.c:1518:17:  [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.
    makeparams (getenv ("UUDEVIEW"));
data/uudeview-0.5.20/unix/uuenview.c:873:7:  [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 ("INEWS") && *(char *)getenv ("INEWS")) {
data/uudeview-0.5.20/unix/uuenview.c:873:36:  [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 ("INEWS") && *(char *)getenv ("INEWS")) {
data/uudeview-0.5.20/unix/uuenview.c:874:21:  [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.
    uue_inewsprog = getenv ("INEWS");
data/uudeview-0.5.20/unix/uuenview.c:884:22:  [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 ((p1 = (char *) getenv ("UUENVIEW"))) {
data/uudeview-0.5.20/uulib/acconfig.h:42:8:  [3] (tmpfile) tempnam:
  Temporary file race condition (CWE-377).
#undef tempnam
data/uudeview-0.5.20/uulib/fptools.c:527:22:  [3] (tmpfile) tmpnam:
  Temporary file race condition (CWE-377).
  return _FP_strdup (tmpnam (NULL));
data/uudeview-0.5.20/uulib/uunconc.c:1339:11:  [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.
	  tmpdir=getenv("TMPDIR");
data/uudeview-0.5.20/uulib/uunconc.c:1349:24:  [3] (tmpfile) tempnam:
  Temporary file race condition (CWE-377).
  if ((data->binfile = tempnam (NULL, "uu")) == NULL) {
data/uudeview-0.5.20/uulib/uunconc.c:1540:17:  [3] (tmpfile) tempnam:
  Temporary file race condition (CWE-377).
    if ((ntmp = tempnam (NULL, "uu")) == NULL) {
data/uudeview-0.5.20/doc/td-v3.c:16:10:  [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 dname[13];
data/uudeview-0.5.20/inews/clientlib.c:79:9:  [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[256];
data/uudeview-0.5.20/inews/clientlib.c:104:7:  [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).
	fp = fopen(file, "r");
data/uudeview-0.5.20/inews/clientlib.c:140:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char	line[256];
data/uudeview-0.5.20/inews/clientlib.c:180:10:  [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).
	return (atoi(line));
data/uudeview-0.5.20/inews/clientlib.c:224:23:  [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 *alist[1];
data/uudeview-0.5.20/inews/clientlib.c:225:23:  [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 namebuf[ 256 ];
data/uudeview-0.5.20/inews/clientlib.c:274:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy ((char *)&sin.sin_addr, *cp, hp->h_length);
data/uudeview-0.5.20/inews/clientlib.c:320:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy ((char *)&sin.sin_addr, hp->h_addr, hp->h_length);
data/uudeview-0.5.20/inews/clientlib.c:378:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
			  memcpy ((char *) sdn.sdn_add.a_addr,
data/uudeview-0.5.20/inews/clientlib.c:390:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy (&sdn.sdn_objname[0], "NNTP", sdn.sdn_objnamel);
data/uudeview-0.5.20/inews/clientlib.c:542:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char	ser_line[256];
data/uudeview-0.5.20/inews/inews.c:48:1:  [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	host_name[256];
data/uudeview-0.5.20/inews/inews.c:54:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char	line[NNTP_STRLEN], s[NNTP_STRLEN];
data/uudeview-0.5.20/inews/inews.c:104:7:  [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).
		if (atoi(line) == ERR_NOPOST) {
data/uudeview-0.5.20/inews/inews.c:152:7:  [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).
		if (atoi(line) == ERR_POSTFAIL) {
data/uudeview-0.5.20/inews/inews.c:186:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char	line[256], sigfile[256];
data/uudeview-0.5.20/inews/inews.c:210:9:  [2] (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). Risk is low because the
  source is a constant string.
	(void) strcat(sigfile, ".signature");
data/uudeview-0.5.20/inews/inews.c:216:7:  [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).
	fp = fopen(sigfile, "r");
data/uudeview-0.5.20/tcl/uutcl.c:93: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 tclproc[256];
data/uudeview-0.5.20/tcl/uutcl.c:238:21:  [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 ((theifile = fopen (infname, "rb")) == NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:305: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 tmpstring[2048];
data/uudeview-0.5.20/tcl/uutcl.c:338:30:  [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).
    UUSetOption (UUOPT_FAST, atoi (cval), NULL);
data/uudeview-0.5.20/tcl/uutcl.c:340:34:  [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).
    UUSetOption (UUOPT_BRACKPOL, atoi (cval), NULL);
data/uudeview-0.5.20/tcl/uutcl.c:342:35:  [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).
    UUSetOption (UUOPT_DESPERATE, atoi (cval), NULL);
data/uudeview-0.5.20/tcl/uutcl.c:344:31:  [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).
    UUSetOption (UUOPT_DEBUG, atoi (cval), NULL);
data/uudeview-0.5.20/tcl/uutcl.c:346:34:  [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).
    UUSetOption (UUOPT_DUMBNESS, atoi (cval), NULL);
data/uudeview-0.5.20/tcl/uutcl.c:348:33:  [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).
    UUSetOption (UUOPT_USETEXT, atoi (cval), NULL);
data/uudeview-0.5.20/tcl/uutcl.c:352:32:  [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).
    UUSetOption (UUOPT_REMOVE, atoi (cval), NULL);
data/uudeview-0.5.20/tcl/uutcl.c:354:34:  [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).
    UUSetOption (UUOPT_MOREMIME, atoi (cval), NULL);
data/uudeview-0.5.20/tcl/uutcl.c:377: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[64], version[64];
data/uudeview-0.5.20/tcl/uutcl.c:459: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 tmpstring[256];
data/uudeview-0.5.20/tcl/uutcl.c:480: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 tmpstring[256];
data/uudeview-0.5.20/tcl/uutcl.c:493:23:  [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).
  if ((msecs = (long) atoi (argv[2])) > 0) {
data/uudeview-0.5.20/tcl/uutcl.c:507: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 tmpstring[32];
data/uudeview-0.5.20/tcl/uutcl.c:514:3:  [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 (tmpstring, "%d", progress.action);
data/uudeview-0.5.20/tcl/uutcl.c:519:3:  [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 (tmpstring, "%d", progress.partno);
data/uudeview-0.5.20/tcl/uutcl.c:522:3:  [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 (tmpstring, "%d", progress.numparts);
data/uudeview-0.5.20/tcl/uutcl.c:525:3:  [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 (tmpstring, "%d", progress.percent);
data/uudeview-0.5.20/tcl/uutcl.c:535: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 tmpstring[1024], t2[42];
data/uudeview-0.5.20/tcl/uutcl.c:570:2:  [2] (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). Risk is low because the
  source is a constant string.
	strcat (tmpstring, "OK");
data/uudeview-0.5.20/tcl/uutcl.c:572:7:  [2] (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). Risk is low because the
  source is a constant string.
      strcat (tmpstring, "} }");
data/uudeview-0.5.20/tcl/uutcl.c:590: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 tmpstring[256];
data/uudeview-0.5.20/tcl/uutcl.c:624: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 tmpstring[256];
data/uudeview-0.5.20/tcl/uutcl.c:638:34:  [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).
  if ((iter = UUGetFileListItem (atoi (argv[1]))) == NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:661: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 tmpstring[256];
data/uudeview-0.5.20/tcl/uutcl.c:675:34:  [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).
  if ((iter = UUGetFileListItem (atoi (argv[1]))) == NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:714: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 tmpstring[1024], *p;
data/uudeview-0.5.20/tcl/uutcl.c:748: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 tmpstring[256];
data/uudeview-0.5.20/tcl/uutcl.c:762:34:  [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).
  if ((iter = UUGetFileListItem (atoi (argv[1]))) == NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:801: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 tmpstring[1024];
data/uudeview-0.5.20/tcl/uutcl.c:815:34:  [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).
  if ((iter = UUGetFileListItem (atoi (argv[1]))) == NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:835:39:  [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 (iter->binfile==NULL || (inpfile=fopen (iter->binfile, "r"))==NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:839:18:  [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 ((inpfile = fopen (iter->binfile, "r")) == NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:882: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 tmpstring[256];
data/uudeview-0.5.20/tcl/uutcl.c:901:34:  [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).
  if ((iter = UUGetFileListItem (atoi (argv[1]))) == NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:947:19:  [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).
    *linperfile = atoi (argv[argv2]);
data/uudeview-0.5.20/tcl/uutcl.c:1008: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 errstring[256], olddir[256];
data/uudeview-0.5.20/tcl/uutcl.c:1055: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 errstring[256];
data/uudeview-0.5.20/tcl/uutcl.c:1104: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 errstring[256];
data/uudeview-0.5.20/tcl/uutcl.c:1147: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 tmp[32];
data/uudeview-0.5.20/tcl/uutcl.c:1204:3:  [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 (tmp, "%d", UUGetOption (UUOPT_FAST, NULL, NULL, 0));
data/uudeview-0.5.20/tcl/uutcl.c:1208:3:  [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 (tmp, "%d", UUGetOption (UUOPT_BRACKPOL, NULL, NULL, 0));
data/uudeview-0.5.20/tcl/uutcl.c:1212:3:  [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 (tmp, "%d", UUGetOption (UUOPT_DESPERATE, NULL, NULL, 0));
data/uudeview-0.5.20/tcl/uutcl.c:1216:3:  [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 (tmp, "%d", UUGetOption (UUOPT_DEBUG, NULL, NULL, 0));
data/uudeview-0.5.20/tcl/uutcl.c:1220:3:  [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 (tmp, "%d", UUGetOption (UUOPT_USETEXT, NULL, NULL, 0));
data/uudeview-0.5.20/unix/uudeview.c:84: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 extension[8];
data/uudeview-0.5.20/unix/uudeview.c:102: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.
static char savepath[512];
data/uudeview-0.5.20/unix/uudeview.c:118: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.
static char uuversion[256] = VERSION "pl" PATCH;
data/uudeview-0.5.20/unix/uudeview.c:160: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 stuff[26];
data/uudeview-0.5.20/unix/uudeview.c:231:10:  [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 result[11];
data/uudeview-0.5.20/unix/uudeview.c:232:10:  [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 rwxkey[8][4] = 
data/uudeview-0.5.20/unix/uudeview.c:278: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 line[256], *ptr=0;
data/uudeview-0.5.20/unix/uudeview.c:441:10:  [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 buffer[1024];
data/uudeview-0.5.20/unix/uudeview.c:480:16:  [2] (tmpfile) mkstemp:
  Potential for temporary file vulnerability in some circumstances. Some
  older Unix-like systems create temp files with permission to write by all
  by default, so be sure to set the umask to override this. Also, some older
  Unix systems might fail to use O_EXCL when opening the file, so make sure
  that O_EXCL is used by the library (CWE-377).
  if ((tmpfd = mkstemp(stdfile)) == -1 ||
data/uudeview-0.5.20/unix/uudeview.c:483:17:  [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 ((target = fopen (stdfile, "wbx")) == NULL) {
data/uudeview-0.5.20/unix/uudeview.c:545: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 *p1, *argv[32];
data/uudeview-0.5.20/unix/uudeview.c:614: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 line[256], c;
data/uudeview-0.5.20/unix/uudeview.c:617:16:  [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 ((pfile = fopen (filename+1, "r")) == NULL) {
data/uudeview-0.5.20/unix/uudeview.c:850: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 text[256], *p;
data/uudeview-0.5.20/unix/uudeview.c:857:23:  [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).
    if ((data.lines = atoi(p)) < 5)
data/uudeview-0.5.20/unix/uudeview.c:864:22:  [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).
    if ((data.cols = atoi(p)) < 30)
data/uudeview-0.5.20/unix/uudeview.c:889: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).
    if ((inpfile = fopen (uin->binfile, "r")) == NULL) {
data/uudeview-0.5.20/unix/uudeview.c:980: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 targetname[1024], renamedname[1024];
data/uudeview-0.5.20/unix/uudeview.c:981: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 line[1024], command[256], tmp, *ptr1, *ptr2;
data/uudeview-0.5.20/unix/uudeview.c:1474:5:  [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 (savepath, "./");
data/uudeview-0.5.20/unix/uuenview.c:120: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 stuff[26];
data/uudeview-0.5.20/unix/uuenview.c:225:10:  [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 uuscan_pvvalue[256];
data/uudeview-0.5.20/unix/uuenview.c:335:7:  [2] (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). Risk is low because the
  source is a constant string.
      strcat (command, " \"");
data/uudeview-0.5.20/unix/uuenview.c:378:10:  [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 input[1024], *ctype=NULL, *cte=NULL, boundary[64];
data/uudeview-0.5.20/unix/uuenview.c:521:5:  [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 (boundary, "==UUD_=_%ld", (long) time (NULL));
data/uudeview-0.5.20/unix/uuenview.c:734:21:  [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 ((theifile = fopen (infname, "rb")) == NULL) {
data/uudeview-0.5.20/unix/uuenview.c:806: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 filename[512], usename[512], outdir[512];
data/uudeview-0.5.20/unix/uuenview.c:808: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 *p1, *myargv[256];
data/uudeview-0.5.20/unix/uuenview.c:1042: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).
	  linperfile = atoi (myargv[index] + 1);
data/uudeview-0.5.20/unix/uuenview.c:1055: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).
	  linperfile = atoi (myargv[index] + 2);
data/uudeview-0.5.20/unix/uuenview.c:1261:26:  [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).
      else if ((testit = fopen (myargv[index], "r")) == NULL) {
data/uudeview-0.5.20/unix/uufnflt.c:108:10:  [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 dosname[13], *ptr1, *ptr2;
data/uudeview-0.5.20/uulib/fptools.c:135:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy (result, ptr, len);
data/uudeview-0.5.20/uulib/fptools.c:513:10:  [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 number[8];
data/uudeview-0.5.20/uulib/fptools.c:515:3:  [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 (number, "%03d", errcode);
data/uudeview-0.5.20/uulib/uucheck.c:355:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy (result, ptr, length);
data/uudeview-0.5.20/uulib/uucheck.c:683:10:  [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).
  return atoi (iter);
data/uudeview-0.5.20/uulib/uucheck.c:693: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 *where, *whend, temp[80], *ptr, *p2;
data/uudeview-0.5.20/uulib/uucheck.c:1406:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy (liter->haveparts, haveparts, havecount*sizeof(int));
data/uudeview-0.5.20/uulib/uucheck.c:1413:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy (liter->misparts, misparts, miscount*sizeof(int));
data/uudeview-0.5.20/uulib/uudeview.h:167: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 curfile[256];		/* the file we are working on, incl. path  */
data/uudeview-0.5.20/uulib/uuencode.c:128:10:  [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.
unsigned char UUEncodeTable[64] = {
data/uudeview-0.5.20/uulib/uuencode.c:140:10:  [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.
unsigned char B64EncodeTable[64] = {
data/uudeview-0.5.20/uulib/uuencode.c:151:10:  [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.
unsigned char XXEncodeTable[64] = {
data/uudeview-0.5.20/uulib/uuencode.c:162:10:  [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.
unsigned char BHEncodeTable[64] = {
data/uudeview-0.5.20/uulib/uuencode.c:173:10:  [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.
unsigned char HexEncodeTable[16] = {
data/uudeview-0.5.20/uulib/uuencode.c:226:17:  [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 unsigned char *etables[5] = {
data/uudeview-0.5.20/uulib/uuencode.c:652:21:  [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 ((theifile = fopen (infname, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uuencode.c:827:23:  [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 ((theifile = fopen (infname, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uuencode.c:1079:21:  [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 ((theifile = fopen (infname, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uuencode.c:1269:21:  [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 ((theifile = fopen (infname, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uuencode.c:1317:7:  [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 (optr, "%03d", part);
data/uudeview-0.5.20/uulib/uuencode.c:1354: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).
    if ((outfile = fopen (oname, "w")) == NULL) {
data/uudeview-0.5.20/uulib/uuencode.c:1620:10:  [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 mimeid[64];
data/uudeview-0.5.20/uulib/uuencode.c:1652:23:  [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 ((theifile = fopen (infname, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uulib.c:157:1:  [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 uulibversion[256] = VERSION "pl" PATCH;
data/uudeview-0.5.20/uulib/uulib.c:467:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      memcpy (cvalue, &progress, sizeof (uuprogress));
data/uudeview-0.5.20/uulib/uulib.c:672:16:  [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 ((datei = fopen (filename, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uulib.c:902:17:  [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 ((source = fopen (thefile->binfile, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uulib.c:973:17:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
  if ((fildes = open (uugen_fnbuffer,
data/uudeview-0.5.20/uulib/uulib.c:1088: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).
    if ((inpfile = fopen (uugen_fnbuffer, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uulib.c:1098: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).
    if ((inpfile = fopen (thefile->thisfile->data->sfname, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uunconc.c:103: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.
static char *save[3];
data/uudeview-0.5.20/uulib/uunconc.c:1109: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).
	  yefilesize = atoi (ptr);
data/uudeview-0.5.20/uulib/uunconc.c:1124: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).
	  yepartends = atoi (ptr + 5);
data/uudeview-0.5.20/uulib/uunconc.c:1163:16:  [2] (integer) atol:
  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).
	size_t size = atol(ptr + 6);
data/uudeview-0.5.20/uulib/uunconc.c:1310: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.
  unsigned char r[8];
data/uudeview-0.5.20/uulib/uunconc.c:1361:16:  [2] (tmpfile) mkstemp:
  Potential for temporary file vulnerability in some circumstances. Some
  older Unix-like systems create temp files with permission to write by all
  by default, so be sure to set the umask to override this. Also, some older
  Unix systems might fail to use O_EXCL when opening the file, so make sure
  that O_EXCL is used by the library (CWE-377).
  if ((tmpfd = mkstemp(data->binfile)) == -1 || 
data/uudeview-0.5.20/uulib/uunconc.c:1364:18:  [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 ((dataout = fopen (data->binfile, mode)) == NULL) {
data/uudeview-0.5.20/uulib/uunconc.c:1455:21:  [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 ((datain = fopen (uugen_fnbuffer, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uunconc.c:1466:21:  [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 ((datain = fopen (iter->data->sfname, "rb")) == NULL) {
data/uudeview-0.5.20/uulib/uunconc.c:1547:19:  [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 ((datain = fopen (data->binfile, "rbx")) == NULL) {
data/uudeview-0.5.20/uulib/uunconc.c:1560:18:  [2] (tmpfile) mkstemp:
  Potential for temporary file vulnerability in some circumstances. Some
  older Unix-like systems create temp files with permission to write by all
  by default, so be sure to set the umask to override this. Also, some older
  Unix systems might fail to use O_EXCL when opening the file, so make sure
  that O_EXCL is used by the library (CWE-377).
    if ((tmpfd = mkstemp(ntmp)) == -1 ||
data/uudeview-0.5.20/uulib/uunconc.c:1563: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).
    if ((dataout = fopen (ntmp, "wb")) == NULL) {
data/uudeview-0.5.20/uulib/uuscan.c:475:23:  [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).
	theheaders->partno = atoi (thenew);
data/uudeview-0.5.20/uulib/uuscan.c:480:25:  [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).
	theheaders->numparts = atoi (thenew);
data/uudeview-0.5.20/uulib/uuscan.c:781:24:  [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).
      result->partno = atoi (line + 8);
data/uudeview-0.5.20/uulib/uuscan.c:836:19:  [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).
	result->partno = atoi (ptr);
data/uudeview-0.5.20/uulib/uuscan.c:840:19:  [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).
	result->maxpno = atoi (ptr);
data/uudeview-0.5.20/uulib/uuscan.c:964:15:  [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).
	yefilesize = atoi (ptr);
data/uudeview-0.5.20/uulib/uuscan.c:975:19:  [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).
	result->partno = atoi (ptr + 6);
data/uudeview-0.5.20/uulib/uuscan.c:995:15:  [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).
	yepartends = atoi (ptr + 5);
data/uudeview-0.5.20/uulib/uuscan.c:1102:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy (bhds1, bhds2+1, (int) bhds2[0]);
data/uudeview-0.5.20/uulib/uuscan.c:1108:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy (bhds1, bhds2+1, 255);
data/uudeview-0.5.20/uulib/uuscan.c:1801:7:  [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 (line, "%04d.txt", ++mimseqno);
data/uudeview-0.5.20/uulib/uuscan.c:1874:2:  [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 (line, "%04d.txt", ++mimseqno);
data/uudeview-0.5.20/uulib/uuscan.c:1988:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      memcpy (&sstate, &(multistack[mssdepth]), sizeof (scanstate));
data/uudeview-0.5.20/uulib/uuscan.c:2043:7:  [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 (line, "%04d.txt", ++mimseqno);
data/uudeview-0.5.20/uulib/uuscan.c:2178:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy (&multistack[mssdepth], &sstate, sizeof (scanstate));
data/uudeview-0.5.20/uulib/uuscan.c:2179:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy (&sstate.envelope,    &localenv, sizeof (headers));
data/uudeview-0.5.20/uulib/uuscan.c:2356: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 (line, "%04d.txt", ++mimseqno);
data/uudeview-0.5.20/uulib/uuscan.c:2530:7:  [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 (line, "%04d.txt", ++mimseqno);
data/uudeview-0.5.20/uulib/uuscan.c:2809:7:  [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 (line, "%04d.txt", ++mimseqno);
data/uudeview-0.5.20/uulib/uuscan.c:3038:7:  [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 (line, "%04d.txt", ++mimseqno);
data/uudeview-0.5.20/uulib/uuscan.c:3196:5:  [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 (line, "%04d.txt", ++mimseqno);
data/uudeview-0.5.20/uulib/uustring.c:136:1:  [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 *codenames[8] = {
data/uudeview-0.5.20/uulib/uustring.c:144:1:  [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 *msgnames[6] = {
data/uudeview-0.5.20/inews/clientlib.c:388: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).
	sdn.sdn_objnamel = strlen("NNTP");
data/uudeview-0.5.20/inews/inews.c:121: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).
		while (s[0] && (s[strlen(s)-1] == '\r' || s[strlen(s)-1] == '\n'))
data/uudeview-0.5.20/inews/inews.c:121: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).
		while (s[0] && (s[strlen(s)-1] == '\r' || s[strlen(s)-1] == '\n'))
data/uudeview-0.5.20/inews/inews.c:122:6:  [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).
			s[strlen(s)-1] = '\0';
data/uudeview-0.5.20/inews/inews.c:209:9:  [1] (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). Risk is low because the
  source is a constant character.
	(void) strcat(sigfile, "/");
data/uudeview-0.5.20/tcl/uutcl.c:163: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 ((isemail)?uue_mailprog:uue_inewsprog) + 
data/uudeview-0.5.20/tcl/uutcl.c:164: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).
    ((uue_mpsubject)?strlen(subject):0) +
data/uudeview-0.5.20/tcl/uutcl.c:165: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).
      ((isemail)?0:strlen(towhom)) + 32;
data/uudeview-0.5.20/tcl/uutcl.c:173:36:  [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 ((rcptlist = (char *) malloc (strlen (towhom) + 16)) == NULL) {
data/uudeview-0.5.20/tcl/uutcl.c:196:7:  [1] (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). Risk is low because the
  source is a constant character.
      strcat (command, " ");
data/uudeview-0.5.20/tcl/uutcl.c:200:2:  [1] (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). Risk is low because the
  source is a constant character.
	strcat (rcptlist, ",");
data/uudeview-0.5.20/tcl/uutcl.c:215:2:  [1] (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). Risk is low because the
  source is a constant character.
	strcat (rcptlist, ",");
data/uudeview-0.5.20/tcl/uutcl.c:718:19:  [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).
  p = tmpstring + strlen (tmpstring);
data/uudeview-0.5.20/unix/uudeview.c:264:37:  [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 (_FP_strnicmp (text, *hiter, strlen (*hiter)) == 0)
data/uudeview-0.5.20/unix/uudeview.c:465: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).
  stdfile = malloc(strlen(tmpdir)+strlen(tmpprefix)+2);
data/uudeview-0.5.20/unix/uudeview.c:465:35:  [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).
  stdfile = malloc(strlen(tmpdir)+strlen(tmpprefix)+2);
data/uudeview-0.5.20/unix/uudeview.c:477:3:  [1] (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). Risk is low because the
  source is a constant character.
  strcat(stdfile, "/");
data/uudeview-0.5.20/unix/uudeview.c:630: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).
    line[strlen(line)-1] = '\0';
data/uudeview-0.5.20/unix/uudeview.c:632: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).
    if (strlen (line) == 0)
data/uudeview-0.5.20/unix/uudeview.c:635: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).
    if (line[strlen(line)-1] == 0x0a || line[strlen(line)-1] == 0x0d)
data/uudeview-0.5.20/unix/uudeview.c:635:46:  [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 (line[strlen(line)-1] == 0x0a || line[strlen(line)-1] == 0x0d)
data/uudeview-0.5.20/unix/uudeview.c:636: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).
        line[strlen(line)-1] = '\0';
data/uudeview-0.5.20/unix/uudeview.c:643:9:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
    c = fgetc (pfile);
data/uudeview-0.5.20/unix/uudeview.c:746:6:  [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 (savepath)) {
data/uudeview-0.5.20/unix/uudeview.c:747: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).
	  if (savepath[strlen(savepath)-1]!=DIRSEPARATOR[0])
data/uudeview-0.5.20/unix/uudeview.c:831: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).
  while (strlen(string) &&
data/uudeview-0.5.20/unix/uudeview.c:832: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).
	 (string[strlen(string)-1] == '\012' ||
data/uudeview-0.5.20/unix/uudeview.c:833: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).
	  string[strlen(string)-1] == '\015'))
data/uudeview-0.5.20/unix/uudeview.c:834: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).
    string[strlen(string)-1] = '\0';
data/uudeview-0.5.20/unix/uudeview.c:1066: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(ptr1) <= 1) {
data/uudeview-0.5.20/unix/uudeview.c:1075: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 (ptr1) > 1) {
data/uudeview-0.5.20/unix/uudeview.c:1076: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 (ptr1[strlen(ptr1)-1] == '\n')
data/uudeview-0.5.20/unix/uudeview.c:1077: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).
	  ptr1[strlen(ptr1)-1] = '\0';
data/uudeview-0.5.20/unix/uudeview.c:1083: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(ptr1) <= 1) {
data/uudeview-0.5.20/unix/uudeview.c:1091: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 (ptr1) > 1) {
data/uudeview-0.5.20/unix/uudeview.c:1092: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 (ptr1[strlen(ptr1)-1] == '\n')
data/uudeview-0.5.20/unix/uudeview.c:1093: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).
	  ptr1[strlen(ptr1)-1] = '\0';
data/uudeview-0.5.20/unix/uudeview.c:1108:6:  [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 (savepath)) {
data/uudeview-0.5.20/unix/uudeview.c:1109: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).
	  if (savepath[strlen(savepath)-1]!=DIRSEPARATOR[0])
data/uudeview-0.5.20/unix/uudeview.c:1151: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).
	       (strlen(savepath) &&
data/uudeview-0.5.20/unix/uudeview.c:1152: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).
		savepath[strlen(savepath)-1]==DIRSEPARATOR[0]) ?
data/uudeview-0.5.20/unix/uudeview.c:1202: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(ptr1) <= 1) {
data/uudeview-0.5.20/unix/uudeview.c:1211: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 (ptr1) > 1) {
data/uudeview-0.5.20/unix/uudeview.c:1212: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).
	    if (ptr1[strlen(ptr1)-1] == '\n')
data/uudeview-0.5.20/unix/uudeview.c:1213: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).
	      ptr1[strlen(ptr1)-1] = '\0';
data/uudeview-0.5.20/unix/uudeview.c:1225: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(ptr1) <= 1) {
data/uudeview-0.5.20/unix/uudeview.c:1234: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 (ptr1) > 1) {
data/uudeview-0.5.20/unix/uudeview.c:1235: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).
	    if (ptr1[strlen(ptr1)-1] == '\n')
data/uudeview-0.5.20/unix/uudeview.c:1236: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).
	      ptr1[strlen(ptr1)-1] = '\0';
data/uudeview-0.5.20/unix/uudeview.c:1238: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(savepath)) {
data/uudeview-0.5.20/unix/uudeview.c:1239: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).
	      if (savepath[strlen(savepath)-1]!=DIRSEPARATOR[0])
data/uudeview-0.5.20/unix/uudeview.c:1283: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).
      else if (strlen (line) > 1) {
data/uudeview-0.5.20/unix/uudeview.c:1290: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).
	      ptr2  += strlen (iter->binfile);
data/uudeview-0.5.20/unix/uudeview.c:1531:7:  [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(savepath)) {
data/uudeview-0.5.20/unix/uudeview.c:1532:18:  [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 (savepath[strlen(savepath)-1] != DIRSEPARATOR[0])
data/uudeview-0.5.20/unix/uuenview.c:303: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 ((isemail)?uue_mailprog:uue_inewsprog) + 
data/uudeview-0.5.20/unix/uuenview.c:304: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).
    ((uue_mpsubject)?strlen(subject):0) +
data/uudeview-0.5.20/unix/uuenview.c:305: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).
    ((isemail)?strlen(towhom):0) + 32;
data/uudeview-0.5.20/unix/uuenview.c:312:37:  [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 ((*rcptlist = (char *) malloc (strlen (towhom) + 16)) == NULL) {
data/uudeview-0.5.20/unix/uuenview.c:314:7:  [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).
	     strlen (towhom)+16);
data/uudeview-0.5.20/unix/uuenview.c:337:7:  [1] (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). Risk is low because the
  source is a constant character.
      strcat (command, "\"");
data/uudeview-0.5.20/unix/uuenview.c:340:2:  [1] (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). Risk is low because the
  source is a constant character.
	strcat (*rcptlist, ",");
data/uudeview-0.5.20/unix/uuenview.c:356:2:  [1] (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). Risk is low because the
  source is a constant character.
	strcat (*rcptlist, ",");
data/uudeview-0.5.20/unix/uuenview.c:615:34:  [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).
	    strncmp (input+2, boundary, strlen (boundary)) == 0 &&
data/uudeview-0.5.20/unix/uuenview.c:616: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).
	    input[strlen(boundary)+2] == '-' &&
data/uudeview-0.5.20/unix/uuenview.c:617: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).
	    input[strlen(boundary)+3] == '-')
data/uudeview-0.5.20/unix/uuenview.c:978: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(outdir)>0) {
data/uudeview-0.5.20/unix/uuenview.c:979:19:  [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 (outdir[strlen(outdir)-1]!=DIRSEPARATOR[0]) {
data/uudeview-0.5.20/uulib/fptools.c:93:34:  [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 ((result = (char *) malloc (strlen (string) + 1)) == NULL)
data/uudeview-0.5.20/uulib/fptools.c:398:18:  [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).
  ptr = string + strlen (string) - 1;
data/uudeview-0.5.20/uulib/fptools.c:448:14:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
    if ((c = fgetc (stream)) == EOF) {
data/uudeview-0.5.20/uulib/fptools.c:464:16:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
      if ((c = fgetc (stream)) != '\012')
data/uudeview-0.5.20/uulib/fptools.c:493:14:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
    if ((c = fgetc (stream)) == '\015' && !feof (stream)) {
data/uudeview-0.5.20/uulib/fptools.c:494:16:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
      if ((c = fgetc (stream)) != '\012' && !feof (stream)) {
data/uudeview-0.5.20/uulib/uucheck.c:346: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).
    length = strlen (nofname);
data/uudeview-0.5.20/uulib/uucheck.c:592: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).
    count = strlen(subject) - 1;
data/uudeview-0.5.20/uulib/uucheck.c:664:24:  [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).
      ptr = (*whend += strlen (delim));
data/uudeview-0.5.20/uulib/uucheck.c:722:4:  [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).
		 strlen (data->filename)+1);
data/uudeview-0.5.20/uulib/uucheck.c:759:5:  [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).
		 (strlen(temp)+1):(strlen(result->filename)+1));
data/uudeview-0.5.20/uulib/uucheck.c:759: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).
		 (strlen(temp)+1):(strlen(result->filename)+1));
data/uudeview-0.5.20/uulib/uucheck.c:791:5:  [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).
		 (strlen(result->filename)+1):(strlen(temp)+1));
data/uudeview-0.5.20/uulib/uucheck.c:791:34:  [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).
		 (strlen(result->filename)+1):(strlen(temp)+1));
data/uudeview-0.5.20/uulib/uucheck.c:842:7:  [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).
		   (strlen(result->filename)+1):(strlen(temp)+1));
data/uudeview-0.5.20/uulib/uucheck.c:842:36:  [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).
		   (strlen(result->filename)+1):(strlen(temp)+1));
data/uudeview-0.5.20/uulib/uuencode.c:275: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).
      count = strlen (itemp);
data/uudeview-0.5.20/uulib/uuencode.c:298: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).
		      strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:298:40:  [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).
		      strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:344:4:  [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).
			strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:344:35:  [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).
			strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:360:6:  [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).
			  strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:360:37:  [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).
			  strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:392:4:  [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).
			strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:392:35:  [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).
			strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:447: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).
		      strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:447:40:  [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).
		      strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:493:5:  [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).
		  strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:493:36:  [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).
		  strlen(eolstring), outfile) != strlen (eolstring)) {
data/uudeview-0.5.20/uulib/uuencode.c:607: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).
    llen   += strlen ((char *) eolstring);
data/uudeview-0.5.20/uulib/uuencode.c:1205: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).
      len = strlen (diskname) + ((uuencodeext)?strlen(uuencodeext):3) + 5;
data/uudeview-0.5.20/uulib/uuencode.c:1205: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).
      len = strlen (diskname) + ((uuencodeext)?strlen(uuencodeext):3) + 5;
data/uudeview-0.5.20/uulib/uuencode.c:1215:27:  [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 = ((uusavepath)?strlen(uusavepath):0) + strlen (diskname) 
data/uudeview-0.5.20/uulib/uuencode.c:1215: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).
      len = ((uusavepath)?strlen(uusavepath):0) + strlen (diskname) 
data/uudeview-0.5.20/uulib/uuencode.c:1216:19:  [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).
	+ ((uuencodeext)?strlen(uuencodeext):0) + 5;
data/uudeview-0.5.20/uulib/uuencode.c:1227:27:  [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 = ((uusavepath) ? strlen (uusavepath) : 0) + 
data/uudeview-0.5.20/uulib/uuencode.c:1228:7:  [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).
      strlen(UUFNameFilter(infname)) +
data/uudeview-0.5.20/uulib/uuencode.c:1229: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).
	((uuencodeext)?strlen(uuencodeext):0) + 5;
data/uudeview-0.5.20/uulib/uuencode.c:1249: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).
    optr = oname + strlen (oname);
data/uudeview-0.5.20/uulib/uuencode.c:1253: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).
    optr = oname + strlen (oname);
data/uudeview-0.5.20/uulib/uuencode.c:1526: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).
  len   = ((subject)?strlen(subject):0) + strlen(oname) + 40;
data/uudeview-0.5.20/uulib/uuencode.c:1526:43:  [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   = ((subject)?strlen(subject):0) + strlen(oname) + 40;
data/uudeview-0.5.20/uulib/uuencode.c:1638: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).
  len   = ((subject)?strlen(subject):0) + strlen (oname) + 40;
data/uudeview-0.5.20/uulib/uuencode.c:1638:43:  [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   = ((subject)?strlen(subject):0) + strlen (oname) + 40;
data/uudeview-0.5.20/uulib/uuencode.c:1717: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).
	     (strlen(oname)>16)?"oops":oname);
data/uudeview-0.5.20/uulib/uulib.c:288:32:  [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).
    msgptr = uulib_msgstring + strlen (uulib_msgstring);
data/uudeview-0.5.20/uulib/uulib.c:292:32:  [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).
    msgptr = uulib_msgstring + strlen (uulib_msgstring);
data/uudeview-0.5.20/uulib/uulib.c:698:32:  [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).
		 uustring (S_OUT_OF_MEMORY), strlen(filename)+1);
data/uudeview-0.5.20/uulib/uulib.c:714: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).
	       (strlen(filename)>255)?
data/uudeview-0.5.20/uulib/uulib.c:715:19:  [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).
	       (filename+strlen(filename)-255):filename,
data/uudeview-0.5.20/uulib/uulib.c:726:11:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
    res = fgetc (datei);
data/uudeview-0.5.20/uulib/uulib.c:963: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).
	       (strlen(uugen_fnbuffer)>255)?
data/uudeview-0.5.20/uulib/uulib.c:964:25:  [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).
	       (uugen_fnbuffer+strlen(uugen_fnbuffer)-255):uugen_fnbuffer,
data/uudeview-0.5.20/uulib/uunconc.c:196: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).
  if (string==NULL || (len=strlen(string))<3)
data/uudeview-0.5.20/uulib/uunconc.c:544: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 (line) > 250)
data/uudeview-0.5.20/uulib/uunconc.c:546: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).
      ptr = line + strlen (line);
data/uudeview-0.5.20/uulib/uunconc.c:580: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).
    ptr    = line + strlen(line);
data/uudeview-0.5.20/uulib/uunconc.c:762:29:  [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).
	strncmp (line+2, boundary, strlen (boundary)) == 0) {
data/uudeview-0.5.20/uulib/uunconc.c:763: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 (line[strlen(boundary)+2]=='-')
data/uudeview-0.5.20/uulib/uunconc.c:859:29:  [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).
	strncmp (line+2, boundary, strlen (boundary)) == 0) {
data/uudeview-0.5.20/uulib/uunconc.c:860: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 (line[strlen(boundary)+2]=='-')
data/uudeview-0.5.20/uulib/uunconc.c:873:18:  [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).
    ptr = line + strlen (line);
data/uudeview-0.5.20/uulib/uunconc.c:1053:29:  [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).
	strncmp (line+2, boundary, strlen (boundary)) == 0) {
data/uudeview-0.5.20/uulib/uunconc.c:1054: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 (line[strlen(boundary)+2]=='-')
data/uudeview-0.5.20/uulib/uunconc.c:1345: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).
  data->binfile = malloc(strlen(tmpdir)+strlen(tmpprefix)+2);
data/uudeview-0.5.20/uulib/uunconc.c:1345:41:  [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).
  data->binfile = malloc(strlen(tmpdir)+strlen(tmpprefix)+2);
data/uudeview-0.5.20/uulib/uunconc.c:1358:3:  [1] (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). Risk is low because the
  source is a constant character.
  strcat(data->binfile, "/");
data/uudeview-0.5.20/uulib/uunconc.c:1409:5:  [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).
		 (strlen(data->filename)>255)?
data/uudeview-0.5.20/uulib/uunconc.c:1410: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).
		 (data->filename+strlen(data->filename)-255):data->filename,
data/uudeview-0.5.20/uulib/uunconc.c:1415:5:  [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).
		 (strlen(data->binfile)>255)?
data/uudeview-0.5.20/uulib/uunconc.c:1416:19:  [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).
		 (data->binfile+strlen(data->binfile)-255):data->binfile,
data/uudeview-0.5.20/uulib/uunconc.c:1536:18:  [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).
	  ntmp = malloc(strlen(tmpdir)+strlen(tmpprefix)+2);
data/uudeview-0.5.20/uulib/uunconc.c:1536:33:  [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).
	  ntmp = malloc(strlen(tmpdir)+strlen(tmpprefix)+2);
data/uudeview-0.5.20/uulib/uunconc.c:1558:5:  [1] (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). Risk is low because the
  source is a constant character.
    strcat(ntmp, "/");
data/uudeview-0.5.20/uulib/uunconc.c:1583:12:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
    r[0] = fgetc (datain);
data/uudeview-0.5.20/uulib/uuscan.c:192: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).
  llength = strlen (uuscan_shlline);
data/uudeview-0.5.20/uulib/uuscan.c:208:9:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
    c = fgetc (datei);
data/uudeview-0.5.20/uulib/uuscan.c:223:11:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
      c = fgetc (datei);
data/uudeview-0.5.20/uulib/uuscan.c:254: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).
    c = strlen (ptr);
data/uudeview-0.5.20/uulib/uuscan.c:547:36:  [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 (_FP_strnicmp (line, *iter, strlen (*iter)) == 0)
data/uudeview-0.5.20/uulib/uuscan.c:555:36:  [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 (_FP_strnicmp (line, *iter, strlen (*iter)) == 0)
data/uudeview-0.5.20/uulib/uuscan.c:630: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).
    blen = strlen (boundary);
data/uudeview-0.5.20/uulib/uuscan.c:749:40:  [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 (isspace (result->filename[strlen(result->filename)-1]))
data/uudeview-0.5.20/uulib/uuscan.c:750:19:  [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).
	result->filename[strlen(result->filename)-1] = '\0';
data/uudeview-0.5.20/uulib/uuscan.c:919: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).
	line[0] == '-' && line[1] == '-' && strlen(line+2)>10 &&
data/uudeview-0.5.20/uulib/uuscan.c:955:40:  [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 (isspace (result->filename[strlen(result->filename)-1]))
data/uudeview-0.5.20/uulib/uuscan.c:956:19:  [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).
	result->filename[strlen(result->filename)-1] = '\0';
data/uudeview-0.5.20/uulib/uuscan.c:1038:25:  [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).
      islen[iscnt%10] = strlen(line);
data/uudeview-0.5.20/uulib/uuscan.c:1051:4:  [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).
	  strlen (line) < 40 && !result->begin && !uu_tinyb64) {
data/uudeview-0.5.20/uulib/uuscan.c:1058: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).
	      strlen (line) < 40 && !result->begin) {
data/uudeview-0.5.20/uulib/uuscan.c:1560:19:  [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 (line[strlen(line)-1] == '\012' ||
data/uudeview-0.5.20/uulib/uuscan.c:1561: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).
	     line[strlen(line)-1] == '\015') {
data/uudeview-0.5.20/uulib/uuscan.c:1562:7:  [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).
	line[strlen(line)-1] = '\0';
data/uudeview-0.5.20/uulib/uuscan.c:1737: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).
    blen   = strlen (sstate.envelope.boundary);
data/uudeview-0.5.20/uulib/uuscan.c:1900: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).
      blen = strlen (multistack[mssdepth-1].envelope.boundary);
data/uudeview-0.5.20/uulib/uuscan.c:1990:25:  [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).
      ptr1 = line + 2 + strlen (sstate.envelope.boundary);
data/uudeview-0.5.20/uulib/uuscan.c:2241: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).
      blen = strlen (sstate.envelope.boundary);
data/uudeview-0.5.20/uulib/uuscan.c:2410: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).
    blen    = strlen (sstate.envelope.boundary);

ANALYSIS SUMMARY:

Hits = 463
Lines analyzed = 17503 in approximately 0.54 seconds (32535 lines/second)
Physical Source Lines of Code (SLOC) = 12128
Hits@level = [0] 365 [1] 166 [2] 163 [3]  20 [4] 114 [5]   0
Hits@level+ = [0+] 828 [1+] 463 [2+] 297 [3+] 134 [4+] 114 [5+]   0
Hits/KSLOC@level+ = [0+] 68.2718 [1+] 38.1761 [2+] 24.4888 [3+] 11.0488 [4+] 9.39974 [5+]   0
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.