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/gobi-loader-0.6/gobi_loader.c

FINAL RESULTS:

data/gobi-loader-0.6/gobi_loader.c:154:13:  [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).
	serialfd = open(argv[argc-2], O_RDWR);
data/gobi-loader-0.6/gobi_loader.c:169: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).
	fwfd = open("amss.mbn", O_RDONLY);
data/gobi-loader-0.6/gobi_loader.c:212: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).
	fwfd = open("apps.mbn", O_RDONLY);
data/gobi-loader-0.6/gobi_loader.c:247:10:  [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).
		fwfd = open("UQCN.mbn", O_RDONLY);
data/gobi-loader-0.6/gobi_loader.c:250:11:  [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).
			fwfd = open("uqcn.mbn", O_RDONLY);
data/gobi-loader-0.6/gobi_loader.c:202:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		len = read (fwfd, fwdata, 1024*1024);
data/gobi-loader-0.6/gobi_loader.c:236:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		len = read (fwfd, fwdata, 1024*1024);
data/gobi-loader-0.6/gobi_loader.c:274:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			len = read (fwfd, fwdata, 1024*1024);

ANALYSIS SUMMARY:

Hits = 8
Lines analyzed = 293 in approximately 0.02 seconds (14522 lines/second)
Physical Source Lines of Code (SLOC) = 211
Hits@level = [0]   2 [1]   3 [2]   5 [3]   0 [4]   0 [5]   0
Hits@level+ = [0+]  10 [1+]   8 [2+]   5 [3+]   0 [4+]   0 [5+]   0
Hits/KSLOC@level+ = [0+] 47.3934 [1+] 37.9147 [2+] 23.6967 [3+]   0 [4+]   0 [5+]   0
Minimum risk level = 1
Not every hit is necessarily a security vulnerability.
There may be other security vulnerabilities; review your code!
See 'Secure Programming HOWTO'
(https://dwheeler.com/secure-programs) for more information.