vanagnostos / php-clamav
A PHP interface to clamd / clamscan.
Installs: 116 985
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 3
Forks: 3
Open Issues: 0
Requires
- php: >=5.6
This package is not auto-updated.
Last update: 2024-11-01 09:42:15 UTC
README
php-clamav is a PHP interface to clamd / clamscan that allows you to scan files and directories using ClamAV.
Examples
<?php error_reporting(E_ALL); ini_set('display_errors', true); // autoloader require '../vendor/autoload.php'; // Scan using clamscan or clamdscan available on localhost, clamscan must have access to the scanned files. // clamscan and clamdscan are supported, clamdscan much faster but clamd daemon must be running. $config = ['driver' => 'clamscan', 'executable' => '/usr/local/bin/clamdscan']; // Scan using clamd on local host, clamd must have access to the scanned files. // $config = ['driver' => 'clamd_local', 'socket' => '/usr/local/var/run/clamav/clamd.sock']; // $config = ['driver' => 'clamd_local', 'host' => '127.0.0.1', 'port' => 3310]; // Scan using clamd on remote host, directory scan is not supported. // Files will be send over the network so large files could be an issue. // $config = ['driver' => 'clamd_remote', 'host' => '127.0.0.1', 'port' => 3310]; $clamd = new \Avasil\ClamAv\Scanner($config); echo 'Ping: ', ($clamd->ping() ? 'Ok' : 'Failed'), '<br />'; echo 'ClamAv Version: ', $clamd->version(), '<br />'; $toScan = [ '../examples/files/clean.txt', '../examples/files/infected.txt', '../examples/files/', 'Lorem Ipsum Dolor', 'Lorem Ipsum Dolor X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*' ]; foreach ($toScan as $f) { if (file_exists($f)) { echo 'Scanning ', $f, '<br />'; $result = $clamd->scan($f); } else { echo 'Scanning buffer', '<br />'; $result = $clamd->scanBuffer($f); } if ($result->isClean()) { echo ' - ', $result->getTarget(), ' is clean', '<br />'; } else { foreach ($result->getInfected() as $file => $virus) { echo ' - ', $file, ' is infected with ', $virus, '<br />'; } } }
This should output something like:
Ping: Ok
ClamAv Version: ClamAV 0.99.2/21473/Thu Mar 24 20:25:24 2016
Scanning ../examples/files/clean.txt
- ../examples/files/clean.txt is clean
Scanning ../examples/files/infected.txt
- ../examples/files/infected.txt is infected with Eicar-Test-Signature
Scanning ../examples/files/
- ../examples/files/infected.txt is infected with Eicar-Test-Signature
- ../examples/files/archive.zip is infected with Eicar-Test-Signature
Scanning buffer
- buffer is clean
Scanning buffer
- biffer is infected with Eicar-Test-Signature