-
- Downloads
No related branches found
No related tags found
Pipeline #666064440 passed
Stage: build
Stage: static-analysis
Stage: pages
Stage: deploy
Stage: external
Loading
-
mentioned in issue gitlab-org/cves#479 (closed)
-
mentioned in issue #435 (closed)
-
According to the description of the CVE-2022-3598, the LibTIFF affected version of the vulnerability is 4.4.0 . However, based on the vulnerability code snippet, the earliest version is v3.9.0(https://github.com/libsdl-org/libtiff/blob/v3.9.0/tools/tiffcrop.c#L6158). code snippet:
if (!sect_buff) { sect_buff = (unsigned char *)_TIFFmalloc(sectsize); *sect_buff_ptr = sect_buff; _TIFFmemset(sect_buff, 0, sectsize); } else { if (prev_sectsize < sectsize) { new_buff = _TIFFrealloc(sect_buff, sectsize); if (!new_buff) { free (sect_buff); sect_buff = (unsigned char *)_TIFFmalloc(sectsize); } else sect_buff = new_buff; _TIFFmemset(sect_buff, 0, sectsize); } }
please confirm thank you!
Please register or sign in to comment