Hello, We're trying to use clamav on a centos 7 server in order to scan directly uploaded files on our web apps (Moodle for example). When trying to execute a clamdscan from apache, we got this error (the file belong to apache:apache and has correct rights 755)
<?php exec('/usr/bin/clamdscan --stdout --fdpass /var/www/html/test/filetoscan', $output, $return); print "<pre>"; print_r($output); print_r($return); ?> And the return is : Array ( [0] => Failed to parse reply: "No file descriptor received. ERROR" [1] => [2] => ----------- SCAN SUMMARY ----------- [3] => Infected files: 0 [4] => Total errors: 1 [5] => Time: 0.000 sec (0 m 0 s) ) 2 Of course, if we try to do it directly through command lines, we have same error.. su -l apache -s /bin/bash /usr/bin/clamdscan --stdout --fdpass /var/www/html/test/filetoscan How can I allow apache to execute clamdscan (or resolve the file descriptor problem) ? of course if the command is launched by an other user everything works fine. Any help would be really appreciated. Regards. Diego _______________________________________________ Help us build a comprehensive ClamAV guide: https://github.com/vrtadmin/clamav-faq http://www.clamav.net/contact.html#ml