Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove hardcoded alert for CVE-2004-0597 #855

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions libclamav/png.c
Original file line number Diff line number Diff line change
Expand Up @@ -257,13 +257,6 @@ cl_error_t cli_parsepng(cli_ctx *ctx)
/*------*
| tRNS |
*------*/

if (color_type == 3) {
if ((chunk_data_length > 256 || chunk_data_length > num_palette_entries) && !have_PLTE) {
status = cli_append_potentially_unwanted(ctx, "Heuristics.PNG.CVE-2004-0597");
goto done; // always, even if allmatch mode means status comes back 'success' instead of 'virus'.
}
}
}

if (fmap_readn(map, &chunk_crc, offset, PNG_CHUNK_CRC_SIZE) != PNG_CHUNK_CRC_SIZE) {
Expand Down