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/caja-seahorse-1.18.5/caja-ext/seahorse-caja-module.c
Examining data/caja-seahorse-1.18.5/caja-ext/seahorse-caja.c
Examining data/caja-seahorse-1.18.5/caja-ext/seahorse-caja.h
Examining data/caja-seahorse-1.18.5/tool/mate-seahorse-tool-files.c
Examining data/caja-seahorse-1.18.5/tool/mate-seahorse-tool-progress.c
Examining data/caja-seahorse-1.18.5/tool/mate-seahorse-tool.c
Examining data/caja-seahorse-1.18.5/tool/mate-seahorse-tool.h
Examining data/caja-seahorse-1.18.5/tool/seahorse-libdialogs.h
Examining data/caja-seahorse-1.18.5/tool/seahorse-marshal.c
Examining data/caja-seahorse-1.18.5/tool/seahorse-marshal.h
Examining data/caja-seahorse-1.18.5/tool/seahorse-notification.c
Examining data/caja-seahorse-1.18.5/tool/seahorse-operation.c
Examining data/caja-seahorse-1.18.5/tool/seahorse-operation.h
Examining data/caja-seahorse-1.18.5/tool/seahorse-passphrase.c
Examining data/caja-seahorse-1.18.5/tool/seahorse-passphrase.h
Examining data/caja-seahorse-1.18.5/tool/seahorse-pgp-operation.c
Examining data/caja-seahorse-1.18.5/tool/seahorse-pgp-operation.h
Examining data/caja-seahorse-1.18.5/tool/seahorse-progress.c
Examining data/caja-seahorse-1.18.5/tool/seahorse-progress.h
Examining data/caja-seahorse-1.18.5/tool/seahorse-util.c
Examining data/caja-seahorse-1.18.5/tool/seahorse-util.h
Examining data/caja-seahorse-1.18.5/tool/seahorse-vfs-data.c
Examining data/caja-seahorse-1.18.5/tool/seahorse-vfs-data.h
Examining data/caja-seahorse-1.18.5/tool/seahorse-widget.c
Examining data/caja-seahorse-1.18.5/tool/seahorse-widget.h

FINAL RESULTS:

data/caja-seahorse-1.18.5/tool/mate-seahorse-tool-files.c:440:62:  [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).
            gtk_editable_select_region (GTK_EDITABLE (w), 0, strlen (pkg));
data/caja-seahorse-1.18.5/tool/seahorse-notification.c:184:53:  [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).
    ret = g_markup_parse_context_parse (ctx, outer, strlen (outer), &err);
data/caja-seahorse-1.18.5/tool/seahorse-notification.c:507:60:  [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).
    if((ret = g_markup_parse_context_parse (ctx, osummary, strlen (osummary), &err)))
data/caja-seahorse-1.18.5/tool/seahorse-notification.c:508:57:  [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).
        ret = g_markup_parse_context_parse (ctx, obody, strlen (obody), &err);
data/caja-seahorse-1.18.5/tool/seahorse-notification.c:655:11:  [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).
    len = strlen (keyid);
data/caja-seahorse-1.18.5/tool/seahorse-passphrase.c:104:25:  [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).
	if (passphrase_info && strlen(passphrase_info) < 16)
data/caja-seahorse-1.18.5/tool/seahorse-util.c:205:16:  [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 r, l = strlen (s);
data/caja-seahorse-1.18.5/tool/seahorse-util.c:269:15:  [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).
    t = uri + strlen (uri);
data/caja-seahorse-1.18.5/tool/seahorse-util.c:589:29:  [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).
    uri =  g_strndup (path, strlen (path) - 4);

ANALYSIS SUMMARY:

Hits = 9
Lines analyzed = 6685 in approximately 0.19 seconds (35460 lines/second)
Physical Source Lines of Code (SLOC) = 4284
Hits@level = [0]   2 [1]   9 [2]   0 [3]   0 [4]   0 [5]   0
Hits@level+ = [0+]  11 [1+]   9 [2+]   0 [3+]   0 [4+]   0 [5+]   0
Hits/KSLOC@level+ = [0+] 2.56769 [1+] 2.10084 [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.