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

Fix alert-exceeds-max feature for files > 2GB and < max-filesize (1.2.1) #1039

Conversation

micahsnyder
Copy link
Contributor

Backport of #1032


The --alert-exceeds-max feature should alert for all files larger than 2GB because 2GB is the internal limit for individual files. This isn't working correctly because the goto done; exit condition after recording the exceeds-max heuristic skips over the logic that reports the alert.

This fix moves the ">2GB" check up to the location where the max-filesize engine option is set by clamd or clamscan. If max-filesize > 2GB - 1 is requested, then max-filesize is set to 2GB - 1.

Additionally, a warning is printed if max-filesize > 2GB is requested (with an exception for when it's maxed out by setting --max-filesize=0).

Resolves: #1030

The --alert-exceeds-max feature should alert for all files larger than
2GB because 2GB is the internal limit for individual files.
This isn't working correctly because the `goto done;` exit condition
after recording the exceeds-max heuristic skips over the logic that
reports the alert.

This fix moves the ">2GB" check up to the location where the
max-filesize engine option is set by clamd or clamscan.
If max-filesize > 2GB - 1 is requested, then max-filesize is set to
2GB - 1.

Additionally, a warning is printed if max-filesize > 2GB is requested
(with an exception for when it's maxed out by setting --max-filesize=0).

Resolves: Cisco-Talos#1030
@micahsnyder micahsnyder changed the title Fix alert-exceeds-max feature for files > 2GB and < max-filesize Fix alert-exceeds-max feature for files > 2GB and < max-filesize (1.2.1) Oct 2, 2023
@micahsnyder micahsnyder merged commit c543eb5 into Cisco-Talos:dev/1.2.1 Oct 19, 2023
22 of 24 checks passed
@micahsnyder micahsnyder deleted the CLAM-2449-max-filesize-gt-2G-1.2.1 branch October 19, 2023 20:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant