-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
Test Code
import clamd
cd = clamd.ClamdUnixSocket()
f = '/tmp/EICAR.txt'
open(f, 'wb').write(clamd.EICAR)
print(f"Test1: {cd.scan(f)}")
f = '/tmp/SAFE.txt'
open(f, 'wb').write(b"asdf")
print(f"Test2: {cd.scan(f)}")
from six import BytesIO
r = cd.instream(BytesIO(clamd.EICAR))
print(r)
Result
Test1: {'/tmp/EICAR.txt': ('FOUND', 'Eicar-Test-Signature')}
Test2: {'/tmp/SAFE.txt': ('OK', None)}
None
Metadata
Metadata
Assignees
Labels
No labels