从这个网页截图中,可以获取到以下关于漏洞的关键信息: Commit ID: d6bc718 Commit Message: datasets: allocates on the heap if string base64 is long Author(s): catenacyber and victorjulien Commited Time: 3 weeks ago Ticket: 8110 Files Changed: - - Code Changes: - datasets-string.c: Introduced a check for the size of the base64 encoded string and returns when there's not enough space, instead of returning . - util-thash.c: Implemented heap allocation for output buffer if the stack allocation is insufficient, handling scenarios where the required buffer size exceeds 1024 bytes. Key Vulnerability Fix: - The modifications address a potential issue where longer base64 strings could lead to buffer overflows or unexpected program behavior due to insufficient space. The heap allocation in ensures more dynamic handling of large strings, mitigating potential buffer overflow vulnerabilities.