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/netgen-lvs-1.5.133/netgen/inetcomp.c
Examining data/netgen-lvs-1.5.133/netgen/ntk2xnf.c
Examining data/netgen-lvs-1.5.133/netgen/netcomp.c
Examining data/netgen-lvs-1.5.133/netgen/netgen_main.c
Examining data/netgen-lvs-1.5.133/netgen/ntk2adl.c
Examining data/netgen-lvs-1.5.133/tcltk/tclnetgen.c
Examining data/netgen-lvs-1.5.133/tcltk/netgenexec.c
Examining data/netgen-lvs-1.5.133/regexp/regexp.h
Examining data/netgen-lvs-1.5.133/regexp/regsub.c
Examining data/netgen-lvs-1.5.133/regexp/regmagic.h
Examining data/netgen-lvs-1.5.133/regexp/try.c
Examining data/netgen-lvs-1.5.133/regexp/regexp.c
Examining data/netgen-lvs-1.5.133/regexp/regerror.c
Examining data/netgen-lvs-1.5.133/regexp/fixtabs.c
Examining data/netgen-lvs-1.5.133/regexp/timer.c
Examining data/netgen-lvs-1.5.133/base/actel.c
Examining data/netgen-lvs-1.5.133/base/regexp.h
Examining data/netgen-lvs-1.5.133/base/timing.h
Examining data/netgen-lvs-1.5.133/base/embed.h
Examining data/netgen-lvs-1.5.133/base/place.c
Examining data/netgen-lvs-1.5.133/base/hash.h
Examining data/netgen-lvs-1.5.133/base/xnetgen.h
Examining data/netgen-lvs-1.5.133/base/netgen.h
Examining data/netgen-lvs-1.5.133/base/wombat.c
Examining data/netgen-lvs-1.5.133/base/inetcomp.c
Examining data/netgen-lvs-1.5.133/base/greedy.c
Examining data/netgen-lvs-1.5.133/base/embed.c
Examining data/netgen-lvs-1.5.133/base/netcmp.c
Examining data/netgen-lvs-1.5.133/base/xillib.c
Examining data/netgen-lvs-1.5.133/base/print.c
Examining data/netgen-lvs-1.5.133/base/netgen.c
Examining data/netgen-lvs-1.5.133/base/ext.c
Examining data/netgen-lvs-1.5.133/base/actellib.c
Examining data/netgen-lvs-1.5.133/base/anneal.c
Examining data/netgen-lvs-1.5.133/base/spice.c
Examining data/netgen-lvs-1.5.133/base/pdutils.c
Examining data/netgen-lvs-1.5.133/base/objlist.c
Examining data/netgen-lvs-1.5.133/base/netfile.c
Examining data/netgen-lvs-1.5.133/base/query.h
Examining data/netgen-lvs-1.5.133/base/xilinx.c
Examining data/netgen-lvs-1.5.133/base/bottomup.c
Examining data/netgen-lvs-1.5.133/base/xnetgen.c
Examining data/netgen-lvs-1.5.133/base/ccode.c
Examining data/netgen-lvs-1.5.133/base/query.c
Examining data/netgen-lvs-1.5.133/base/config.h
Examining data/netgen-lvs-1.5.133/base/test.c
Examining data/netgen-lvs-1.5.133/base/netcmp.h
Examining data/netgen-lvs-1.5.133/base/print.h
Examining data/netgen-lvs-1.5.133/base/random.c
Examining data/netgen-lvs-1.5.133/base/proto.h
Examining data/netgen-lvs-1.5.133/base/hash.c
Examining data/netgen-lvs-1.5.133/base/objlist.h
Examining data/netgen-lvs-1.5.133/base/pdutils.h
Examining data/netgen-lvs-1.5.133/base/dbug.h
Examining data/netgen-lvs-1.5.133/base/flatten.c
Examining data/netgen-lvs-1.5.133/base/timing.c
Examining data/netgen-lvs-1.5.133/base/netfile.h
Examining data/netgen-lvs-1.5.133/base/ntk.c
Examining data/netgen-lvs-1.5.133/base/verilog.c
Examining data/netgen-lvs-1.5.133/dbug/example3.c
Examining data/netgen-lvs-1.5.133/dbug/analyze.c
Examining data/netgen-lvs-1.5.133/dbug/useful.h
Examining data/netgen-lvs-1.5.133/dbug/factorial.c
Examining data/netgen-lvs-1.5.133/dbug/main.c
Examining data/netgen-lvs-1.5.133/dbug/vargs.h
Examining data/netgen-lvs-1.5.133/dbug/example1.c
Examining data/netgen-lvs-1.5.133/dbug/example2.c
Examining data/netgen-lvs-1.5.133/dbug/dbug.c
Examining data/netgen-lvs-1.5.133/dbug/dbug.h

FINAL RESULTS:

data/netgen-lvs-1.5.133/dbug/dbug.c:173:12:  [5] (race) chown:
  This accepts filename arguments; if an attacker can move those files, a
  race condition results. (CWE-362). Use fchown( ) instead.
