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/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/crc.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/kiss.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/process.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/routing.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.h
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/syslog.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/pathnames.h
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rspfdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/tcpdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ripdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/utils.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/udpdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.h
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/nrdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/kissdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/icmpdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ipdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ax25dump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/arpdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/flexnetdump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/crc.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.h
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/crc.h
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/dostime.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/menu.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/menu.h
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.h
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_ctl.c
Examining data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c

FINAL RESULTS:

data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.c:173:2:  [5] (race) chmod:
  This accepts filename arguments; if an attacker can move those files, a
  race condition results. (CWE-362). Use fchmod( ) instead.
	chmod(DATA_AX25ROUTED_CTL_SOCK, 0600);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:151: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(dev, ifr.ifr_name);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:195: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(devname, ifname);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:243: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(ifr.ifr_name, ifname);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:301:3:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
		sscanf(buf, "%s %s ", bpq_name, dev_name);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:101: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(cbuf, buf);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/process.c:238: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((char *)p, bc_text);	/* add the text field */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:91: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).
	host_name = strcpy(buf, name);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:102: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(addr.su.sun_path, serv_name);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:159: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(sock_filename[sock_num], strchr(sockname, ':') + 1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:384: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(ifr.ifr_name, monfrom.sa_data);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:84: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(addr.sun_path, DATA_AX25ROUTED_CTL_SOCK);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:322:12:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
				len += sprintf(buf + len, " %s", argv[k]);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:334:12:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
				len += sprintf(buf + len, " %s", argv[k]);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:348:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			sprintf(buf, "del ax25 %s %s\n", argv[optind],
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:358:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			sprintf(buf, "del ip %s\n", argv[optind]);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.c:163: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(cntrl_addr.sun_path, DATA_AX25ROUTED_CTL_SOCK);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_ctl.c:56: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(bp->iface, iface);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_ctl.c:110: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(bp->iface, iface);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_ctl.c:145: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(bp->iface, iface);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_ctl.c:197: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(bp->iface, iface);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:66:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(buf + len, " %-4s %8.8lx %-9s ", dev,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:104:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(buf + len, "%-9s %-4s %8.8lx",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:109:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			    sprintf(buf + len, " %s",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:166: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(ifr.ifr_name, ifrp->ifr_name);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:188:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
				strcpy(config->dev, ifr.ifr_name);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:193: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(ifr.ifr_name, config->dev);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:239:7:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
		k = sscanf(buf, "%s %s %s %s", dummy, device, call, dcall);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:326: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(config->port, cmd);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:469: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(ip_encaps_dev, arg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:484: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(iproute2_table, arg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:155: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(arp.arp_dev, config->dev);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:185:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(buffer, "/sbin/ip route %s %s dev %s table %s proto ax25rtd", (what ? "add" : "del"), ipa, dev, iproute2_table);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:187:8:  [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.
	ret = system(buffer);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:213:3:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
		sscanf(buf, "%s %lx %lx", origdev, &ipr, &gwr);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:976: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(gp->file_name, address[0]);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1001: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(gp->file_name, s);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1948: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(prtn, orgn);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1955: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(strn, STD_DWN_DIR);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1956: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(strn, prtn);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1987:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		sprintf(s, "Unable to open %s", strn);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1991:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		sprintf(s, "*** 7plus download into file: %s ***\n", strn);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2389:6:  [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(c);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2488:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
						sprintf(s,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2498:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
						sprintf(s,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2557:8:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
							sprintf(s,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2605:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
						sprintf(s,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:317: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(ifr.ifr_name, sa.sa_data);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:456: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(hexd, buf);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:466: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(ascd, buf);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:70: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(entity_call, origin_call);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:87: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(entity_call, origin_call);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:365: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(digid,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:374: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(digis,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:405: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(digis,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:409: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(digid,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:429: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(addstorig, dump_x25_addr(data));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:431: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(addstdest, dump_x25_addr(data));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/utils.c:45: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(str, 1024, fmt, args);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:163:7:  [3] (buffer) getopt_long:
  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.
		c = getopt_long(argc, argv, "c:d:fhl:v", options, NULL);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:313:8:  [3] (buffer) getopt_long:
  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.
	cmd = getopt_long(argc, argv, sopts, lopts, &opt_ind);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2381:11:  [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker. They can have any content and length, and the same variable can
  be set more than once (CWE-807, CWE-20). Check environment variables
  carefully before using them.
						c = getenv("SHELL");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2852:14:  [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 ((p = getopt(argc, argv, "b:dhm:p:rs:RStT:vw:Wi8")) != -1) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:206:14:  [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 ((s = getopt(argc, argv, "8achip:rtv")) != -1) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:33: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 ttydevice[PATH_MAX];	/* the tty device for serial comms */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:35: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 mycallsign[7];	/* My callsign, shifted ASCII with SSID */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:36: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 mycallsign2[7];	/* My seconds port callsign, shifted ASCII with SSID */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:37: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 myalias[7];	/* An alias to use */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:38: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 myalias2[7];	/* An alias for second port */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:39: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 bc_text[128];		/* The text for beacon messages */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:54: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 opt_configfile[PATH_MAX];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.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 opt_ttydevice[PATH_MAX];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:186: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).
			opt_loglevel = atoi(optarg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.h:48: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.
extern char ttydevice[PATH_MAX];	/* the tty device for serial comms */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.h:50: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 mycallsign[7];	/* My callsign, shifted ASCII with SSID */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.h:51: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 mycallsign2[7];	/* My seconds port callsign, shifted ASCII with SSID */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.h:52: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 myalias[7];	/* An alias to use */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.h:53: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 myalias2[7];	/* An alias for second port */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.h:54: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.
extern char bc_text[128];	/* The text for beacon messages */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:54:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char ethernet_header[18];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:55: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 data[MAX_FRAME];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:58:17:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static unsigned char hwaddr_remote[6];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:70:24:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (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 const unsigned char ethernet_header[18] = {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:84:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(ethertap_packet.data + 2, buf, l);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:85:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(ethertap_packet.ethernet_header, (const char *) ethernet_header, sizeof(ethernet_header));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:86:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(ethertap_packet.ethernet_header + 4, hwaddr_remote, 6);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:87:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(ethertap_packet.ethernet_header + 4 + 6 + 2, hwaddr_remote +2, 6 -2);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:129:7:  [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).
	fd = open("/dev/net/tun", O_RDWR);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:175: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 devname[PATH_MAX];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:182:2:  [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(devname, "/dev/");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:188:8:  [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).
		fd = open(devname, O_RDWR);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:236: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(hwaddr_remote, ifr.ifr_hwaddr.sa_data, 6);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:268: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 buf[1024];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:269: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 bpq_name[IFNAMSIZ];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:270: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 dev_name[IFNAMSIZ];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:282: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("/proc/net/bpqether", "r"))) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:321:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(ifr.ifr_name, bpq_name, IFNAMSIZ);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:325:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(ifr.ifr_hwaddr.sa_data, mycallsign, 7);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:81: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 buf[256], cbuf[256];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:90:7:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	cf = fopen(fname, "r");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:165: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.
	unsigned char tcall[7], tip[4];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:243: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).
		ttyspeed = atoi(q);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:257:9:  [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).
				i = atoi(q);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:280: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).
		bc_interval = atoi(q);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:299: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).
		loglevel = atoi(q);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:318:4:  [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(tip, he->h_addr_list[0], 4);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:323:4:  [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(tip, &j, 4);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:344:10:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
					i = atoi(q);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:376:7:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
		i = atoi(q);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:380:7:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
		j = atoi(q);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:406:11:  [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).
			ssid = atoi(&text[i + 1]);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:427: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 t[10];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/crc.c:123: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.
	unsigned char buf[258];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:314:87:  [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).
	ttyfd = ((ttyfd_bpq = (strchr(ttydevice, '/') ? 0 : 1)) ? open_ethertap(ttydevice) : open(ttydevice, O_RDWR, 0));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:506: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.
	unsigned char buf[MAX_FRAME];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:623:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(&to.sin_addr, targetip, 4);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:624:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(&to.sin_port, &targetip[4], 2);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/kiss.c:24:17:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static unsigned char iframe[MAX_FRAME];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/kiss.c:29:17:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static unsigned char oframe[MAX_FRAME];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/process.c:36:17:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static unsigned char bcbuf[256];	/* Must be larger than bc_text!!! */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/routing.c:28: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.
	unsigned char callsign[7];	/* the callsign and ssid */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/routing.c:31:12:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
		unsigned char ip_addr[4];	/* the IP address */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/routing.c:47: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.
	unsigned char callsign[7];	/* The broadcast address */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/routing.c:90:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(rn->ip_addr, ip, 4);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/routing.c:157: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.
	unsigned char mycall[7];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/routing.c:201: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.
	unsigned char bccall[7];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:68: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 sock_monmode[MAX_SOCKETS];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:69: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 sock_filename[MAX_SOCKETS][100];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:74: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 conn_monmode[MAX_CONNECTS];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:86: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 buf[1024];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:125:28:  [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).
		addr.si.sin_port = htons(atoi(serv_name));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:225: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 buf[500];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:230: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 confline[100];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:255:19:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	if (!(conffile = fopen(CONFFILE, "r"))) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:125: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 buf[512], *b, *s, *digi, *call, *dev, *ct;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:182: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, s, offs);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:192: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 buf[512], *b, *s, *ip, *call, *dev, *ct, *mode;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:242: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, s, offs);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:252: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 buf[256];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:265: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.
	unsigned char buf[256];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:310: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 buf[256];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:320:10:  [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.
			len = sprintf(buf, "add ax25");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:332:10:  [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.
			len = sprintf(buf, "add ip");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:375:10:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
		when = atoi(optarg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:379: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(buf, "expire %ld\n", when);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.c:73: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 ip_encaps_dev[32] = "";
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.c:74: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 iproute2_table[32] = "";
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.c:130: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 buf[256];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.h:59: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			iface[14];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.h:68: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			iface[14];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.h:80: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 port[128];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.h:81: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 dev[14];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_ctl.c:61: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(&bp->call, call, AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_ctl.c:111:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(&bp->call, call, AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_ctl.c:152: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(bp->digipeater, digi,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_ctl.c:201: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(bp->digipeater, digi, ndigi * AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:40: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 buf[256], *dev;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:48:10:  [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.
			len = sprintf(buf, "add ip ");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:59:10:  [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.
		len += sprintf(buf + len, "%d.%d.%d.%d",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:69: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.
			len += sprintf(buf + len, "X\n");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:72: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(buf + len, "%c\n",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:87: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 buf[256], *dev;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:92:10:  [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.
			len = sprintf(buf, "add ax25 ");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:146: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 buf[1024];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:225: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 buf[1024], device[14], call[10], dcall[10];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:226: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 dummy[1024];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:231:7:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	fp = fopen(PROC_AX25_FILE, "r");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:249:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
					memcpy(&config->
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:260: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(&config->
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:272: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 buf[1024], *p, *cmd, *arg;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:278:7:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	fp = fopen(CONF_AX25ROUTED_FILE, "r");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:327:4:  [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(&config->mycalls[0], axcall, AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:363: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(&config->ax25_default_path.
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:382:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
					memcpy(&config->
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:405:13:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
				int k = atoi(arg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:418:13:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
				int k = atoi(arg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:431:13:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
				int k = atoi(arg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:474: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).
				ax25_maxroutes = atoi(arg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:479:20:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
				ip_maxroutes = atoi(arg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:583: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(&digipeater[ndigi++], asc2ax(arg),
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:686: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 buf[512];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:688:7:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	fp = fopen(DATA_AX25ROUTED_AXRT_FILE, "r");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:696:7:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	fp = fopen(DATA_AX25ROUTED_IPRT_FILE, "r");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:123: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(&fdigi, &digipeater[m], AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:124: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(&digipeater[m], &digipeater[k], AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:125: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(&digipeater[k], &fdigi, AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:174: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[256];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:175: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 ipa[32];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:178: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(ipa, "%d.%d.%d.%d",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:195: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 origdev[16], buf[1024];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:203:7:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	fp = fopen(PROC_IP_ROUTE_FILE, "r");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:386: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.
	unsigned char buf[1500];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:438:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(&destcall, data, AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:451:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(&srccall, data, AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:472:4:  [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(&digipeater[ndigi++], data, AXLEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/listener.c:554: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(digipeater,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:106: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 file_name[GP_FILENAME_SIZE];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:119:2:  [2] (buffer) wchar_t:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	wchar_t string[MAX_BUFLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:140: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 inbuf[MAX_BUFLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:142: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 incharbuf[6];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:148:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(scrollback[lastscroll].str, s, len);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:258: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 obuf[MAX_BUFLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:535:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
		char obuf[MAX_BUFLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:565: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 buf[9];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:569: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(buf, "%X", ((s_date << 16) + s_time));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:575: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[100], *call, *alias;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:582:7:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	fp = fopen(PROC_NR_NODES_FILE, "r");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:861: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 infostr[80];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:917: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 s[GP_FILENAME_SIZE + 18];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:924: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).
		gp->file_crc = atoi(parms + crcst);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:959: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(&ft, localtime(&t), sizeof(struct tm));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:964:33:  [2] (integer) atol:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
	gp->dwn_cnt = (unsigned long ) atol(parms);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:980:5:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
		  strcat(gp->file_name, ".dwnfile");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1009: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(s, "size of file    : %lu",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1014: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(s, "last mod. date  : %02i.%02i.%04i", ft.tm_mday,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1017: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(s, "last mod. time  : %02i:%02i:%02i", ft.tm_hour,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1024: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).
	gp->dwn_file = open(gp->file_name, O_RDWR | O_CREAT, 0666);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1082: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 s[80];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1133:4:  [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(s, "AutoBin download finished ");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1136:6:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
					strcat(s, "CRC check ok");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1138:6:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
					strcat(s, "CRC check failed!");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1140: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(s + strlen(s), "CRC=%u",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1154: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(s, "%u", (unsigned int) gp->dwn_cnt);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1165: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 idString[12];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1171: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(idString, " %9.9s ", call[0]);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1364: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(&inbuf[inbuflen], incharbuf, incharbuflen);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1375:4:  [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(&inbuf[0], incharbuf, incharbuflen);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1410:18:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
		char *inbuf = (char *) buf, out[MAX_BUFLEN], *outbuf=out;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1445:2:  [2] (buffer) wchar_t:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	wchar_t wbuf[MAX_BUFLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1633: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 obuf[MAX_BUFLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1831: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 cmpstr[MAX_CMPSTRLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1916: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 orgn[13];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1917: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 prtn[13+3];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1918: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 strn[PATH_MAX];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1919: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 v[20];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1920: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 s[80];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1944: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(prtn + cnt - 2, "7pl");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1946: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(prtn + cnt - 2, "p%02x", part);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1950: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(prtn + cnt, ".7pl");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1952: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(prtn + cnt, ".p%02x", part);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1968: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(s, "7plus version        : %-.55s", v);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1970: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(s, "Name of decoded file : %-.55s", orgn);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1972: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(s, "Storagename          : %-.55s", strn);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1974: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(s, "Parts                : %i", nrparts);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1976: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(s, "Number of this Part  : %i", part);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1978: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(s, "Lines                : %i", lines);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1986: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).
	if ((*f = open(strn, O_RDWR | O_APPEND | O_CREAT, 0666)) == -1) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2054: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 buf[MAX_BUFLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2056: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 restbuf[MAX_BUFLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2058: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 parms[MAX_BUFLEN];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2071: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 uplbuf[128];	/* Upload buffer */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2085: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 s[80];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2323: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, restbuf, restbytes);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2469:19:  [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).
					uploadfile = open(t, O_RDONLY);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2540:10:  [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
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2602:9:  [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).
								open(t,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2737: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(s,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2749: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(s,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2771: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(s, "Write error during upload. Connection lost");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2782: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(s, "%ld", uplpos + bytes);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2877:13:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
			paclen = atoi(optarg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2925:13:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
			window = atoi(optarg);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/dostime.c:94: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(buffer, "%04X%04X", date, time);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:74:17:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static unsigned char outbuffer[512];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:85: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[2];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:95: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[2];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:105: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[2];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:115: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[2];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:125: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[2];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:135: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[257];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:144:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(buffer + 2, reason, length);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:153: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[256];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:160: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.
	len = sprintf(buffer + 4, "%d", length) + 5;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:171: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[2];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:181: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[257];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:190:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(buffer + 2, reason, length);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:197: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[257];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:198: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 size_buffer[12];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:204: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(size_buffer, "%ld", length);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:219:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(buffer + 2, filename, len_filename);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:220:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(buffer + len_filename + 2, size_buffer, len_size);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:227: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[2];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:237: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[2];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:250: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[2];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:272: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 Message[50];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:295:13:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (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 *hptr, *hfield[3];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:311:28:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
				file_time = yapp2unix((char *)hfield[2]);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:316: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).
				*filefd = open((char *)hfield[0],
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:316:21:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
				*filefd = open((char *)hfield[0],
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:366: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(Message, "RcvData  %5d bytes received",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:414: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.
	unsigned char buffer[1024];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:471:8:  [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(buffer,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:488:8:  [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(buffer,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:506: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 Message[80];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:523: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(Message, "SendData  %5d bytes transmitted",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:559:11:  [2] (integer) atol:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
			rpos = atol((char *)buffer + 4);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:570: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(Message, "SendData  %5d bytes transmitted",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:627: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.
	unsigned char buffer[1024];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:631: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 Message[80];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:698: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(Message,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:737:8:  [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(buffer,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:752:8:  [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(buffer,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:791: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).
		filefd = open(t, O_RDONLY);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:822: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).
		else {filefd = open(t, O_RDWR | O_APPEND | O_CREAT, 0666);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/arpdump.c:28: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[25];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ax25dump.c:70: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[15];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ax25dump.c:91: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(tmp + 7, "-%d", data[6] & 0xf);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ax25dump.c:352:4:  [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(buf, "[invalid]");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ax25dump.c:361: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(s, "-%d", ssid >> 1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:52: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[sizeof("00:00:00.000000")];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:195: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.
	unsigned char buffer[BUFSIZE];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:382: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 buf[100];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:385: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(buf, "%04X  ", i);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:406: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 buf[BUFSIZE];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:440: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 buf[4], hexd[49], ascd[17];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:453: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, "%2.2X ", c);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:455:5:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
				strcpy(buf, "   ");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:464: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(buf, "%c",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/nrdump.c:39: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 node[10];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/nrdump.c:40: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 alias[7];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/nrdump.c:60:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
					memcpy(alias, data+i+2, alen);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/nrdump.c:74: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[15];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/nrdump.c:84: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, data + 1, ALEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/nrdump.c:96:4:  [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, data + AXLEN, ALEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/nrdump.c:114: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, data + 1, ALEN);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:23: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 origin_call[7]; /* Who's talking  */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:25: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 entity_call[7]; /* What they're talking about  */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:65:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(origin_call, element, 6);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:82: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(entity_call, element, 6);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:161: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 comment[127];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:199: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 country[3];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:200: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 subdivision[4];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:217: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 displayname[31];	/* 0x16 - Display Name (UTF-8 text)    */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:228: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 waypoint[7]; /* 0x17 - Waypoint Name (up to 6 chars, uppercase)  */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:254: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 callsign[7];	/* 0x20 Path Trace - Call/SSID, Network  */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:265: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(callsign, element+c, 6);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:327: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 nnumber[9];	/* 0x35 Aircraft Registration - ASCII text  */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:422: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 maidenhead[7];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:470:2:  [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(origin_call, "SENDER"); /* Listen doesn't tell us the sender  */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ripdump.c:110: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 ipaddmask[25];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ripdump.c:142: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(ipaddmask, "%u.%u.%u.%u/%-2u", data[0],
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ripdump.c:171: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(ipaddmask, "%u.%u.%u.%u/%-4d",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/ripdump.c:175: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(ipaddmask, "%u.%u.%u.%u/??",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:212: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 buffer[25];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:243: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(buffer, "Unknown %02X", code);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:250: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 buffer[25];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:263: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(buffer, "Unknown %02X", code);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:270: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 buffer[25];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:281: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(buffer, "Unknown %02X", code);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:288: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 buffer[25];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:290: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(buffer, "%02X%02X,%02X%02X%02X", data[0], data[1], data[2],
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:298: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 buffer[25];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:324: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 digis[80], digid[80];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:325: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 indorig[10], inddest[10];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:326: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 addstorig[20], addstdest[20];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:328: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 buf[512];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/utils.c:26:17:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static unsigned char ibm_map[32] = {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/utils.c:40: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 str[1024];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/utils.c:121: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 str[16];
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:169:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
			strncpy(opt_configfile, optarg, sizeof(opt_configfile)-1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:173:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
			strncpy(opt_ttydevice, optarg, sizeof(opt_ttydevice)-1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/ax25ipd.c:233:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(ttydevice, opt_ttydevice, sizeof(ttydevice)-1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:142:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(ifr.ifr_name, dev, IFNAMSIZ);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:183:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(devname + 5, ifname, sizeof(devname) - 5 -1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:216:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:225:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:241:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:251:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:332:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(ifr.ifr_name, bpq_name, IFNAMSIZ);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/bpqether.c:338:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(ifr.ifr_name, bpq_name, IFNAMSIZ);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:85:17:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	if (f==NULL || strlen(f) == 0)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:135: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(ttydevice) == 0) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:223:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(ttydevice, q, sizeof(ttydevice)-1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:285: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).
		q = p + strlen(p) + 1;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:286: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(q) < 2)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:288: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(q) > sizeof(bc_text))
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:290:5:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		q[strlen(q) - 1] = '\0';
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:291:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(bc_text, q, sizeof(bc_text)-1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:394: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(text) == 0)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/config.c:403: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).
	for (i = 0; i < strlen(text); i++) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:117:4:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
			usleep(100000);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:130:4:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
			usleep(100000);	/* sleep a bit */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:167:5:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
				usleep(100000);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:172:5:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
				usleep(100000);	/* sleep a bit */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:195:5:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
				usleep(100000);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:200:5:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
				usleep(100000);	/* sleep a bit */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:208:5:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
				usleep(100000);	/* sleep a bit */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/io.c:555:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
				n = read(ttyfd, buf, MAX_FRAME);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25ipd/process.c:240: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).
		bclen = 16 + strlen(bc_text);	/* adjust the length nicely */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25mond/ax25mond.c:263:12:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		confline[strlen(confline) - 1] = 0;	/* Cut the LF  */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:86: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(DATA_AX25ROUTED_CTL_SOCK) + sizeof(addr.sun_family);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:98:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	return write(sock, s, strlen(s));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:141:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		len = read(sock, buf + offs, sizeof(buf) - offs - 1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:166: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).
				ct[strlen(ct) - 6] = '\0';
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:180: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).
			offs = strlen(s);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:206:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		len = read(sock, buf + offs, sizeof(buf) - offs - 1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:232: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).
				ct[strlen(ct) - 6] = '\0';
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:240: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).
			offs = strlen(s);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:257:2:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	read(sock, buf, sizeof(buf));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:290:8:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			n = read(0, buf, sizeof(buf));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:299:8:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			n = read(sock, buf, sizeof(buf));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:323:4:  [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(buf + len, "\n");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtctl.c:335:4:  [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(buf + len, "\n");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.c:166: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(DATA_AX25ROUTED_CTL_SOCK);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/ax25rtd.c:211:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
				size = read(cntrl_fd, buf, sizeof(buf));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/cache_dump.c:111:10:  [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.
		len += sprintf(buf + len, "\n");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/ax25rtd/config.c:677: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).
		write(fd, buf, strlen(buf));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:354: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).
	l = strlen(s);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:492:24:  [1] (buffer) wcslen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	width = wcswidth(str, wcslen(str));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:548:9:  [1] (buffer) wcslen:
  Does not handle 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 = wcslen(str);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:838: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).
	mvwaddstr(win, 1, 1 + (cols - strlen(s)) / 2, s);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:889: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 (oldlen > strlen(s)) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:890: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).
		l = oldlen - strlen(s);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:904: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).
	oldlen = strlen(s);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:965:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(gp->file_name, STD_DWN_DIR, GP_FILENAME_SIZE-1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:975: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(gp->file_name) + strlen(address[0]) < GP_FILENAME_SIZE -1)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:975: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).
		if (strlen(gp->file_name) + strlen(address[0]) < GP_FILENAME_SIZE -1)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:979: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(gp->file_name) + strlen(".dwnfile") < GP_FILENAME_SIZE -1)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:979: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).
		if (strlen(gp->file_name) + strlen(".dwnfile") < GP_FILENAME_SIZE -1)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:995:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(s, &parms[namest + cnt], len);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1000: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(gp->file_name) + len < GP_FILENAME_SIZE - 1)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1052:6:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
					usleep(100000);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1140: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).
				sprintf(s + strlen(s), "CRC=%u",
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1401:5:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
				usleep(100000);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1421: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(buf);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1542:12:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
				return strlen(buf);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1567:12:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
				return strlen(buf);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1843:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(buf, cmpstr, cmpstrbyte);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1885:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(cmpstr, &buf[cmdstpos], cmpstrbyte);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1897: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).
	t = cmdstpos + strlen(pkey_words[command]);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1899:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(parms, &buf[t], cnt - t);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1901:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(restbuf, buf + cnt, *restbytes);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1934:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(orgn, &parms[11], 12);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1942:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(prtn, orgn, cnt - 2);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1964:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(v, &parms[41], cnt + 1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1992: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).
		write(*logfile, s, strlen(s));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:1995: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).
	write(*f, key_words[2], strlen(key_words[2]));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2163:6:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
					usleep(100000);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2187:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			bytes = read(fd, buf, sizeof(buf));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2196:6:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
					usleep(100000);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2301: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).
						      strlen(key_words
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2330:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
				bytes = read(STDIN_FILENO, buf, paclen);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2339:7:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
						usleep(100);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2523:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
									read
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2564: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(s)) != strlen(s)) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2564: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).
										strlen(s)) != strlen(s)) {
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2632: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).
					memmove(buf, buf + 1, strlen(buf));
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2701:8:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
							usleep(100000);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2730:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
				    read(uploadfile, uplbuf, 128);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/call.c:2777:5:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
				usleep(100000);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/dostime.c:76: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(ytime) != 8)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/menu.c:125: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).
	for (cnt = strlen(st); cnt < menu_breite; cnt++)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/menu.c:142: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(menustr[lines].st_ptr) > str_max_length)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/menu.c:143: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).
			str_max_length = strlen(menustr[lines].st_ptr);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/menu.c:261: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(menustr[items].st_ptr) > str_max_length)
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/menu.c:262: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).
			str_max_length = strlen(menustr[items].st_ptr);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/menu.c:264: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).
		str_length = strlen(menustr[items].st_ptr) + 1;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:138: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).
	length = strlen(reason);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:184: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).
	length = strlen(reason);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:206: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).
	len_filename = strlen(filename) + 1;	/* Include the NUL */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:207: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_size = strlen(size_buffer) + 1;	/* Include the NUL */
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:302:12:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
				hlen = strlen((char *)hptr) + 1;
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:455:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			length = read(fd, buffer + buflen, 511);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:526:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			outlen = read(filefd, outbuffer, readlen);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:573:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			outlen = read(filefd, outbuffer, readlen);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:696:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
				     read(filefd, outbuffer,
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/call/yapp.c:721:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			length = read(fd, buffer + buflen, 511);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:392:5:  [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(buf, &c, 1);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/listen.c:394: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(buf, ".");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:163:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(comment, (char *)element, element_len);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:202:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(country, (char *)element, 2);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:205:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(subdivision, (char *)element+2, element_len-2);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:219:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
     strncpy(displayname, (char *)element, element_len);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:230:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(waypoint, (char *)element, element_len);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:329:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(nnumber, (char *)element, element_len);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/opentracdump.c:426:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
   strncpy(maidenhead, (char *)element, element_len);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:407: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(digis, " ");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:411: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(digid, " ");
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:438:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
				strncpy(indorig, (char *)data, lgadind);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:441:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
				strncpy(inddest, (char *)data, lgadind);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/rosedump.c:456: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).
		result += strlen(result);
data/ax25-apps-0.0.8-rc5+git20190411+0ff1383/listen/utils.c:124:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(str, serv->s_name, 16);

ANALYSIS SUMMARY:

Hits = 482
Lines analyzed = 13868 in approximately 0.39 seconds (35618 lines/second)
Physical Source Lines of Code (SLOC) = 10891
Hits@level = [0] 232 [1] 123 [2] 295 [3]   5 [4]  58 [5]   1
Hits@level+ = [0+] 714 [1+] 482 [2+] 359 [3+]  64 [4+]  59 [5+]   1
Hits/KSLOC@level+ = [0+] 65.5587 [1+] 44.2567 [2+] 32.963 [3+] 5.87641 [4+] 5.41732 [5+] 0.0918189
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.