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/libapache2-mod-authn-sasl-1.2/mod_authn_sasl.c FINAL RESULTS: data/libapache2-mod-authn-sasl-1.2/mod_authn_sasl.c:47:14: [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 char *pwcheck_methods[NUM_PWCHECK_METHODS] = { data/libapache2-mod-authn-sasl-1.2/mod_authn_sasl.c:291:38: [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). sasl_checkpass(sasl_conn, user, strlen(user), pass, strlen(pass)) != SASL_OK) { data/libapache2-mod-authn-sasl-1.2/mod_authn_sasl.c:291:58: [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). sasl_checkpass(sasl_conn, user, strlen(user), pass, strlen(pass)) != SASL_OK) { ANALYSIS SUMMARY: Hits = 3 Lines analyzed = 345 in approximately 0.02 seconds (15708 lines/second) Physical Source Lines of Code (SLOC) = 215 Hits@level = [0] 0 [1] 2 [2] 1 [3] 0 [4] 0 [5] 0 Hits@level+ = [0+] 3 [1+] 3 [2+] 1 [3+] 0 [4+] 0 [5+] 0 Hits/KSLOC@level+ = [0+] 13.9535 [1+] 13.9535 [2+] 4.65116 [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.