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/vdr-plugin-svdrposd-1.0.0/status.c Examining data/vdr-plugin-svdrposd-1.0.0/status.h Examining data/vdr-plugin-svdrposd-1.0.0/svdrposd.c FINAL RESULTS: data/vdr-plugin-svdrposd-1.0.0/svdrposd.c:173:12: [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. int n = vsnprintf(buffer + length, size - length, Fmt, ap); data/vdr-plugin-svdrposd-1.0.0/svdrposd.c:262:21: [4] (format) sprintf: Potential format string problem (CWE-134). Make format string constant. return cString::sprintf("Error while appending to buffer (size %d)", size); data/vdr-plugin-svdrposd-1.0.0/svdrposd.c:279:22: [4] (format) sprintf: Potential format string problem (CWE-134). Make format string constant. return cString::sprintf("Error while appending to buffer (size %d)", size); data/vdr-plugin-svdrposd-1.0.0/svdrposd.c:289:21: [4] (format) sprintf: Potential format string problem (CWE-134). Make format string constant. return cString::sprintf("R:%s\nG:%s\nY:%s\nB:%s", ANALYSIS SUMMARY: Hits = 4 Lines analyzed = 473 in approximately 0.02 seconds (23301 lines/second) Physical Source Lines of Code (SLOC) = 389 Hits@level = [0] 0 [1] 0 [2] 0 [3] 0 [4] 4 [5] 0 Hits@level+ = [0+] 4 [1+] 4 [2+] 4 [3+] 4 [4+] 4 [5+] 0 Hits/KSLOC@level+ = [0+] 10.2828 [1+] 10.2828 [2+] 10.2828 [3+] 10.2828 [4+] 10.2828 [5+] 0 Dot directories skipped = 1 (--followdotdir overrides) Minimum risk level = 1 Not every hit is necessarily a security vulnerability. There may be other security vulnerabilities; review your code! See 'Secure Programming HOWTO' (https://dwheeler.com/secure-programs) for more information.