Enkelmann
Enkelmann
### The problem The current implementation of the `scope` function for generating scoped threads contains a critical section: If an unwinding panic occurs after execution of the user-provided closure but...
### Discussed in https://github.com/fkie-cad/cwe_checker/discussions/312 Originally posted by **StepanGavrilov** April 5, 2022 I have error like `docker run --rm -v /path_here/hdat2cd_lite_74.iso:/hdat2cd_lite_74.iso fkiecad/cwe_checker hdat2cd_lite_74.iso` ``` WARNING: The requested image's platform (linux/amd64) does...
### Discussed in https://github.com/fkie-cad/cwe_checker/discussions/283 Originally posted by **JavierBaratech** February 2, 2022 Hello all, I have a problem when running cwe_checker with a bare-metal binary for an AVR chip. I have...
Right now the handling of calling conventions for PE files is wrong for most analyses: The *PointerInference* (and most other analyses) assume that internal function calls adhere to a standard...
The [Clang-Analyzer](https://clang-analyzer.llvm.org/) static source code analyzer tool found some possible memory leaks in the code: In *src/lib/logMsg/logMsg.cpp* in function *lmClear*: ```c char* line = (char*) calloc(1, LINE_MAX); // memory allocated...
There is a common antipattern in the usage of *strncat*, which can lead to buffer overflows: Unsafe usage example: ```c strncat(buffer, string, sizeof(buffer) - 1) ``` If `strlen(buffer) + strlen(string)...
In *scr/lib/parseArgs/paFrom.cpp*, line 105 ```c while ((aP = paIterateNext(paList)) != NULL) // line 88 { // code containing some break statements } if (aP->type == PaLastArg) // line 105 {...
Short version: If you run into crashes due to the new P-Code operation `lzcount`, please switch to the older Ghidra version 10.2.3 for the time being. Long version: Ghidra 10.3...
### Discussed in https://github.com/fkie-cad/cwe_checker/discussions/446 Originally posted by **yamiyugi123** March 7, 2024 => ERROR [builder 4/4] RUN cargo build --release 0.5s ------ > [builder 4/4] RUN cargo build --release: #0 0.147...