19 new issues (0 max.) of at least severity.
Annotations
Check failure on line 254 in src/common/FFstrbuf.h
codacy-production / Codacy Static Code Analysis
src/common/FFstrbuf.h#L254
Does not check for buffer overflows when copying to destination (CWE-120). Make sure destination can always hold the source data.
Check failure on line 254 in src/common/FFstrbuf.h
codacy-production / Codacy Static Code Analysis
src/common/FFstrbuf.h#L254
The `memcpy` family of functions require the developer to validate that the destination buffer is the same size or larger than the source buffer.
Check warning on line 3 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L3
Include file: <stdio.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 4 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L4
Include file: <time.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 5 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L5
Include file: <stdatomic.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 6 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L6
Include file: <stdbool.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 7 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L7
Include file: <stdint.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 8 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L8
Include file: <stdlib.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 9 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L9
Include file: <string.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 10 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L10
Include file: <inttypes.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 13 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L13
Include file: <dlfcn.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 14 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L14
Include file: <pthread.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 15 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L15
Include file: <unistd.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 17 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L17
Include file: <windows.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 18 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L18
Include file: <dbghelp.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
Check warning on line 59 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L59
%d in format string (no. 1) requires 'int' but the argument type is 'unsigned int'.
Check failure on line 106 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L106
Format string vulnerabilities allow an attacker to read or in some cases, potentially write data to and from locations in the processes' memory.
Check warning on line 111 in src/common/impl/tracer.c
codacy-production / Codacy Static Code Analysis
src/common/impl/tracer.c#L111
%d in format string (no. 1) requires 'int' but the argument type is 'unsigned int'.
Check failure on line 196 in src/detection/wm/wm_linux.c
codacy-production / Codacy Static Code Analysis
src/detection/wm/wm_linux.c#L196
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).