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/mountpy-0.9/mountpy.c

FINAL RESULTS:

data/mountpy-0.9/mountpy.c:177:2:  [4] (shell) execv:
  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.
	execv(FULL_PATH, argv);
data/mountpy-0.9/mountpy.c:173:2:  [1] (access) umask:
  Ensure that umask is given most restrictive possible setting (e.g., 066 or
  077) (CWE-732).
	umask(UMASK);

ANALYSIS SUMMARY:

Hits = 2
Lines analyzed = 180 in approximately 0.02 seconds (11833 lines/second)
Physical Source Lines of Code (SLOC) = 83
Hits@level = [0]   7 [1]   1 [2]   0 [3]   0 [4]   1 [5]   0
Hits@level+ = [0+]   9 [1+]   2 [2+]   1 [3+]   1 [4+]   1 [5+]   0
Hits/KSLOC@level+ = [0+] 108.434 [1+] 24.0964 [2+] 12.0482 [3+] 12.0482 [4+] 12.0482 [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.