feat(terminalfont): add kmscon font detection#2394
6 new issues (0 max.) of at least severity.
Annotations
Check failure on line 1289 in src/detection/cpu/cpu_x86.c
codacy-production / Codacy Static Code Analysis
src/detection/cpu/cpu_x86.c#L1289
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 1289 in src/detection/cpu/cpu_x86.c
codacy-production / Codacy Static Code Analysis
src/detection/cpu/cpu_x86.c#L1289
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 failure on line 1290 in src/detection/cpu/cpu_x86.c
codacy-production / Codacy Static Code Analysis
src/detection/cpu/cpu_x86.c#L1290
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 1290 in src/detection/cpu/cpu_x86.c
codacy-production / Codacy Static Code Analysis
src/detection/cpu/cpu_x86.c#L1290
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 failure on line 1291 in src/detection/cpu/cpu_x86.c
codacy-production / Codacy Static Code Analysis
src/detection/cpu/cpu_x86.c#L1291
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 1291 in src/detection/cpu/cpu_x86.c
codacy-production / Codacy Static Code Analysis
src/detection/cpu/cpu_x86.c#L1291
The `memcpy` family of functions require the developer to validate that the destination buffer is the same size or larger than the source buffer.