appwrite/php-clamav

๐Ÿ› Bug Report: ClamAv::fileScanInStream does not detect eicar.com file

vagiguere opened this issue ยท 3 comments

๐Ÿ‘Ÿ Reproduction steps

Download the "eicar.com" or the "eicar.com.txt" file from https://www.eicar.org/download-anti-malware-testfile/

$clam = new Network($host, $port);
$is_clean = $clam->fileScanInStream('path/to/eicar/file');

The function is supposed to return false, instead it returns true.
This behavior happen with both "eicar.com" and "eicar.com.txt" files but not with zip files.

The problem seem to happen with text files of less than 8192 bytes.

In Appwrite\ClamAv\ClamAv:107 the fread return an empty string which is sent to the socket. The problem is ClamAv does not detect the eicar file if this empty string is packed and send through the socket.

๐Ÿ‘ Expected behavior

in the example above the $is_clean variable should be false.

๐Ÿ‘Ž Actual Behavior

In the exemple above the $is_clean variable is true.

๐ŸŽฒ PHP ClamAV version

Different version (specify in environment)

๐Ÿ’ป Operating system

Linux

๐Ÿงฑ Your Environment

Version : appwrite/php-clamav:2.0.0
PHP 8.2 (also with 8.1) in a docker container
Clamav in another docker container : https://hub.docker.com/r/clamav/clamav/

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

Same problem here. Have you been able to find a solution?

Yes, the PR here (#27).
I'm gonna test the changes from #27 (comment) and hope the appwrite team will accept the PR.