IMPORT int chown ();		/* Change owner of a file */
data/netgen-lvs-1.5.133/dbug/dbug.c:1624:9:  [5] (race) chown:
  This accepts filename arguments; if an attacker can move those files, a
  race condition results. (CWE-362). Use fchown( ) instead.
    if (chown (pathname, getuid (), getgid ()) == -1) {
data/netgen-lvs-1.5.133/base/actel.c:89: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(name,Name);
data/netgen-lvs-1.5.133/base/actel.c:106: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(ActelNames[ActelIndex], name);
data/netgen-lvs-1.5.133/base/actel.c:153: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(physicalpin, ptr);
data/netgen-lvs-1.5.133/base/actel.c:395: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(Path, name);
data/netgen-lvs-1.5.133/base/actel.c:397: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(Path,filename);
data/netgen-lvs-1.5.133/base/embed.c:647:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(longstr, "%s%s", prefix, instancename);
data/netgen-lvs-1.5.133/base/embed.c:651: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(longstr,SEPARATOR);
data/netgen-lvs-1.5.133/base/embed.c:677:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
     sprintf(name,"%s%s", prefix, instancename);
data/netgen-lvs-1.5.133/base/embed.c:681: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(name,SEPARATOR);
data/netgen-lvs-1.5.133/base/embed.c:717:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(name,"%s%s%s", prefix, instancename, SEPARATOR);
data/netgen-lvs-1.5.133/base/ext.c:149: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(name, nexttok+1);
data/netgen-lvs-1.5.133/base/ext.c:152: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).
  else strcpy(name, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:241: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(dev_class, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:243: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(dev_name, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:245: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(inststr, dev_class);
data/netgen-lvs-1.5.133/base/ext.c:247: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:250: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:312: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(fet_class, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:314: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(inststr, fet_class);
data/netgen-lvs-1.5.133/base/ext.c:316: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:319: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:340: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(source, drain);
data/netgen-lvs-1.5.133/base/ext.c:393: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(tmp, basename+1);
data/netgen-lvs-1.5.133/base/ext.c:394: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(name, tmp);
data/netgen-lvs-1.5.133/base/ext.c:703: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:706: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:743: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:746: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:778: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:781: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:811: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:814: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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:898:8:  [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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/ext.c:901:8:  [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(inststr, nexttok);
data/netgen-lvs-1.5.133/base/flatten.c:158: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(tmpstr,ParentParams->instance.name);
data/netgen-lvs-1.5.133/base/flatten.c:159: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(tmpstr,SEPARATOR);
data/netgen-lvs-1.5.133/base/flatten.c:188:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(tmpstr, "%s%s%s", ParentParams->instance.name, SEPARATOR,
data/netgen-lvs-1.5.133/base/flatten.c:191: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(tmpstr+prefixlength,tmp->name);
data/netgen-lvs-1.5.133/base/flatten.c:197:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(tmpstr, "%s%s%s", ParentParams->instance.name, SEPARATOR,
data/netgen-lvs-1.5.133/base/flatten.c:200: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(tmpstr+prefixlength,tmp->instance.name);
data/netgen-lvs-1.5.133/base/flatten.c:416: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(tmpstr,ParentParams->instance.name);
data/netgen-lvs-1.5.133/base/flatten.c:417: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(tmpstr,SEPARATOR);
data/netgen-lvs-1.5.133/base/flatten.c:451:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(tmpstr, "%s%s%s", ParentParams->instance.name, SEPARATOR,
data/netgen-lvs-1.5.133/base/flatten.c:454: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(tmpstr+prefixlength,tmp->name);
data/netgen-lvs-1.5.133/base/flatten.c:460:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(tmpstr, "%s%s%s", ParentParams->instance.name, SEPARATOR,
data/netgen-lvs-1.5.133/base/flatten.c:463: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(tmpstr+prefixlength,tmp->instance.name);
data/netgen-lvs-1.5.133/base/flatten.c:656:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(newpin->name, "%s/%s", newpin->instance.name, ChildOb->name);
data/netgen-lvs-1.5.133/base/netcmp.c:873:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	     sprintf(pinname, "%s|%s", pinsave, ob->name + strlen(ob->instance.name) + 1);
data/netgen-lvs-1.5.133/base/netcmp.c:1270: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(permcount, value);
data/netgen-lvs-1.5.133/base/netcmp.c:1277:8:  [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(permcount, value);
data/netgen-lvs-1.5.133/base/netcmp.c:1300: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(permcount, value);
data/netgen-lvs-1.5.133/base/netcmp.c:1307:8:  [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(permcount, value);
data/netgen-lvs-1.5.133/base/netcmp.c:4033:43:  [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).
            if (!strcmp(vl->key, "_tag")) strcat(netwk1, vl->value.string);
data/netgen-lvs-1.5.133/base/netcmp.c:4054:43:  [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).
            if (!strcmp(vl->key, "_tag")) strcat(netwk2, vl->value.string);
data/netgen-lvs-1.5.133/base/netcmp.c:6193: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(newIgnore->class, name);
data/netgen-lvs-1.5.133/base/netcmp.c:6261:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(altname, "%s%c", name1, (char)(65 + Random(26)));
data/netgen-lvs-1.5.133/base/netcmp.c:6454:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	     sprintf(obn->name, "%s/%s", firstpin->instance.name, tob->name);
data/netgen-lvs-1.5.133/base/netcmp.c:6871:10:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
         sprintf(obn->name, "proxy%s", ob2->name);
data/netgen-lvs-1.5.133/base/netcmp.c:6935:13:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
            sprintf(obn->name, "proxy%s", ob1->name);
data/netgen-lvs-1.5.133/base/netfile.c:72: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(tmpbuf, path);
data/netgen-lvs-1.5.133/base/netfile.c:89: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(tmpbuf, extension);
data/netgen-lvs-1.5.133/base/netfile.c:97: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(buffer, tmpbuf);
data/netgen-lvs-1.5.133/base/netfile.c:141:3:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
  vsprintf(tmpstr, format, argptr);
data/netgen-lvs-1.5.133/base/netfile.c:149: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(buffer, tmpstr);
data/netgen-lvs-1.5.133/base/netfile.c:303: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(newbuf, line);
data/netgen-lvs-1.5.133/base/netfile.c:366: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(t, kl->pdefault.string);
data/netgen-lvs-1.5.133/base/netfile.c:382: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(linetok, line);
data/netgen-lvs-1.5.133/base/netfile.c:732: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(sstring, stoken);	/* Just copy to the end */
data/netgen-lvs-1.5.133/base/netfile.c:860: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(testname, fname);
data/netgen-lvs-1.5.133/base/netfile.c:861: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(testname, formats[index].extension);
data/netgen-lvs-1.5.133/base/netfile.c:1249: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(ob->name, string);
data/netgen-lvs-1.5.133/base/netfile.c:1256: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(ob->model.class,string);
data/netgen-lvs-1.5.133/base/netfile.c:1260: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(ob->instance.name,string);
data/netgen-lvs-1.5.133/base/netgen.c:72:3:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
  vsprintf(staticstrings[laststring], format, ap);
data/netgen-lvs-1.5.133/base/netgen.c:1430: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(tmpname,instancename);
data/netgen-lvs-1.5.133/base/netgen.c:1431: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(tmpname,SEPARATOR);
data/netgen-lvs-1.5.133/base/netgen.c:1432: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(tmpname,tp2->name);
data/netgen-lvs-1.5.133/base/netgen.c:1451: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(tmpname,instancename);
data/netgen-lvs-1.5.133/base/netgen.c:1452: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(tmpname,SEPARATOR);
data/netgen-lvs-1.5.133/base/netgen.c:1453: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(tmpname,tp2->name);
data/netgen-lvs-1.5.133/base/netgen.c:1466: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(tmpname,CurrentCell->name);
data/netgen-lvs-1.5.133/base/netgen.c:1467: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(tmpname,INSTANCE_DELIMITER);
data/netgen-lvs-1.5.133/base/netgen.c:1468: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(tmpname,instancename);
data/netgen-lvs-1.5.133/base/netgen.c:1469: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(tmpname,SEPARATOR);
data/netgen-lvs-1.5.133/base/netgen.c:1470: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(tmpname,tp2->name);
data/netgen-lvs-1.5.133/base/netgen.c:1473: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(tmpname2,instancename);
data/netgen-lvs-1.5.133/base/netgen.c:1474: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(tmpname2,SEPARATOR);
data/netgen-lvs-1.5.133/base/netgen.c:1475: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(tmpname2,tp2->name);
data/netgen-lvs-1.5.133/base/netgen.c:1492: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(tmpname,instancename);
data/netgen-lvs-1.5.133/base/netgen.c:1493: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(tmpname,SEPARATOR);
data/netgen-lvs-1.5.133/base/netgen.c:1494: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(tmpname,tp2->name);
data/netgen-lvs-1.5.133/base/netgen.c:1495: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(tmpname2,instancename);
data/netgen-lvs-1.5.133/base/netgen.c:1496: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(tmpname2,SEPARATOR);
data/netgen-lvs-1.5.133/base/netgen.c:1497: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(tmpname2, NodeAlias(instanced_cell, ob));
data/netgen-lvs-1.5.133/base/netgen.c:1523:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	  sprintf(buffer, "%s%d", name, n);
data/netgen-lvs-1.5.133/base/netgen.c:1601: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(namedport, nodelist);
data/netgen-lvs-1.5.133/base/netgen.c:1678: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(tmpname, instnameptr);
data/netgen-lvs-1.5.133/base/netgen.c:1679: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(tmpname, SEPARATOR);
data/netgen-lvs-1.5.133/base/netgen.c:1680: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(tmpname, tp2->name);
data/netgen-lvs-1.5.133/base/netgen.c:2790: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(buffer,prefix);
data/netgen-lvs-1.5.133/base/netgen.c:2791: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(buffer,list->name);
data/netgen-lvs-1.5.133/base/netgen.c:2813:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(buffer2,"%s%s%s%s%s", freename, SEPARATOR, "W", PORT_DELIMITER, "*");
data/netgen-lvs-1.5.133/base/netgen.c:2815:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(buffer1,"%s%s%s%s%s", 
data/netgen-lvs-1.5.133/base/netgen.c:2820:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(prefix,"%s%s","W", PORT_DELIMITER);
data/netgen-lvs-1.5.133/base/netgen.c:2824:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(prefix,"%s%s", "N", PORT_DELIMITER);
data/netgen-lvs-1.5.133/base/netgen.c:2827:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(prefix,"%s%s", "S", PORT_DELIMITER);
data/netgen-lvs-1.5.133/base/netgen.c:2831:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(buffer2,"%s%s%s%s%s",
data/netgen-lvs-1.5.133/base/netgen.c:2834:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(buffer1,"%s%s%s%s%s",
data/netgen-lvs-1.5.133/base/netgen.c:2839:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(prefix,"%s%s","S", PORT_DELIMITER);
data/netgen-lvs-1.5.133/base/netgen.c:2843:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(prefix,"%s%s", "E", PORT_DELIMITER);
data/netgen-lvs-1.5.133/base/netgen.c:2846:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
    sprintf(prefix,"%s%s", "W", PORT_DELIMITER);
data/netgen-lvs-1.5.133/base/netgen.c:2974:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	 sprintf(kv->value.string, "%c%s", tagc, tmpstr);
data/netgen-lvs-1.5.133/base/netgen.c:3199:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	 sprintf(pstr, "%s", ob->model.class);
data/netgen-lvs-1.5.133/base/netgen.c:3225:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		sprintf(p2str, "%s", ob->model.class);
data/netgen-lvs-1.5.133/base/netgen.c:3564:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		     sprintf(newstr, "S%s", kv->value.string);
data/netgen-lvs-1.5.133/base/netgen.c:3667:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(buffer1,"%s%s%s%s%s",
data/netgen-lvs-1.5.133/base/netgen.c:3669:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(prefix,"%s%s", "E", PORT_DELIMITER);
data/netgen-lvs-1.5.133/base/netgen.c:3675:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(buffer1,"%s%s%s%s%s",
data/netgen-lvs-1.5.133/base/netgen.c:3677:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(prefix,"%s%s", "N", PORT_DELIMITER);
data/netgen-lvs-1.5.133/base/ntk.c:246: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(last, nexttok);
data/netgen-lvs-1.5.133/base/ntk.c:258: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(model, nexttok);
data/netgen-lvs-1.5.133/base/ntk.c:259: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(instancename, nexttok);
data/netgen-lvs-1.5.133/base/ntk.c:260: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(instancename, INSTANCE_DELIMITER);
data/netgen-lvs-1.5.133/base/ntk.c:262: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(instancename, nexttok);
data/netgen-lvs-1.5.133/base/ntk.c:292:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	  sprintf(name, "%s%spin%d", instancename, SEPARATOR, i+1);
data/netgen-lvs-1.5.133/base/ntk.c:310: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(name, instancename);
data/netgen-lvs-1.5.133/base/ntk.c:311: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(name, SEPARATOR);
data/netgen-lvs-1.5.133/base/ntk.c:312: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(name, ob->name);
data/netgen-lvs-1.5.133/base/ntk.c:331: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(name, nexttok);
data/netgen-lvs-1.5.133/base/ntk.c:333: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(model, nexttok);
data/netgen-lvs-1.5.133/base/ntk.c:335: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(instancename, nexttok);
data/netgen-lvs-1.5.133/base/ntk.c:348: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(name, nexttok);
data/netgen-lvs-1.5.133/base/ntk.c:350: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(model, nexttok);
data/netgen-lvs-1.5.133/base/ntk.c:352: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(instancename, nexttok);
data/netgen-lvs-1.5.133/base/objlist.c:172: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).
	else strcpy(p, s);
data/netgen-lvs-1.5.133/base/objlist.c:1212: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(StrBuffer, ob->name);
data/netgen-lvs-1.5.133/base/objlist.c:1222: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(StrBuffer, ob->name);
data/netgen-lvs-1.5.133/base/objlist.c:1232: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(StrBuffer, ob->name);
data/netgen-lvs-1.5.133/base/objlist.c:1242: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(StrBuffer, ob->name);
data/netgen-lvs-1.5.133/base/objlist.c:1252: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(StrBuffer, ob->name);
data/netgen-lvs-1.5.133/base/objlist.c:1273: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(StrBuffer,ob->name);
data/netgen-lvs-1.5.133/base/objlist.c:1295: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(StrBuffer,ob->name);
data/netgen-lvs-1.5.133/base/pdutils.c:363:37:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
#define Sprintf(string,format,arg)	(sprintf((string),(format),(arg)))
data/netgen-lvs-1.5.133/base/pdutils.c:366:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf((string),(format),(arg)),\
data/netgen-lvs-1.5.133/base/pdutils.c:373:5:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
int vsprintf(dest, format, args)
data/netgen-lvs-1.5.133/base/pdutils.c:484:5:  [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
int vfprintf(dest, format, args)
data/netgen-lvs-1.5.133/base/pdutils.c:509:11:  [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.
	count += fprintf(dest, tempfmt, va_arg(args, char *));
data/netgen-lvs-1.5.133/base/pdutils.c:520:13:  [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.
	  count += fprintf(dest, tempfmt, va_arg(args, unsigned long));
data/netgen-lvs-1.5.133/base/pdutils.c:523:13:  [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.
	  count += fprintf(dest, tempfmt, va_arg(args, unsigned));
data/netgen-lvs-1.5.133/base/pdutils.c:533:13:  [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.
	  count += fprintf(dest, tempfmt, va_arg(args, long));
data/netgen-lvs-1.5.133/base/pdutils.c:536:13:  [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.
	  count += fprintf(dest, tempfmt, va_arg(args, int));
data/netgen-lvs-1.5.133/base/pdutils.c:545:11:  [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.
	count += fprintf(dest, tempfmt, va_arg(args, double));
data/netgen-lvs-1.5.133/base/pdutils.c:550:11:  [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.
	count += fprintf(dest, tempfmt, va_arg(args, pointer));
data/netgen-lvs-1.5.133/base/pdutils.c:596:5:  [4] (format) vprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
int vprintf(format, args)
data/netgen-lvs-1.5.133/base/pdutils.c:600:12:  [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
    return vfprintf(stdout, format, args);
data/netgen-lvs-1.5.133/base/pdutils.c:607:5:  [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
int vfprintf(FILE *fp, char *fmt, va_list args)
data/netgen-lvs-1.5.133/base/pdutils.c:613:5:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
int vsprintf(char *str, char *fmt, va_list args)
data/netgen-lvs-1.5.133/base/pdutils.h:44:12:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
extern int vsprintf(char *dest, char *format, va_list args);
data/netgen-lvs-1.5.133/base/pdutils.h:45:12:  [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
extern int vfprintf(FILE *dest, char *format, va_list args);
data/netgen-lvs-1.5.133/base/pdutils.h:46:12:  [4] (format) vprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
extern int vprintf(char *format, va_list args);
data/netgen-lvs-1.5.133/base/pdutils.h:48:12:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
extern int vsprintf(char *dest, char *format, ...);
data/netgen-lvs-1.5.133/base/place.c:529: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(outfilename, cellname);
data/netgen-lvs-1.5.133/base/place.c:531: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(outfilename, filename);
data/netgen-lvs-1.5.133/base/place.c:533: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(outfilename, OUT_FILE_EXT);
data/netgen-lvs-1.5.133/base/place.c:544: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(logfilename, cellname);
data/netgen-lvs-1.5.133/base/place.c:546: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(logfilename, cellname);
data/netgen-lvs-1.5.133/base/place.c:548: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(logfilename, LOG_FILE_EXT);
data/netgen-lvs-1.5.133/base/place.c:797:5:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
    sprintf(prompt, prompt2, i);
data/netgen-lvs-1.5.133/base/place.c:829: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(string, text);
data/netgen-lvs-1.5.133/base/place.c:1230:7:  [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("");
data/netgen-lvs-1.5.133/base/place.c:1232:7:  [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("/bin/csh");
data/netgen-lvs-1.5.133/base/print.c:100:28:  [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
  if (LoggingFile != NULL) vfprintf(LoggingFile, format, ap);
data/netgen-lvs-1.5.133/base/print.c:115:3:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
  vsprintf(tmpstr, format, ap);
data/netgen-lvs-1.5.133/base/print.c:133: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(file_buffers[FileIndex].buffer, tmpstr);
data/netgen-lvs-1.5.133/base/print.c:155: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(file_buffers[FileIndex].buffer, tmpstr);
data/netgen-lvs-1.5.133/base/print.c:164: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(file_buffers[FileIndex].buffer, tmpstr);
data/netgen-lvs-1.5.133/base/print.c:209:3:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
  vsprintf(tmpstr, format, ap);
data/netgen-lvs-1.5.133/base/proto.h:11:12:  [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.
extern int system(const char *s);
data/netgen-lvs-1.5.133/base/proto.h:19:12:  [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.
extern int fprintf(FILE *stream, char *fmt, ...);
data/netgen-lvs-1.5.133/base/proto.h:22:12:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
extern int printf(char *fmt, ...);
data/netgen-lvs-1.5.133/base/proto.h:27:12:  [4] (buffer) fscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function. If the scanf format is influenceable by an
  attacker, it's exploitable.
extern int fscanf(FILE *stream, char *fmt, ...);
data/netgen-lvs-1.5.133/base/proto.h:28:12:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
extern int sprintf(char *s, char *fmt, ...);
data/netgen-lvs-1.5.133/base/proto.h:30:12:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
extern int vsprintf(char *s, char *fmt, va_list ap);
data/netgen-lvs-1.5.133/base/proto.h:55:12:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function. If the scanf format is influenceable by an
  attacker, it's exploitable.
extern int sscanf(char *s, char *fmt, ...);
data/netgen-lvs-1.5.133/base/proto.h:59:14:  [4] (format) vsprintf:
  Potential format string problem (CWE-134). Make format string constant.
extern char *vsprintf(char *s, char *fmt, va_list ap);
data/netgen-lvs-1.5.133/base/query.c:61: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(InputLine,str);
data/netgen-lvs-1.5.133/base/query.c:100: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(tmpstr,nexttok);
data/netgen-lvs-1.5.133/base/query.c:103: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(InputLine, nexttok);
data/netgen-lvs-1.5.133/base/query.c:105: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(buf, tmpstr);
data/netgen-lvs-1.5.133/base/query.c:980:12:  [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).
      else strcpy(repstr2, CurrentCell->name);
data/netgen-lvs-1.5.133/base/query.c:987:12:  [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).
      else strcpy(repstr2, CurrentCell->name);
data/netgen-lvs-1.5.133/base/query.c:1122:7:  [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("");
data/netgen-lvs-1.5.133/base/query.c:1124:7:  [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("/bin/csh");
data/netgen-lvs-1.5.133/base/spice.c:415:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	       sprintf(obp->name, "%s/%s", obp->instance.name, ob2->name);
data/netgen-lvs-1.5.133/base/spice.c:801:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	 sprintf(iname, "%s/%s", fname, iptr);
data/netgen-lvs-1.5.133/base/spice.c:809:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	 sprintf(iname, "%s%s", userpath, iptr + 1);
data/netgen-lvs-1.5.133/base/spice.c:823:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	       sprintf(iname, "%s%s", userpath, pathstart);
data/netgen-lvs-1.5.133/base/spice.c:1728: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).
         strcpy(instancename, subcktname);
data/netgen-lvs-1.5.133/base/spice.c:1732: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).
         strcpy(instancename, subcktname);
data/netgen-lvs-1.5.133/base/spice.c:1962: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(name, (*CellStackPtr)->cellname);
data/netgen-lvs-1.5.133/base/spice.c:1965:12:  [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(ppath + 1, fname);
data/netgen-lvs-1.5.133/base/spice.c:1967:12:  [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(name, fname);
data/netgen-lvs-1.5.133/base/verilog.c:662:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			sprintf(paramval, "%s %s", paramlast, nexttok);
data/netgen-lvs-1.5.133/base/verilog.c:828: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(pkey, nexttok);
data/netgen-lvs-1.5.133/base/verilog.c:856:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
				    sprintf(portname, "%s[%d]", nexttok, i);
data/netgen-lvs-1.5.133/base/verilog.c:862:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
				    sprintf(portname, "%s[%d]", nexttok, i);
data/netgen-lvs-1.5.133/base/verilog.c:938:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			    sprintf(portname, "%s[%d]", nexttok, i);
data/netgen-lvs-1.5.133/base/verilog.c:944:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			    sprintf(portname, "%s[%d]", nexttok, i);
data/netgen-lvs-1.5.133/base/verilog.c:989:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	 sprintf(iname, "%s/%s", fname, iptr);
data/netgen-lvs-1.5.133/base/verilog.c:997:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	 sprintf(iname, "%s%s", userpath, iptr + 1);
data/netgen-lvs-1.5.133/base/verilog.c:1011:9:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	       sprintf(iname, "%s%s", userpath, pathstart);
data/netgen-lvs-1.5.133/base/verilog.c:1125: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(noderoot, nexttok);
data/netgen-lvs-1.5.133/base/verilog.c:1128:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			sprintf(nodename, "%s[%d]", nexttok, i);
data/netgen-lvs-1.5.133/base/verilog.c:1136:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			sprintf(nodename, "%s[%d]", nexttok, i);
data/netgen-lvs-1.5.133/base/verilog.c:1172: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(noderoot, nexttok);
data/netgen-lvs-1.5.133/base/verilog.c:1173:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(nodename, "%s[%d]", nexttok, wb.start);
data/netgen-lvs-1.5.133/base/verilog.c:1226: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(assignroot, nexttok);
data/netgen-lvs-1.5.133/base/verilog.c:1227:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			    sprintf(assignname, "%s[%d]", nexttok, j);
data/netgen-lvs-1.5.133/base/verilog.c:1259:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			    sprintf(nodename, "%s[%d]", noderoot, i);
data/netgen-lvs-1.5.133/base/verilog.c:1261:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			    sprintf(nodename, "%s", lhs->name);
data/netgen-lvs-1.5.133/base/verilog.c:1263:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			    sprintf(assignname, "%s[%d]", assignroot, j);
data/netgen-lvs-1.5.133/base/verilog.c:1265:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			    sprintf(assignname, "%s", rhs->name);
data/netgen-lvs-1.5.133/base/verilog.c:1449: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(new_in_line_net, in_line_net);
data/netgen-lvs-1.5.133/base/verilog.c:1450: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(new_in_line_net, nexttok);
data/netgen-lvs-1.5.133/base/verilog.c:1473:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			 sprintf(expnet, "%s[%s", new_port->net, nexttok);
data/netgen-lvs-1.5.133/base/verilog.c:1568:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			sprintf(defport, "%s[%d]", scan->name, i);
data/netgen-lvs-1.5.133/base/verilog.c:1575:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			sprintf(defport, "%s[%d]", scan->name, i);
data/netgen-lvs-1.5.133/base/verilog.c:1719:15:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	             sprintf(vname, "%s[%d]", scan->name, j);
data/netgen-lvs-1.5.133/base/verilog.c:1722:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			 sprintf(vname, "%s", netname); 
data/netgen-lvs-1.5.133/base/verilog.c:1724:5:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			 sprintf(vname, "%s[%d]", netname, i); 
data/netgen-lvs-1.5.133/base/verilog.c:1787:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(locinst, "%s[%d]", instancename, i);
data/netgen-lvs-1.5.133/base/verilog.c:1789: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(locinst, instancename);
data/netgen-lvs-1.5.133/base/verilog.c:1839:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			   sprintf(pinname, "%s[%d]", scanroot, wb.start);
data/netgen-lvs-1.5.133/base/verilog.c:1848:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			  sprintf(pinname, "%s[%d]", scanroot, obpinidx);
data/netgen-lvs-1.5.133/base/verilog.c:1867:10:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		       sprintf(netname, "%s[%d]", scanroot, slice);
data/netgen-lvs-1.5.133/base/verilog.c:2015: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(name, (*CellStackPtr)->cellname);
data/netgen-lvs-1.5.133/base/verilog.c:2018:12:  [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(ppath + 1, fname);
data/netgen-lvs-1.5.133/base/verilog.c:2020:12:  [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(name, fname);
data/netgen-lvs-1.5.133/base/wombat.c:40: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).
  else strcpy(FileName, filename);
data/netgen-lvs-1.5.133/base/xilinx.c:149: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(Path, cellname);
data/netgen-lvs-1.5.133/base/xilinx.c:151: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(Path, filename);
data/netgen-lvs-1.5.133/base/xnetgen.c:1002: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->chars[i], buf);
data/netgen-lvs-1.5.133/base/xnetgen.c:1026: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(tmpbuf, buf);
data/netgen-lvs-1.5.133/base/xnetgen.c:1725: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(prompt_response, c);
data/netgen-lvs-1.5.133/base/xnetgen.c:1795: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(buf, c);
data/netgen-lvs-1.5.133/base/xnetgen.c:1799: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(buf, DialogWidget(prompt));
data/netgen-lvs-1.5.133/base/xnetgen.c:1854: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_endptr, buf);
data/netgen-lvs-1.5.133/base/xnetgen.c:2237: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(buf, c);
data/netgen-lvs-1.5.133/base/xnetgen.c:2291: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_endptr, buf);
data/netgen-lvs-1.5.133/dbug/analyze.c:187: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 (retval, s);
data/netgen-lvs-1.5.133/dbug/dbug.c:176:12:  [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.
IMPORT int access ();		/* Test file for access */
data/netgen-lvs-1.5.133/dbug/dbug.c:195:12:  [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.
IMPORT int fprintf ();		/* Formatted print on file */
data/netgen-lvs-1.5.133/dbug/dbug.c:196:12:  [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
IMPORT int vfprintf ();		/* Varargs form of fprintf */
data/netgen-lvs-1.5.133/dbug/dbug.c:200:14:  [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).
IMPORT char *strcpy ();		/* Copy strings around */
data/netgen-lvs-1.5.133/dbug/dbug.c:312:29:  [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.
#  define EXISTS(pathname) (access (pathname, A_EXISTS) == 0)
data/netgen-lvs-1.5.133/dbug/dbug.c:313:31:  [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.
#  define WRITABLE(pathname) (access (pathname, A_WRITE) == 0)
data/netgen-lvs-1.5.133/dbug/dbug.c:647:9:  [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.
	(VOID) fprintf (_db_pfp_, PROF_EFMT , Clock (), func);
data/netgen-lvs-1.5.133/dbug/dbug.c:649:9:  [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.
	(VOID) fprintf (_db_pfp_, PROF_SFMT, framep, stackused, *_sfunc_);
data/netgen-lvs-1.5.133/dbug/dbug.c:651:9:  [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.
	(VOID) fprintf (_db_pfp_, PROF_SFMT, framep, stackused, func);
data/netgen-lvs-1.5.133/dbug/dbug.c:697:9:  [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.
	(VOID) fprintf (_db_fp_, ERR_MISSING_RETURN, _db_process_, func);
data/netgen-lvs-1.5.133/dbug/dbug.c:699:9:  [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.
	(VOID) fprintf (_db_pfp_, PROF_XFMT, Clock(), func);
data/netgen-lvs-1.5.133/dbug/dbug.c:786:9:  [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
	(VOID) vfprintf (_db_fp_, format, args);
data/netgen-lvs-1.5.133/dbug/dbug.c:811:9:  [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
	(VOID) vfprintf (_db_fp_, format, args);
data/netgen-lvs-1.5.133/dbug/dbug.c:1122:12:  [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.
    (VOID) fprintf (_db_fp_, buffer);
data/netgen-lvs-1.5.133/dbug/dbug.c:1186:12:  [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 (new, string);
data/netgen-lvs-1.5.133/dbug/dbug.c:1272:10:  [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.
		(VOID) fprintf (_db_fp_, ERR_OPEN, _db_process_, name);
data/netgen-lvs-1.5.133/dbug/dbug.c:1284:15:  [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.
 		    (VOID) fprintf (_db_fp_, ERR_OPEN, _db_process_, name);
data/netgen-lvs-1.5.133/dbug/dbug.c:1335:13:  [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.
	    (VOID) fprintf (_db_fp_, ERR_OPEN, _db_process_, name);
data/netgen-lvs-1.5.133/dbug/dbug.c:1347:10:  [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.
		(VOID) fprintf (_db_fp_, ERR_OPEN, _db_process_, name);
data/netgen-lvs-1.5.133/dbug/dbug.c:1385:13:  [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.
	    (VOID) fprintf (stderr, ERR_CLOSE, _db_process_);
data/netgen-lvs-1.5.133/dbug/dbug.c:1416:12:  [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.
    (VOID) fprintf (stderr, ERR_ABORT, _db_process_, why);
data/netgen-lvs-1.5.133/dbug/dbug.c:1625:9:  [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.
	(VOID) fprintf (stderr, ERR_CHOWN, _db_process_, pathname);
data/netgen-lvs-1.5.133/dbug/useful.h:65: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(stderr,__MERF_OO_,my_name,__FILE__,__LINE__);\
data/netgen-lvs-1.5.133/dbug/useful.h:70:3:  [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(stderr,__MERF_OO_,my_name,__FILE__,__LINE__);\
data/netgen-lvs-1.5.133/regexp/regexp.c:1179:24:  [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(buf, p);
data/netgen-lvs-1.5.133/regexp/timer.c:104:9:  [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(stderr, s1, s2);
data/netgen-lvs-1.5.133/regexp/timer.c:180:9:  [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(stderr, s1, s2);
data/netgen-lvs-1.5.133/regexp/try.c:106:9:  [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(stderr, s1, s2);
data/netgen-lvs-1.5.133/regexp/try.c:235:9:  [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(stderr, s1, s2);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:1114:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	 sprintf(istr, "/%s", estr);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:1917: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(LogFileName, tmpstr);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4052: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 (outstr + 19, (f == stderr) ? "err \"" : "out \"");
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4056:14:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
    nchars = vsnprintf(outptr + 24, 102, fmt, args);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4065:2:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
	vsnprintf(outptr + 24, nchars + 2, fmt, args);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4121: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(stdptr, (f == stderr) ? "err" : "out");
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4195:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(keyword, "netgen::%s", netgen_cmds[n].name);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4200:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(keyword, "netgen::%s", netcmp_cmds[n].name);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4222:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
   sprintf(keyword, "Netgen %s.%s compiled on %s\n", NETGEN_VERSION,
data/netgen-lvs-1.5.133/base/proto.h:33:13:  [3] (random) srand:
  This function is not sufficiently random for security-related functions
  such as key and nonce creation (CWE-327). Use a more secure technique for
  acquiring random values.
extern void srand(unsigned seed);
data/netgen-lvs-1.5.133/base/proto.h:43: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.
extern char *getenv(char *name);
data/netgen-lvs-1.5.133/base/proto.h:49:13:  [3] (random) srand:
  This function is not sufficiently random for security-related functions
  such as key and nonce creation (CWE-327). Use a more secure technique for
  acquiring random values.
extern void srand(int seed);
data/netgen-lvs-1.5.133/base/query.c:157: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("DISPLAY")) {
data/netgen-lvs-1.5.133/base/spice.c:807: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.
	 userpath = getenv("HOME");
data/netgen-lvs-1.5.133/base/verilog.c:995: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.
	 userpath = getenv("HOME");
data/netgen-lvs-1.5.133/base/xnetgen.c:1519: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("DISPLAY") == NULL) {
data/netgen-lvs-1.5.133/base/xnetgen.c:2149: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("DISPLAY") == NULL) {
data/netgen-lvs-1.5.133/base/xnetgen.c:2641: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("DISPLAY") == NULL) {
data/netgen-lvs-1.5.133/dbug/analyze.c:531:24:  [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer overflows
  (CWE-120, CWE-20). Check implementation on installation, or limit the size
  of all string inputs.
    extern int optind, getopt ();
data/netgen-lvs-1.5.133/dbug/analyze.c:541:17:  [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer overflows
  (CWE-120, CWE-20). Check implementation on installation, or limit the size
  of all string inputs.
    while ((c = getopt (argc,argv,"#:v")) != EOF) {
data/netgen-lvs-1.5.133/netgen/netcomp.c:78:15:  [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer overflows
  (CWE-120, CWE-20). Check implementation on installation, or limit the size
  of all string inputs.
  while ((c = getopt(argc, argv, "ivq")) != EOF) {
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4209: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.
   cadroot = getenv("CAD_ROOT");
data/netgen-lvs-1.5.133/base/actel.c:55: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).
  else actelfile = fopen(filename,"w");
data/netgen-lvs-1.5.133/base/actel.c:75: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	ActelNames[ACTELNAMESIZE][500] ;
data/netgen-lvs-1.5.133/base/actel.c:86: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    name[500];
data/netgen-lvs-1.5.133/base/actel.c:95: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(ActelNames[ActelIndex], "$%lX", ActelNameHash(name));
data/netgen-lvs-1.5.133/base/actel.c:134: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 physicalpin[200];
data/netgen-lvs-1.5.133/base/actel.c:387: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 Path[500];
data/netgen-lvs-1.5.133/base/actel.c:388: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[500];
data/netgen-lvs-1.5.133/base/ccode.c:87: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[500];
data/netgen-lvs-1.5.133/base/config.h:114:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
#define memcpy(to,from,len) bcopy((char *)(from), (char *)(to), len) 
data/netgen-lvs-1.5.133/base/config.h:114:29:  [2] (buffer) bcopy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
#define memcpy(to,from,len) bcopy((char *)(from), (char *)(to), len) 
data/netgen-lvs-1.5.133/base/config.h:142:12:  [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
extern int open(char *path, int oflag, ...); /* HPUX has it in <sys/fcntl.h> */
data/netgen-lvs-1.5.133/base/embed.c:118: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 ownedleaves[MAX_LEAVES+1];
data/netgen-lvs-1.5.133/base/embed.c:153: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 ownedleaves[MAX_LEAVES+1];
data/netgen-lvs-1.5.133/base/embed.c:229: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 ownedleaves[MAX_LEAVES+1];
data/netgen-lvs-1.5.133/base/embed.c:270: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 ownedleaves[MAX_LEAVES+1];
data/netgen-lvs-1.5.133/base/embed.c:593:10:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    else memcpy(node, E, sizeof(struct embed));
data/netgen-lvs-1.5.133/base/embed.c:632: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 longstr[200];
data/netgen-lvs-1.5.133/base/embed.c:671:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char name[200];
data/netgen-lvs-1.5.133/base/embed.c:709:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char name[200];
data/netgen-lvs-1.5.133/base/embed.h:47: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.
extern unsigned char C[MAX_ELEMENTS][MAX_NODES + 1];
data/netgen-lvs-1.5.133/base/embed.h:48: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.
extern unsigned char CSTAR[MAX_ELEMENTS][MAX_NODES + 1];
data/netgen-lvs-1.5.133/base/embed.h:108: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.
extern unsigned char C[MAX_ELEMENTS][MAX_NODES + 1];
data/netgen-lvs-1.5.133/base/embed.h:109: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.
extern unsigned char CSTAR[MAX_ELEMENTS][MAX_NODES + 1];
data/netgen-lvs-1.5.133/base/ext.c:38: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[500];
data/netgen-lvs-1.5.133/base/ext.c:169:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char name[100];
data/netgen-lvs-1.5.133/base/ext.c:210:7:  [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 name[200];
data/netgen-lvs-1.5.133/base/ext.c:225:7:  [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 name[200];
data/netgen-lvs-1.5.133/base/ext.c:226:7:  [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 name2[200];
data/netgen-lvs-1.5.133/base/ext.c:237:7:  [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 dev_name[100], dev_class[100];
data/netgen-lvs-1.5.133/base/ext.c:238:7:  [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 gate[200], drain[200], source[200], subs[200];
data/netgen-lvs-1.5.133/base/ext.c:239:7:  [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 inststr[64];
data/netgen-lvs-1.5.133/base/ext.c:308:7:  [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 fet_class[100];
data/netgen-lvs-1.5.133/base/ext.c:309:7:  [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 gate[200], drain[200], source[200], subs[200];
data/netgen-lvs-1.5.133/base/ext.c:310:7:  [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 inststr[64];
data/netgen-lvs-1.5.133/base/ext.c:367: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.
        char ctop[200], cbot[200], cdummy[200];
data/netgen-lvs-1.5.133/base/ext.c:377:7:  [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 name[200];
data/netgen-lvs-1.5.133/base/ext.c:378:7:  [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 instancename[200];
data/netgen-lvs-1.5.133/base/ext.c:392: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 tmp[200];
data/netgen-lvs-1.5.133/base/ext.c:407:7:  [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 name[200];
data/netgen-lvs-1.5.133/base/ext.c:408:7:  [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 name2[200];
data/netgen-lvs-1.5.133/base/ext.c:451: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[500], simclass;
data/netgen-lvs-1.5.133/base/ext.c:642:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char name[100];
data/netgen-lvs-1.5.133/base/ext.c:672:7:  [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 gate[200], drain[200], source[200];
data/netgen-lvs-1.5.133/base/ext.c:673:7:  [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 inststr[25], *instptr = NULL;
data/netgen-lvs-1.5.133/base/ext.c:702:6:  [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(inststr, "n@");
data/netgen-lvs-1.5.133/base/ext.c:716:7:  [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 gate[200], drain[200], source[200];
data/netgen-lvs-1.5.133/base/ext.c:717:7:  [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 inststr[25], *instptr = NULL;
data/netgen-lvs-1.5.133/base/ext.c:742:6:  [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(inststr, "p@");
data/netgen-lvs-1.5.133/base/ext.c:756:7:  [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 gate[200], drain[200], source[200];
data/netgen-lvs-1.5.133/base/ext.c:757:7:  [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 inststr[25], *instptr = NULL;
data/netgen-lvs-1.5.133/base/ext.c:777:6:  [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(inststr, "e@");
data/netgen-lvs-1.5.133/base/ext.c:790:7:  [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 base[200], emitter[200], collector[200];
data/netgen-lvs-1.5.133/base/ext.c:791:7:  [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 inststr[25], *instptr = NULL;
data/netgen-lvs-1.5.133/base/ext.c:810:6:  [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(inststr, "b@");
data/netgen-lvs-1.5.133/base/ext.c:828: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.
        char ctop[200], cbot[200], cdummy[200];
data/netgen-lvs-1.5.133/base/ext.c:853: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.
        char rtop[200], rbot[200];
data/netgen-lvs-1.5.133/base/ext.c:877: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.
        char rtop[200], rbot[200], rdummy[200];
data/netgen-lvs-1.5.133/base/ext.c:878: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 inststr[25], *instptr = NULL;
data/netgen-lvs-1.5.133/base/ext.c:897:8:  [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(inststr, "z@");
data/netgen-lvs-1.5.133/base/ext.c:919:7:  [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 node1[200], node2[200];
data/netgen-lvs-1.5.133/base/flatten.c:56: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	tmpstr[200];
data/netgen-lvs-1.5.133/base/flatten.c:262: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	tmpstr[200];
data/netgen-lvs-1.5.133/base/greedy.c:241: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 status[MAX_LEAVES + 1];
data/netgen-lvs-1.5.133/base/inetcomp.c:36: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 cell1[200], cell2[200];
data/netgen-lvs-1.5.133/base/netcmp.c:1150: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 ostr[89];
data/netgen-lvs-1.5.133/base/netcmp.c:1152: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 permname[80];
data/netgen-lvs-1.5.133/base/netcmp.c:1153: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 permcount[80];
data/netgen-lvs-1.5.133/base/netcmp.c:1262:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
		     char value[10];
data/netgen-lvs-1.5.133/base/netcmp.c:1269: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(value, "%d", elist1[n]->flist[f1].count);
data/netgen-lvs-1.5.133/base/netcmp.c:1276:8:  [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(value, "%d", elist1[n]->flist[f1].count);
data/netgen-lvs-1.5.133/base/netcmp.c:1292:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
		     char value[10];
data/netgen-lvs-1.5.133/base/netcmp.c:1299: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(value, "%d", elist2[n]->flist[f2].count);
data/netgen-lvs-1.5.133/base/netcmp.c:1306:8:  [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(value, "%d", elist2[n]->flist[f2].count);
data/netgen-lvs-1.5.133/base/netcmp.c:1505: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 ostr[89];
data/netgen-lvs-1.5.133/base/netcmp.c:2773: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 ostr[89];
data/netgen-lvs-1.5.133/base/netcmp.c:3009:6:  [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 ostr[89];
data/netgen-lvs-1.5.133/base/netcmp.c:4283:4:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
   char multiple[2], other[2];
data/netgen-lvs-1.5.133/base/netcmp.c:4729:11:  [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 mkey[2], skey[2];
data/netgen-lvs-1.5.133/base/netcmp.c:6494:8:  [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(obn->name, "dummy_%d", i);
data/netgen-lvs-1.5.133/base/netcmp.c:6545:4:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
   char ostr[89];
data/netgen-lvs-1.5.133/base/netcmp.c:6931:13:  [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(obn->name, "proxy%d", rand() & 0x3ffffff);
data/netgen-lvs-1.5.133/base/netcmp.c:7294: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 name[100];
data/netgen-lvs-1.5.133/base/netcmp.c:7295: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 name2[100];
data/netgen-lvs-1.5.133/base/netcmp.c:7387: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 model[100];
data/netgen-lvs-1.5.133/base/netfile.c:43: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 buffer[LINELENGTH] = "";  /* buffer for FlushString */
data/netgen-lvs-1.5.133/base/netfile.c:69: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 tmpbuf[500];
data/netgen-lvs-1.5.133/base/netfile.c:138: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	tmpstr[1000];
data/netgen-lvs-1.5.133/base/netfile.c:147:7:  [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(buffer, "     ");
data/netgen-lvs-1.5.133/base/netfile.c:172:15:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
    outfile = fopen(filename, "w");
data/netgen-lvs-1.5.133/base/netfile.c:368:8:  [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(t, "%d", kl->pdefault.ival);
data/netgen-lvs-1.5.133/base/netfile.c:370:8:  [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(t, "%g", kl->pdefault.dval);
data/netgen-lvs-1.5.133/base/netfile.c:760:13:  [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).
  locfile = fopen(name,"r");
data/netgen-lvs-1.5.133/base/netfile.c:859:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char testname[200];
data/netgen-lvs-1.5.133/base/netfile.c:870:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char test[3];
data/netgen-lvs-1.5.133/base/netfile.c:942: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[500];
data/netgen-lvs-1.5.133/base/netfile.c:964: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 name[100];
data/netgen-lvs-1.5.133/base/netfile.c:978:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char string[400];
data/netgen-lvs-1.5.133/base/netfile.c:1102: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[500];
data/netgen-lvs-1.5.133/base/netfile.c:1110:18:  [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 ((filenum = open(FileName, O_WRONLY | O_CREAT | O_TRUNC, 
data/netgen-lvs-1.5.133/base/netfile.c:1137:5:  [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(buf, bufptr, bytes);
data/netgen-lvs-1.5.133/base/netfile.c:1149: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(readbuf, bufptr, bytes_in_buffer); 
data/netgen-lvs-1.5.133/base/netfile.c:1155: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(buf, readbuf, bytes);
data/netgen-lvs-1.5.133/base/netfile.c:1161: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(buf, readbuf, bytes_in_buffer);
data/netgen-lvs-1.5.133/base/netfile.c:1169:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char tmpbuf[READ_BUFSIZ];
data/netgen-lvs-1.5.133/base/netfile.c:1172:5:  [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(tmpbuf, bufptr, bytes_in_buffer); /* shift to front of buffer */
data/netgen-lvs-1.5.133/base/netfile.c:1173:5:  [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(readbuf, tmpbuf, bytes_in_buffer); /* use tmpbuf for safety */
data/netgen-lvs-1.5.133/base/netfile.c:1178: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(buf, readbuf, bytes);
data/netgen-lvs-1.5.133/base/netfile.c:1184: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(buf, readbuf, bytes_in_buffer);
data/netgen-lvs-1.5.133/base/netfile.c:1200: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 name[100];
data/netgen-lvs-1.5.133/base/netfile.c:1204:15:  [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 ((File = open(fname, O_RDONLY, FILE_ACCESS_BITS)) == -1) {
data/netgen-lvs-1.5.133/base/netfile.c:1206: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 ((File = open(name, O_RDONLY, FILE_ACCESS_BITS)) == -1) {
data/netgen-lvs-1.5.133/base/netfile.c:1233:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char string[400];
data/netgen-lvs-1.5.133/base/netgen.c:59: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 staticstrings[MAX_STATIC_STRINGS][200];
data/netgen-lvs-1.5.133/base/netgen.c:1403: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 tmpname[512], tmpname2[512];
data/netgen-lvs-1.5.133/base/netgen.c:1511: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 buffer[1024];
data/netgen-lvs-1.5.133/base/netgen.c:1546: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 tmpname[512];
data/netgen-lvs-1.5.133/base/netgen.c:1551: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 namedport[512]; /* tmp buffers */
data/netgen-lvs-1.5.133/base/netgen.c:2169:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char tstr[256];
data/netgen-lvs-1.5.133/base/netgen.c:2181: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(tstr, "%d", vl->value.ival);
data/netgen-lvs-1.5.133/base/netgen.c:2188: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(tstr, "%g", vl->value.dval);
data/netgen-lvs-1.5.133/base/netgen.c:2671:11:  [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 newstr[32];
data/netgen-lvs-1.5.133/base/netgen.c:2785: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 buffer[1024];
data/netgen-lvs-1.5.133/base/netgen.c:2806: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 buffer1[1024], buffer2[1024];
data/netgen-lvs-1.5.133/base/netgen.c:2807: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 prefix[20];
data/netgen-lvs-1.5.133/base/netgen.c:2992: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(kv2->value.string, "%c", tagc);
data/netgen-lvs-1.5.133/base/netgen.c:3203:6:  [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(pptr, "_%d", ob2->node);
data/netgen-lvs-1.5.133/base/netgen.c:3239:11:  [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(pptr, "_%d", pob2->node);
data/netgen-lvs-1.5.133/base/netgen.c:3241:11:  [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(pptr, "_%d", pob1->node);
data/netgen-lvs-1.5.133/base/netgen.c:3243:11:  [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(pptr, "_%d", ob2->node);
data/netgen-lvs-1.5.133/base/netgen.c:3660: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 buffer1[1024];
data/netgen-lvs-1.5.133/base/netgen.c:3661: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 prefix[10];
data/netgen-lvs-1.5.133/base/ntk.c:126: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[500];
data/netgen-lvs-1.5.133/base/ntk.c:184: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	model[100], instancename[100], name[100];
data/netgen-lvs-1.5.133/base/ntk.c:221:7:  [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 last[100];
data/netgen-lvs-1.5.133/base/ntk.c:267: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 *ports[100];
data/netgen-lvs-1.5.133/base/ntk.c:274: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(name, "pin%d", args+1);
data/netgen-lvs-1.5.133/base/objlist.c:191: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 to_lower[256] = {
data/netgen-lvs-1.5.133/base/objlist.c:699: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 buffer[200];
data/netgen-lvs-1.5.133/base/objlist.c:798: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(head, test, sizeof(struct objlist));
data/netgen-lvs-1.5.133/base/objlist.c:819: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(tmp, test, sizeof(struct objlist));
data/netgen-lvs-1.5.133/base/objlist.c:875:5:  [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(head, test, sizeof(struct objlist));
data/netgen-lvs-1.5.133/base/objlist.c:899: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(tmp, ls1, sizeof(struct objlist));
data/netgen-lvs-1.5.133/base/objlist.c:1205: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 StrBuffer[100];
data/netgen-lvs-1.5.133/base/objlist.c:1265: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(StrBuffer, "Disconnected(%d)",node);
data/netgen-lvs-1.5.133/base/objlist.c:1292: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(StrBuffer, "bogus(%d)",node);
data/netgen-lvs-1.5.133/base/pdutils.c:381: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 tempfmt[64];
data/netgen-lvs-1.5.133/base/pdutils.c:492: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 tempfmt[64];
data/netgen-lvs-1.5.133/base/place.c:70: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 C[MAX_ELEMENTS][MAX_NODES + 1];
data/netgen-lvs-1.5.133/base/place.c:71: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 CSTAR[MAX_ELEMENTS][MAX_NODES + 1];
data/netgen-lvs-1.5.133/base/place.c:514: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 outfilename[200];
data/netgen-lvs-1.5.133/base/place.c:515: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 logfilename[200];
data/netgen-lvs-1.5.133/base/place.c:535:13:  [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).
  outfile = fopen(outfilename,"w");
data/netgen-lvs-1.5.133/base/place.c:549:15:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
    logfile = fopen(logfilename,"w");
data/netgen-lvs-1.5.133/base/place.c:786: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 name[100];
data/netgen-lvs-1.5.133/base/place.c:795:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char prompt[100];
data/netgen-lvs-1.5.133/base/place.c:799: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).
    newfanout = atoi(name);
data/netgen-lvs-1.5.133/base/place.c:825: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 string[100];
data/netgen-lvs-1.5.133/base/place.c:886:14:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
  LeafPins = atoi(string);
data/netgen-lvs-1.5.133/base/place.c:965: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 name[100];
data/netgen-lvs-1.5.133/base/place.c:986: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).
      LogLevel1 = atoi(name);
data/netgen-lvs-1.5.133/base/place.c:988: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).
      LogLevel2 = atoi(name);
data/netgen-lvs-1.5.133/base/place.c:1089:18:  [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).
      LeafPins = atoi(name);
data/netgen-lvs-1.5.133/base/place.c:1139: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 prompt[100];
data/netgen-lvs-1.5.133/base/place.c:1141: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(prompt,"Fanout for level %d (0 to quit): ",i);
data/netgen-lvs-1.5.133/base/place.c:1143:14:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
	newfanout = atoi(name);
data/netgen-lvs-1.5.133/base/place.c:1171: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 prompt[100];
data/netgen-lvs-1.5.133/base/place.c:1173: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(prompt,"Common nodes for level %d (0 to quit): ",i);
data/netgen-lvs-1.5.133/base/place.c:1175:14:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
	newfanout = atoi(name);
data/netgen-lvs-1.5.133/base/place.c:1203: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 prompt[100];
data/netgen-lvs-1.5.133/base/place.c:1205: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(prompt,"Used leaves for level %d (0 to quit): ",i);
data/netgen-lvs-1.5.133/base/place.c:1207:14:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
	newfanout = atoi(name);
data/netgen-lvs-1.5.133/base/print.c:40: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 buffer[200];
data/netgen-lvs-1.5.133/base/print.c:110: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 tmpstr[200];
data/netgen-lvs-1.5.133/base/print.c:154:7:  [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(file_buffers[FileIndex].buffer,"     ");
data/netgen-lvs-1.5.133/base/print.c:206: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 tmpstr[200];
data/netgen-lvs-1.5.133/base/print.c:286:9:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
  ret = fopen(name,mode);
data/netgen-lvs-1.5.133/base/proto.h:14:12:  [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).
extern int atoi (const char *str);
data/netgen-lvs-1.5.133/base/proto.h:50:8:  [2] (buffer) bcopy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
extern bcopy(char *from, char *to, int len);
data/netgen-lvs-1.5.133/base/query.c:55: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 InputLine[200];
data/netgen-lvs-1.5.133/base/query.c:76: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 tmpstr[200];
data/netgen-lvs-1.5.133/base/query.c:952: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 repstr[100];
data/netgen-lvs-1.5.133/base/query.c:953: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 repstr2[100];
data/netgen-lvs-1.5.133/base/query.c:1139:24:  [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).
	promptstring_infile = fopen(repstr,"r");
data/netgen-lvs-1.5.133/base/regexp.h:37: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.
        char *startp[NSUBEXP];
data/netgen-lvs-1.5.133/base/regexp.h:38: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.
        char *endp[NSUBEXP];
data/netgen-lvs-1.5.133/base/regexp.h:43: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.
        char program[1];        /* Unwarranted chumminess with compiler. */
data/netgen-lvs-1.5.133/base/spice.c:355: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[500];
data/netgen-lvs-1.5.133/base/spice.c:527: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 inst[256], model[256], instname[256];
data/netgen-lvs-1.5.133/base/spice.c:585:6:  [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(ds, "[[0]]");
data/netgen-lvs-1.5.133/base/spice.c:594:6:  [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(ds, "[[%d]]", n);
data/netgen-lvs-1.5.133/base/spice.c:885:7:  [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 emitter[100], base[100], collector[100];
data/netgen-lvs-1.5.133/base/spice.c:945:7:  [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 drain[100], gate[100], source[100], bulk[100];
data/netgen-lvs-1.5.133/base/spice.c:1025: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.
        char ctop[100], cbot[100];
data/netgen-lvs-1.5.133/base/spice.c:1119: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.
        char rtop[100], rbot[100];
data/netgen-lvs-1.5.133/base/spice.c:1206:7:  [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 cathode[100], anode[100];
data/netgen-lvs-1.5.133/base/spice.c:1266: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.
        char node1[100], node2[100], node3[100], node4[100];
data/netgen-lvs-1.5.133/base/spice.c:1345:7:  [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 end_a[100], end_b[100];
data/netgen-lvs-1.5.133/base/spice.c:1429:7:  [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 pos[100], neg[100];
data/netgen-lvs-1.5.133/base/spice.c:1462:7:  [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(model, "vsrc");		/* Default voltage source */
data/netgen-lvs-1.5.133/base/spice.c:1484:7:  [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 pos[100], neg[100];
data/netgen-lvs-1.5.133/base/spice.c:1516:7:  [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(model, "isrc");		/* Default current source */
data/netgen-lvs-1.5.133/base/spice.c:1538:7:  [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 pos[100], neg[100], ctrlp[100], ctrln[100];
data/netgen-lvs-1.5.133/base/spice.c:1579:7:  [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(model, "vcvs");		/* Default controlled voltage source */
data/netgen-lvs-1.5.133/base/spice.c:1604:7:  [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 instancename[100], subcktname[100];
data/netgen-lvs-1.5.133/base/spice.c:1748: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 defport[8];
data/netgen-lvs-1.5.133/base/spice.c:1756:6:  [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(defport, "%d", i);	
data/netgen-lvs-1.5.133/base/spice.c:1886:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char name[100];
data/netgen-lvs-1.5.133/base/spice.c:1954: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 name[256];
data/netgen-lvs-1.5.133/base/spice.c:2080: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[500];
data/netgen-lvs-1.5.133/base/verilog.c:489: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[500];
data/netgen-lvs-1.5.133/base/verilog.c:594: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 inst[256], model[256], instname[256], portname[256], pkey[256];
data/netgen-lvs-1.5.133/base/verilog.c:746:6:  [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(ds, "[[0]]");
data/netgen-lvs-1.5.133/base/verilog.c:755:6:  [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(ds, "[[%d]]", n);
data/netgen-lvs-1.5.133/base/verilog.c:1106: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 nodename[128], noderoot[100];
data/netgen-lvs-1.5.133/base/verilog.c:1197:6:  [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 assignname[128], assignroot[100];
data/netgen-lvs-1.5.133/base/verilog.c:1301:7:  [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 instancename[100], modulename[100];
data/netgen-lvs-1.5.133/base/verilog.c:1427:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
		  char localnet[100];
data/netgen-lvs-1.5.133/base/verilog.c:1432:8:  [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(localnet, "_noconnect_%d_[%d:%d]", localcount++,
data/netgen-lvs-1.5.133/base/verilog.c:1436:8:  [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(localnet, "_noconnect_%d_", localcount++);
data/netgen-lvs-1.5.133/base/verilog.c:1551: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 defport[128];
data/netgen-lvs-1.5.133/base/verilog.c:1621:6:  [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 vname[256];
data/netgen-lvs-1.5.133/base/verilog.c:1784: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 locinst[128];
data/netgen-lvs-1.5.133/base/verilog.c:1831: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.
		       char pinname[128];
data/netgen-lvs-1.5.133/base/verilog.c:1856: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.
		       char netname[128];
data/netgen-lvs-1.5.133/base/verilog.c:1934:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char name[100];
data/netgen-lvs-1.5.133/base/verilog.c:2007: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 name[256];
data/netgen-lvs-1.5.133/base/wombat.c:36: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[500];
data/netgen-lvs-1.5.133/base/xilinx.c:48: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[80];
data/netgen-lvs-1.5.133/base/xilinx.c:75: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[80];
data/netgen-lvs-1.5.133/base/xilinx.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 Path[500];
data/netgen-lvs-1.5.133/base/xilinx.c:141: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 FileName[500];
data/netgen-lvs-1.5.133/base/xnetgen.c:68: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 GlobalFileName[100], 
data/netgen-lvs-1.5.133/base/xnetgen.c:733:25:  [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).
  promptstring_infile = fopen(get_file(), "r");
data/netgen-lvs-1.5.133/base/xnetgen.c:759:12:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
    file = fopen(get_file(), "r");
data/netgen-lvs-1.5.133/base/xnetgen.c:764:14:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
      file = fopen("netgen.log", "w");
data/netgen-lvs-1.5.133/base/xnetgen.c:766: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).
    else file = fopen(get_file(), "w");
data/netgen-lvs-1.5.133/base/xnetgen.c:921: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 *chars[MAXLINES];   /* Lines of text               */
data/netgen-lvs-1.5.133/base/xnetgen.c:1072:14:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
  FILE *fp, *fopen();
data/netgen-lvs-1.5.133/base/xnetgen.c:1073: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 buf[MAXLINESIZE];
data/netgen-lvs-1.5.133/base/xnetgen.c:1075:13:  [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 ((fp = fopen(filename, "r")) == NULL) {
data/netgen-lvs-1.5.133/base/xnetgen.c:1095: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 buf[MAXLINESIZE];
data/netgen-lvs-1.5.133/base/xnetgen.c:1099: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(buf, "line %d", i);
data/netgen-lvs-1.5.133/base/xnetgen.c:1711: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 prompt_response[100];
data/netgen-lvs-1.5.133/base/xnetgen.c:1833: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 data_buf[DATABUFSIZ];
data/netgen-lvs-1.5.133/base/xnetgen.c:1850:5:  [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(data_buf, cp, data_endptr - cp + 1);
data/netgen-lvs-1.5.133/base/xnetgen.c:2270: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 data_buf[DATABUFSIZ];
data/netgen-lvs-1.5.133/base/xnetgen.c:2287:5:  [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(data_buf, cp, data_endptr - cp + 1);
data/netgen-lvs-1.5.133/dbug/analyze.c:269:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[BUFSIZ];
data/netgen-lvs-1.5.133/dbug/analyze.c:270:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char fn_name[64];	/* Max length of fn_name */
data/netgen-lvs-1.5.133/dbug/dbug.c:191:12:  [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).
IMPORT int atoi ();		/* Convert ascii to integer */
data/netgen-lvs-1.5.133/dbug/dbug.c:194:14:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
IMPORT FILE *fopen ();		/* Open a stream */
data/netgen-lvs-1.5.133/dbug/dbug.c:467: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).
		    stack -> delay = DelayArg (atoi (temp -> string));
data/netgen-lvs-1.5.133/dbug/dbug.c:523:27:  [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).
		    stack -> maxdepth = atoi (temp -> string);
data/netgen-lvs-1.5.133/dbug/dbug.c:1111: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.
    AUTO char buffer[PRINTBUF];
data/netgen-lvs-1.5.133/dbug/dbug.c:1282:8:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
		fp = fopen (name, "a");
data/netgen-lvs-1.5.133/dbug/dbug.c:1345:11:  [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 (name, "w");
data/netgen-lvs-1.5.133/dbug/main.c:10: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).
    extern int factorial (), atoi ();
data/netgen-lvs-1.5.133/dbug/main.c:23: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).
	result = factorial (atoi (argv[ix]));
data/netgen-lvs-1.5.133/dbug/useful.h:74:11:  [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((Fp = fopen(Fn,Mod)) == Nil(FILE))\
data/netgen-lvs-1.5.133/dbug/useful.h:79:11:  [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((Fp = fopen(Fn,Mod)) == Nil(FILE)) \
data/netgen-lvs-1.5.133/netgen/inetcomp.c:36: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 cell1[200], cell2[200];
data/netgen-lvs-1.5.133/netgen/netcomp.c:54: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 cell1[200], cell2[200];
data/netgen-lvs-1.5.133/netgen/netcomp.c:70: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 cell1[200], cell2[200];
data/netgen-lvs-1.5.133/netgen/ntk2adl.c:48: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 cellname[200];
data/netgen-lvs-1.5.133/netgen/ntk2xnf.c:50: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 cellname[200];
data/netgen-lvs-1.5.133/regexp/fixtabs.c:3: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 buffer[100];
data/netgen-lvs-1.5.133/regexp/regexp.c:1109:16:  [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[50];
data/netgen-lvs-1.5.133/regexp/regexp.c:1153:17:  [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(buf+strlen(buf), "OPEN%d", OP(op)-OPEN);
data/netgen-lvs-1.5.133/regexp/regexp.c:1165:17:  [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(buf+strlen(buf), "CLOSE%d", OP(op)-CLOSE);
data/netgen-lvs-1.5.133/regexp/regexp.h:9: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.
        char *startp[NSUBEXP];
data/netgen-lvs-1.5.133/regexp/regexp.h:10: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.
        char *endp[NSUBEXP];
data/netgen-lvs-1.5.133/regexp/regexp.h:15: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.
        char program[1];        /* Unwarranted chumminess with compiler. */
data/netgen-lvs-1.5.133/regexp/timer.c:54: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.
        char dummy[512];
data/netgen-lvs-1.5.133/regexp/timer.c:61: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).
                ncomp = atoi(argv[1]);
data/netgen-lvs-1.5.133/regexp/timer.c:62: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).
                nexec = atoi(argv[2]);
data/netgen-lvs-1.5.133/regexp/timer.c:63: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).
                nsub = atoi(argv[3]);
data/netgen-lvs-1.5.133/regexp/timer.c:130: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.
        char dbuf[BUFSIZ];
data/netgen-lvs-1.5.133/regexp/try.c:44: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 buf[BUFSIZ];
data/netgen-lvs-1.5.133/regexp/try.c:118: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.
        char rbuf[BUFSIZ];
data/netgen-lvs-1.5.133/regexp/try.c:119: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.
        char *field[5];
data/netgen-lvs-1.5.133/regexp/try.c:193: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.
        char dbuf[BUFSIZ];
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:1888: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).
	 LoggingFile = fopen(LogFileName, "w");
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:1891: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).
	 LoggingFile = fopen(LogFileName, "a");
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:1899: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).
	 LoggingFile = fopen(LogFileName, "w");
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4048:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static char outstr[128] = "puts -nonewline std";
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4141: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(snew, s, slen);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4183:4:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
   char keyword[128];
data/netgen-lvs-1.5.133/base/actel.c:92: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(name) > 13) {
data/netgen-lvs-1.5.133/base/actel.c:112: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).
  for (index = 0; index < strlen(name); index ++) {
data/netgen-lvs-1.5.133/base/actel.c:394: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).
  if (filename == NULL || strlen(filename) == 0)  
data/netgen-lvs-1.5.133/base/ccode.c:89: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).
  if (filename == NULL || strlen(filename) == 0) 
data/netgen-lvs-1.5.133/base/embed.c:649: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).
      return(strlen(longstr));
data/netgen-lvs-1.5.133/base/ext.c:150: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).
    name[strlen(name) - 1] = '\0';
data/netgen-lvs-1.5.133/base/ext.c:246: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(inststr, "@");
data/netgen-lvs-1.5.133/base/ext.c:249: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(inststr, ",");
data/netgen-lvs-1.5.133/base/ext.c:315: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(inststr, "@");
data/netgen-lvs-1.5.133/base/ext.c:318: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(inststr, ",");
data/netgen-lvs-1.5.133/base/ext.c:504:39:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    else if (tolower(ob->model.class[strlen(ob->model.class) - 1]) == 'p')
data/netgen-lvs-1.5.133/base/ext.c:705:6:  [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(inststr, ",");
data/netgen-lvs-1.5.133/base/ext.c:745:6:  [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(inststr, ",");
data/netgen-lvs-1.5.133/base/ext.c:780:6:  [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(inststr, ",");
data/netgen-lvs-1.5.133/base/ext.c:813:6:  [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(inststr, ",");
data/netgen-lvs-1.5.133/base/ext.c:900:8:  [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(inststr, ",");
data/netgen-lvs-1.5.133/base/flatten.c:160: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).
      prefixlength = strlen(tmpstr);
data/netgen-lvs-1.5.133/base/flatten.c:418: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).
      prefixlength = strlen(tmpstr);
data/netgen-lvs-1.5.133/base/flatten.c:654: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).
      newpin->name = (char *)MALLOC(strlen(newpin->instance.name) +
data/netgen-lvs-1.5.133/base/flatten.c:655:3:  [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(ChildOb->name) + 2);
data/netgen-lvs-1.5.133/base/netcmp.c:170: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).
	     ob->name + strlen(ob->instance.name) + 1,
data/netgen-lvs-1.5.133/base/netcmp.c:175: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).
	     ob->name + strlen(ob->instance.name) + 1,
data/netgen-lvs-1.5.133/base/netcmp.c:624:50:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            elemlist->flist[k].name = ob->name + strlen(ob->instance.name) + 1;
data/netgen-lvs-1.5.133/base/netcmp.c:641: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).
            elemlist->flist[k].name = ob2->name + strlen(ob2->instance.name) + 1;
data/netgen-lvs-1.5.133/base/netcmp.c:748:45:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      Fprintf(stdout, "%s = %d", ob->name + strlen(ob->instance.name) + 1, count);
data/netgen-lvs-1.5.133/base/netcmp.c:761: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).
	  Fprintf(stdout, "%s", ob2->name + strlen(ob2->instance.name) + 1);
data/netgen-lvs-1.5.133/base/netcmp.c:867: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).
	     pinname = ob->name + strlen(ob->instance.name) + 1;
data/netgen-lvs-1.5.133/base/netcmp.c:871: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).
	     pinname = (char *)MALLOC(strlen(pinsave) + strlen(ob->name +
data/netgen-lvs-1.5.133/base/netcmp.c:871:50:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	     pinname = (char *)MALLOC(strlen(pinsave) + strlen(ob->name +
data/netgen-lvs-1.5.133/base/netcmp.c:872: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(ob->instance.name) + 1) + 2);
data/netgen-lvs-1.5.133/base/netcmp.c:873:53:  [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).
	     sprintf(pinname, "%s|%s", pinsave, ob->name + strlen(ob->instance.name) + 1);
data/netgen-lvs-1.5.133/base/netcmp.c:957: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).
	  pinname = ob->name + strlen(ob->instance.name) + 1;
data/netgen-lvs-1.5.133/base/netcmp.c:1263:8:  [1] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source is a constant character.
		     sprintf(permname, "(");
data/netgen-lvs-1.5.133/base/netcmp.c:1264:8:  [1] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source is a constant character.
		     sprintf(permcount, "(");
data/netgen-lvs-1.5.133/base/netcmp.c:1266:4:  [1] (buffer) strncat:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, snprintf,
  or automatically resizing strings.
			strncat(permname, elist1[n]->flist[f1].name, bytesleft);
data/netgen-lvs-1.5.133/base/netcmp.c:1267: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).
			bytesleft -= strlen(elist1[n]->flist[f1].name);
data/netgen-lvs-1.5.133/base/netcmp.c:1268:4:  [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(permname, ",");
data/netgen-lvs-1.5.133/base/netcmp.c:1271:4:  [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(permcount, ",");
data/netgen-lvs-1.5.133/base/netcmp.c:1274:8:  [1] (buffer) strncat:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, snprintf,
  or automatically resizing strings.
		     strncat(permname, elist1[n]->flist[f1].name, bytesleft);
data/netgen-lvs-1.5.133/base/netcmp.c:1275:8:  [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(permname, ")");
data/netgen-lvs-1.5.133/base/netcmp.c:1278:8:  [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(permcount, ")");
data/netgen-lvs-1.5.133/base/netcmp.c:1293:8:  [1] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source is a constant character.
		     sprintf(permname, "(");
data/netgen-lvs-1.5.133/base/netcmp.c:1294:8:  [1] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source is a constant character.
		     sprintf(permcount, "(");
data/netgen-lvs-1.5.133/base/netcmp.c:1296:4:  [1] (buffer) strncat:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, snprintf,
  or automatically resizing strings.
			strncat(permname, elist2[n]->flist[f2].name, bytesleft);
data/netgen-lvs-1.5.133/base/netcmp.c:1297: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).
			bytesleft -= strlen(elist2[n]->flist[f2].name);
data/netgen-lvs-1.5.133/base/netcmp.c:1298:4:  [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(permname, ",");
data/netgen-lvs-1.5.133/base/netcmp.c:1301:4:  [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(permcount, ",");
data/netgen-lvs-1.5.133/base/netcmp.c:1304:8:  [1] (buffer) strncat:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, snprintf,
  or automatically resizing strings.
		     strncat(permname, elist2[n]->flist[f2].name, bytesleft);
data/netgen-lvs-1.5.133/base/netcmp.c:1305:8:  [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(permname, ")");
data/netgen-lvs-1.5.133/base/netcmp.c:1308:8:  [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(permcount, ")");
data/netgen-lvs-1.5.133/base/netcmp.c:4023:48:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if (!strcmp(vl->key, "_tag")) n += strlen(vl->value.string);
data/netgen-lvs-1.5.133/base/netcmp.c:4035:10:  [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(netwk1, "D");
data/netgen-lvs-1.5.133/base/netcmp.c:4044:48:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            if (!strcmp(vl->key, "_tag")) n += strlen(vl->value.string);
data/netgen-lvs-1.5.133/base/netcmp.c:4056:10:  [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(netwk2, "D");
data/netgen-lvs-1.5.133/base/netcmp.c:6009: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(ob->instance.name) + 1)) 
data/netgen-lvs-1.5.133/base/netcmp.c:6016: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(ob->instance.name) + 1)) 
data/netgen-lvs-1.5.133/base/netcmp.c:6192:42:  [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).
   newIgnore->class = (char *)MALLOC(1 + strlen(name));
data/netgen-lvs-1.5.133/base/netcmp.c:6260:31:  [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).
	    altname = (char *)MALLOC(strlen(name1) + 2);
data/netgen-lvs-1.5.133/base/netcmp.c:6452: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).
	     obn->name = (char *)MALLOC(strlen(firstpin->instance.name)
data/netgen-lvs-1.5.133/base/netcmp.c:6453: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(tob->name) + 2);
data/netgen-lvs-1.5.133/base/netcmp.c:6870: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).
         obn->name = (char *)MALLOC(6 + strlen(ob2->name));
data/netgen-lvs-1.5.133/base/netcmp.c:6934:44:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            obn->name = (char *)MALLOC(6 + strlen(ob1->name));
data/netgen-lvs-1.5.133/base/netfile.c:145: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(buffer) + strlen(tmpstr) + 1 > AutoFillColumn) {
data/netgen-lvs-1.5.133/base/netfile.c:145: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).
    if (strlen(buffer) + strlen(tmpstr) + 1 > AutoFillColumn) {
data/netgen-lvs-1.5.133/base/netfile.c:152:7:  [1] (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 character.
      strcpy(buffer, "");
data/netgen-lvs-1.5.133/base/netfile.c:157: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(buffer)) {
data/netgen-lvs-1.5.133/base/netfile.c:159:7:  [1] (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 character.
      strcpy(buffer,"");
data/netgen-lvs-1.5.133/base/netfile.c:171: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(filename) > 0) {
data/netgen-lvs-1.5.133/base/netfile.c:182: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(filename) > 0) 
data/netgen-lvs-1.5.133/base/netfile.c:232: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).
		slen = strlen(lptr);
data/netgen-lvs-1.5.133/base/netfile.c:256: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).
		slen = strlen(lptr);
data/netgen-lvs-1.5.133/base/netfile.c:290:10:  [1] (buffer) getc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	testc = getc(infile);
data/netgen-lvs-1.5.133/base/netfile.c:301: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).
	while (strlen(line) == linesize - 1) {
data/netgen-lvs-1.5.133/base/netfile.c:329: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).
			dlen = strlen(s);
data/netgen-lvs-1.5.133/base/netfile.c:331: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).
			    vlen = strlen(kl->pdefault.string);
data/netgen-lvs-1.5.133/base/netfile.c:341: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(line);
data/netgen-lvs-1.5.133/base/netfile.c:371: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).
			t += strlen(t);
data/netgen-lvs-1.5.133/base/netfile.c:535:13:  [1] (buffer) getc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	contline = getc(infile);
data/netgen-lvs-1.5.133/base/netfile.c:590:14:  [1] (buffer) getc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
  contline = getc(infile);
data/netgen-lvs-1.5.133/base/netfile.c:596:17:  [1] (buffer) getc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
     contline = getc(infile);
data/netgen-lvs-1.5.133/base/netfile.c:633: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).
	sstring = (char *)MALLOC(strlen(pstring) + 1);
data/netgen-lvs-1.5.133/base/netfile.c:695:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
			strncpy(sstring, stoken, 2);
data/netgen-lvs-1.5.133/base/netfile.c:700:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
			strncpy(sstring, stoken, (int)(s - stoken));
data/netgen-lvs-1.5.133/base/netfile.c:711:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(sstring, stoken, 1);
data/netgen-lvs-1.5.133/base/netfile.c:716:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(sstring, stoken, (int)(s - stoken));
data/netgen-lvs-1.5.133/base/netfile.c:725:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(sstring, stoken, (int)(s - stoken));
data/netgen-lvs-1.5.133/base/netfile.c:944: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).
  if (filename == NULL || strlen(filename) == 0) 
data/netgen-lvs-1.5.133/base/netfile.c:979:5:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
    fscanf(infile, "%400s", string);
data/netgen-lvs-1.5.133/base/netfile.c:982:7:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
      fscanf(infile, "%400s", string);
data/netgen-lvs-1.5.133/base/netfile.c:987:2:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
	fscanf(infile,"%400s",string);
data/netgen-lvs-1.5.133/base/netfile.c:989:4:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
	  fscanf(infile,"%400s", string); /* get extra cell name */
data/netgen-lvs-1.5.133/base/netfile.c:999:4:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
	  fscanf(infile,"%400s",string);
data/netgen-lvs-1.5.133/base/netfile.c:1001:4:  [1] (buffer) fscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
	  fscanf(infile,"%400s",string);
data/netgen-lvs-1.5.133/base/netfile.c:1074: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(name) + 1;
data/netgen-lvs-1.5.133/base/netfile.c:1079: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).
    len = strlen(ob->name) + 1;
data/netgen-lvs-1.5.133/base/netfile.c:1085: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(ob->model.class) + 1;
data/netgen-lvs-1.5.133/base/netfile.c:1088: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(ob->instance.name) + 1;
data/netgen-lvs-1.5.133/base/netfile.c:1105: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).
  if (filename == NULL || strlen(filename) == 0) 
data/netgen-lvs-1.5.133/base/netfile.c:1152:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
    chars = read(File, bufptr, READ_BUFSIZ - bytes_in_buffer);
data/netgen-lvs-1.5.133/base/netfile.c:1175:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
    chars = read(File, bufptr, READ_BUFSIZ - bytes_in_buffer);
data/netgen-lvs-1.5.133/base/netfile.c:1195:26:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
#define READ(buf, bytes) read(File, (buf), (bytes))
data/netgen-lvs-1.5.133/base/netgen.c:2792: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).
    buflen = strlen(buffer);
data/netgen-lvs-1.5.133/base/netgen.c:2823: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).
    buffer2[strlen(buffer2)-3] = 'N';
data/netgen-lvs-1.5.133/base/netgen.c:2826: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).
    buffer2[strlen(buffer2)-3] = 'S';
data/netgen-lvs-1.5.133/base/netgen.c:2842: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).
    buffer2[strlen(buffer2)-3] = 'E';
data/netgen-lvs-1.5.133/base/netgen.c:2845: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).
    buffer2[strlen(buffer2)-3] = 'W';
data/netgen-lvs-1.5.133/base/netgen.c:2973:44:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
         kv->value.string = (char *)MALLOC(strlen(tmpstr) + 2);
data/netgen-lvs-1.5.133/base/netgen.c:3181: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).
	 pcnt = strlen(ob->model.class) + 2;
data/netgen-lvs-1.5.133/base/netgen.c:3204: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).
	    pptr += strlen(pptr);
data/netgen-lvs-1.5.133/base/netgen.c:3226: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).
		pptr = p2str + strlen(ob->model.class);
data/netgen-lvs-1.5.133/base/netgen.c:3230: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).
		    pname = ob2->name + strlen(ob2->instance.name) + 1;
data/netgen-lvs-1.5.133/base/netgen.c:3244: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).
		    pptr += strlen(pptr);
data/netgen-lvs-1.5.133/base/netgen.c:3531:9:  [1] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source is a constant character.
	       sprintf(kv->value.string, "+");
data/netgen-lvs-1.5.133/base/netgen.c:3554:8:  [1] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source is a constant character.
		     sprintf(kv2->value.string, "+");
data/netgen-lvs-1.5.133/base/netgen.c:3562: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).
		     int l = strlen(kv->value.string);
data/netgen-lvs-1.5.133/base/ntk.c:128: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).
  if (filename == NULL || strlen(filename) == 0) 
data/netgen-lvs-1.5.133/base/ntk.c:245: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(last)) join(last, nexttok);
data/netgen-lvs-1.5.133/base/objlist.c:170: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).
	if ((p = (char *)MALLOC(strlen(s)+1)) == NULL)
data/netgen-lvs-1.5.133/base/objlist.c:709: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).
	for (i=0,j=1; i < strlen(t); i++) 
data/netgen-lvs-1.5.133/base/pdutils.c:142: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).
	len = strlen(wanted);
data/netgen-lvs-1.5.133/base/pdutils.c:367:2:  [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(string)\
data/netgen-lvs-1.5.133/base/pdutils.c:622: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).
	return(strlen(str));
data/netgen-lvs-1.5.133/base/place.c:528: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).
  if (filename == NULL || strlen(filename) == 0) 
data/netgen-lvs-1.5.133/base/place.c:543: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).
    if (filename == NULL || strlen(filename) == 0)
data/netgen-lvs-1.5.133/base/place.c:999: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(name) > 1) {
data/netgen-lvs-1.5.133/base/print.c:125:23:  [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).
  bufferlongenough = (strlen(file_buffers[FileIndex].buffer) + 
data/netgen-lvs-1.5.133/base/print.c:126: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(tmpstr) < sizeof(file_buffers[0].buffer) - 3);
data/netgen-lvs-1.5.133/base/print.c:129: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(file_buffers[FileIndex].buffer) + 
data/netgen-lvs-1.5.133/base/print.c:130: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(tmpstr) > file_buffers[FileIndex].wrap);
data/netgen-lvs-1.5.133/base/print.c:137: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).
      i = strlen(file_buffers[FileIndex].buffer);
data/netgen-lvs-1.5.133/base/print.c:144:7:  [1] (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 character.
      strcpy(file_buffers[FileIndex].buffer,"");
data/netgen-lvs-1.5.133/base/print.c:151: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(file_buffers[FileIndex].buffer, "\n");
data/netgen-lvs-1.5.133/base/print.c:162:7:  [1] (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 character.
      strcpy(file_buffers[FileIndex].buffer,"");
data/netgen-lvs-1.5.133/base/print.c:166:7:  [1] (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 character.
      strcpy(file_buffers[FileIndex].buffer,"");
data/netgen-lvs-1.5.133/base/print.c:184:2:  [1] (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 character.
	strcpy(file_buffers[freeslot].buffer,"");
data/netgen-lvs-1.5.133/base/print.c:226: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).
  return(strlen(file_buffers[i].buffer));
data/netgen-lvs-1.5.133/base/print.c:276: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).
  spaces = col - strlen(file_buffers[i].buffer) - 1;
data/netgen-lvs-1.5.133/base/print.c:277:32:  [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.
  for (; spaces > 0; spaces--) strcat(file_buffers[i].buffer, " ");
data/netgen-lvs-1.5.133/base/print.c:291:5:  [1] (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 character.
    strcpy(file_buffers[i].buffer, "");
data/netgen-lvs-1.5.133/base/print.c:304: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(file_buffers[i].buffer)) 
data/netgen-lvs-1.5.133/base/print.c:306:7:  [1] (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 character.
      strcpy(file_buffers[i].buffer,"");
data/netgen-lvs-1.5.133/base/print.c:317: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(file_buffers[i].buffer)) 
data/netgen-lvs-1.5.133/base/print.c:319:7:  [1] (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 character.
      strcpy(file_buffers[i].buffer, "");
data/netgen-lvs-1.5.133/base/print.c:328: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(file_buffers[i].buffer)) 
data/netgen-lvs-1.5.133/base/print.c:330:5:  [1] (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 character.
    strcpy(file_buffers[i].buffer,"");
data/netgen-lvs-1.5.133/base/proto.h:54:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
extern int read(int filedes, void *buf, unsigned nbyte);
data/netgen-lvs-1.5.133/base/query.c:59: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(str) + strlen(InputLine) + 3 < sizeof(InputLine)) {
data/netgen-lvs-1.5.133/base/query.c:59: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 (strlen(str) + strlen(InputLine) + 3 < sizeof(InputLine)) {
data/netgen-lvs-1.5.133/base/query.c:60: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(InputLine," ");
data/netgen-lvs-1.5.133/base/query.c:228: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(cell))  CurrentCell = LookupCell(cell);
data/netgen-lvs-1.5.133/base/query.c:369: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).
  ckto = strlen(elementname);
data/netgen-lvs-1.5.133/base/query.c:581: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).
    int len = strlen(NodeAlias(tp, ob));
data/netgen-lvs-1.5.133/base/query.c:677: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 ((len = strlen(ob->name)) > maxnamelen) maxnamelen = len;
data/netgen-lvs-1.5.133/base/query.c:1110: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(repstr) > 1) {
data/netgen-lvs-1.5.133/base/query.c:1151: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(repstr)) fprintf(stderr,"Unknown command: %c\n",reply);
data/netgen-lvs-1.5.133/base/spice.c:364: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).
  if (filename == NULL || strlen(filename) == 0) 
data/netgen-lvs-1.5.133/base/spice.c:409: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 (!matchnocase(ob2->name, obp->name + strlen(obp->instance.name) + 1)) {
data/netgen-lvs-1.5.133/base/spice.c:413: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).
	       obp->name = (char *)MALLOC(strlen(obp->instance.name)
data/netgen-lvs-1.5.133/base/spice.c:414: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(ob2->name) + 2);
data/netgen-lvs-1.5.133/base/spice.c:584: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).
	    ds = model + strlen(model);
data/netgen-lvs-1.5.133/base/spice.c:800: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).
	 iname = (char *)MALLOC(strlen(fname) + strlen(iptr) + 2);
data/netgen-lvs-1.5.133/base/spice.c:800:42:  [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).
	 iname = (char *)MALLOC(strlen(fname) + strlen(iptr) + 2);
data/netgen-lvs-1.5.133/base/spice.c:808:26:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	 iname = (char *)MALLOC(strlen(userpath) + strlen(iptr));
data/netgen-lvs-1.5.133/base/spice.c:808:45:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	 iname = (char *)MALLOC(strlen(userpath) + strlen(iptr));
data/netgen-lvs-1.5.133/base/spice.c:822: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).
	       iname = (char *)MALLOC(strlen(userpath) + strlen(pathstart) + 1);
data/netgen-lvs-1.5.133/base/spice.c:822: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).
	       iname = (char *)MALLOC(strlen(userpath) + strlen(pathstart) + 1);
data/netgen-lvs-1.5.133/base/spice.c:894:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:896:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(collector, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:898:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(base, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:900:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(emitter, nexttok, 99);  SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:955:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:957:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(drain, nexttok, 99);  SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:959:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(gate, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:961:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(source, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:969:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(bulk, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1033:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:1035:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(ctop, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1037:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(cbot, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1080:5:  [1] (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 character.
	   strcpy(model, "c");		/* Use default capacitor model */
data/netgen-lvs-1.5.133/base/spice.c:1127:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:1129:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(rtop, nexttok, 99);  SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1131:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(rbot, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1193:5:  [1] (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 character.
	   strcpy(model, "r");		/* Use default resistor model */
data/netgen-lvs-1.5.133/base/spice.c:1214:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:1216:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(anode, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1218:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(cathode, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1276:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:1278:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(node1, nexttok, 99);  SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1280:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(node2, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1282:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(node3, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1284:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(node4, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1330:5:  [1] (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 character.
	   strcpy(model, "t");		/* Use default xline model */
data/netgen-lvs-1.5.133/base/spice.c:1354:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:1356:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(end_a, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1358:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(end_b, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1413:3:  [1] (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 character.
	 strcpy(model, "l");		/* Use default inductor model */
data/netgen-lvs-1.5.133/base/spice.c:1437:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:1439:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(pos, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1441:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(neg, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1492:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:1494:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(pos, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1496:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(neg, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1548:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(inst, nexttok + 1, 99); SpiceTokNoNewline(); 
data/netgen-lvs-1.5.133/base/spice.c:1550:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(pos, nexttok, 99);   SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1552:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(neg, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1554:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(ctrlp, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1556:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(ctrln, nexttok, 99); SpiceTokNoNewline();
data/netgen-lvs-1.5.133/base/spice.c:1619:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(instancename, nexttok + 1, 99);
data/netgen-lvs-1.5.133/base/spice.c:1726:45:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      if (strncmp(instancename, scan->name, strlen(scan->name))) {
data/netgen-lvs-1.5.133/base/spice.c:2088: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).
  if (filename == NULL || strlen(filename) == 0) 
data/netgen-lvs-1.5.133/base/verilog.c:498: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).
  if (filename == NULL || strlen(filename) == 0) 
data/netgen-lvs-1.5.133/base/verilog.c:660:30:  [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).
			paramval = (char *)MALLOC(strlen(paramlast) + strlen(nexttok)
data/netgen-lvs-1.5.133/base/verilog.c:660:50:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
			paramval = (char *)MALLOC(strlen(paramlast) + strlen(nexttok)
data/netgen-lvs-1.5.133/base/verilog.c:745: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).
	    ds = model + strlen(model);
data/netgen-lvs-1.5.133/base/verilog.c:988: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).
	 iname = (char *)MALLOC(strlen(fname) + strlen(iptr) + 2);
data/netgen-lvs-1.5.133/base/verilog.c:988:42:  [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).
	 iname = (char *)MALLOC(strlen(fname) + strlen(iptr) + 2);
data/netgen-lvs-1.5.133/base/verilog.c:996: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).
	 iname = (char *)MALLOC(strlen(userpath) + strlen(iptr));
data/netgen-lvs-1.5.133/base/verilog.c:996:45:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	 iname = (char *)MALLOC(strlen(userpath) + strlen(iptr));
data/netgen-lvs-1.5.133/base/verilog.c:1010: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).
	       iname = (char *)MALLOC(strlen(userpath) + strlen(pathstart) + 1);
data/netgen-lvs-1.5.133/base/verilog.c:1010: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).
	       iname = (char *)MALLOC(strlen(userpath) + strlen(pathstart) + 1);
data/netgen-lvs-1.5.133/base/verilog.c:1317:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(modulename, nexttok, 99);
data/netgen-lvs-1.5.133/base/verilog.c:1379:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
      strncpy(instancename, nexttok, 99);
data/netgen-lvs-1.5.133/base/verilog.c:1446: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).
			 new_in_line_net = (char *)MALLOC(strlen(in_line_net) +
data/netgen-lvs-1.5.133/base/verilog.c:1447: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(nexttok) + 1);
data/netgen-lvs-1.5.133/base/verilog.c:1471: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).
			 expnet = (char *)MALLOC(strlen(new_port->net)
data/netgen-lvs-1.5.133/base/verilog.c:1472: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).
				    + strlen(nexttok) + 2);
data/netgen-lvs-1.5.133/base/verilog.c:1700: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).
		     if (cptr == NULL) cptr = netname + strlen(netname) - 1;
data/netgen-lvs-1.5.133/base/verilog.c:1751: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).
			 if (cptr == NULL) cptr = netname + strlen(netname) - 1;
data/netgen-lvs-1.5.133/base/wombat.c:38: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).
  if (filename == NULL || strlen(filename) == 0) 
data/netgen-lvs-1.5.133/base/xilinx.c:148: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).
	if(filename == NULL || strlen(filename) == 0)
data/netgen-lvs-1.5.133/base/xnetgen.c:760: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).
    if (file != NULL && strlen(get_file()) != 0) {
data/netgen-lvs-1.5.133/base/xnetgen.c:1001: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).
  data->chars[i] = XtMalloc(strlen(buf) + 1);
data/netgen-lvs-1.5.133/base/xnetgen.c:1003: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).
  data->ll[i] = strlen(data->chars[i]);
data/netgen-lvs-1.5.133/base/xnetgen.c:1025: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).
  tmpbuf = XtMalloc(strlen(buf) + 1);
data/netgen-lvs-1.5.133/base/xnetgen.c:1081: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).
    buf[strlen(buf) - 1] = '\0';  /* strip NL at end */
data/netgen-lvs-1.5.133/base/xnetgen.c:1792: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(buf)) return(buf);
data/netgen-lvs-1.5.133/base/xnetgen.c:1797: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(buf) == 0) {
data/netgen-lvs-1.5.133/base/xnetgen.c:1844: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 (data_endptr + strlen(buf) > data_buf + DATABUFSIZ) {
data/netgen-lvs-1.5.133/base/xnetgen.c:1847: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).
    cp = data_buf + strlen(buf);
data/netgen-lvs-1.5.133/base/xnetgen.c:1855: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).
  data_endptr += strlen(buf);
data/netgen-lvs-1.5.133/base/xnetgen.c:2232: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(buf)) return(buf);
data/netgen-lvs-1.5.133/base/xnetgen.c:2281: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 (data_endptr + strlen(buf) > data_buf + DATABUFSIZ) {
data/netgen-lvs-1.5.133/base/xnetgen.c:2284: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).
    cp = data_buf + strlen(buf);
data/netgen-lvs-1.5.133/base/xnetgen.c:2292: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).
  data_endptr += strlen(buf);
data/netgen-lvs-1.5.133/dbug/analyze.c:183: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).
    if (s == Nil (char) || (len = strlen (s)) == 0) {
data/netgen-lvs-1.5.133/dbug/analyze.c:286:3:  [1] (buffer) sscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
		sscanf (buf+2, "%ld %64s", &fn_time, fn_name);
data/netgen-lvs-1.5.133/dbug/analyze.c:292:3:  [1] (buffer) sscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
		sscanf (buf+2, "%ld %64s", &fn_time, fn_name);
data/netgen-lvs-1.5.133/dbug/analyze.c:330:3:  [1] (buffer) sscanf:
  It's unclear if the %s limit in the format string is small enough
  (CWE-120). Check that the limit is sufficiently small, or use a different
  input function.
		sscanf (buf+2, "%lx %lx %64s", &fn_sbot, &fn_ssz, fn_name);
data/netgen-lvs-1.5.133/dbug/dbug.c:201: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).
IMPORT size_t strlen ();	/* Find length of string */
data/netgen-lvs-1.5.133/dbug/dbug.c:1185: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).
    new = (char *) DbugMalloc (strlen (string) + 1);
data/netgen-lvs-1.5.133/regexp/fixtabs.c:9:17:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		for (i=0; i < strlen(buffer); i++) {
data/netgen-lvs-1.5.133/regexp/regexp.c:255:60:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                                if (OP(scan) == EXACTLY && strlen(OPERAND(scan)) >= len) {
data/netgen-lvs-1.5.133/regexp/regexp.c:257: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).
                                        len = strlen(OPERAND(scan));
data/netgen-lvs-1.5.133/regexp/regexp.c:841:39:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                                len = strlen(opnd);
data/netgen-lvs-1.5.133/regexp/regexp.c:1000: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).
                count = strlen(scan);
data/netgen-lvs-1.5.133/regexp/regexp.c:1111:16:  [1] (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 character.
        (void) strcpy(buf, ":");
data/netgen-lvs-1.5.133/regexp/regexp.c:1153: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).
                sprintf(buf+strlen(buf), "OPEN%d", OP(op)-OPEN);
data/netgen-lvs-1.5.133/regexp/regexp.c:1165: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).
                sprintf(buf+strlen(buf), "CLOSE%d", OP(op)-CLOSE);
data/netgen-lvs-1.5.133/regexp/regsub.c:45:22:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        extern char *strncpy();
data/netgen-lvs-1.5.133/regexp/regsub.c:72:32:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
                        (void) strncpy(dst, prog->startp[no], len);
data/netgen-lvs-1.5.133/regexp/try.c:128: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).
                rbuf[strlen(rbuf)-1] = '\0';    /* Dispense with \n. */
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:1113: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).
	 istr = (char *)Tcl_Alloc(strlen(estr) + 2);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:1133: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).
	 ckto = strlen(estr);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:1916:42:  [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).
	    LogFileName = (char *)Tcl_Alloc(1 + strlen(tmpstr));
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4063:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(bigstr, outptr, 24);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4084:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(finalstr, outptr, 24);
data/netgen-lvs-1.5.133/tcltk/tclnetgen.c:4138: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).
   slen = 1 + strlen(s);

ANALYSIS SUMMARY:

Hits = 857
Lines analyzed = 44965 in approximately 1.15 seconds (39258 lines/second)
Physical Source Lines of Code (SLOC) = 32725
Hits@level = [0] 227 [1] 267 [2] 287 [3]  13 [4] 288 [5]   2
Hits@level+ = [0+] 1084 [1+] 857 [2+] 590 [3+] 303 [4+] 290 [5+]   2
Hits/KSLOC@level+ = [0+] 33.1245 [1+] 26.1879 [2+] 18.029 [3+] 9.25898 [4+] 8.86173 [5+] 0.0611154
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.