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/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/test_write.c Examining data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/test_update.c Examining data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/sqlite_test.c Examining data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/sqlite_test.h Examining data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/test_read_master.c Examining data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/test_read.c Examining data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/test_delete.c FINAL RESULTS: data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/test_delete.c:40:14: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). int nData = strlen(pData); data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/test_update.c:40:14: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). int nData = strlen(pData); data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/test_update.c:126:10: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). nData = strlen(pData); data/sqljet-1.1.10/sqljet/src/test/data/native/sqlite_test/src/test_write.c:40:14: [1] (buffer) strlen: Does not handle strings that are not \0-terminated; if given one it may perform an over-read (it could cause a crash if unprotected) (CWE-126). int nData = strlen(pData); ANALYSIS SUMMARY: Hits = 4 Lines analyzed = 1026 in approximately 0.07 seconds (13902 lines/second) Physical Source Lines of Code (SLOC) = 695 Hits@level = [0] 59 [1] 4 [2] 0 [3] 0 [4] 0 [5] 0 Hits@level+ = [0+] 63 [1+] 4 [2+] 0 [3+] 0 [4+] 0 [5+] 0 Hits/KSLOC@level+ = [0+] 90.6475 [1+] 5.7554 [2+] 0 [3+] 0 [4+] 0 [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.