-
Notifications
You must be signed in to change notification settings - Fork 602
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
antivirus module needed #206
Comments
Importing ClamAV databases and comparing MD5 values might work. ClamAV checks against MD5 for known malware, and stores an MD5 for each entry in it's signature databases. Using ClamAV databases as lists of known malware, combined with cross referencing in a manner similar to the known file filter might be a feasible solution. |
ClamAV library / java bindings is also a possibility. Not as fast since we'd need to rescan the file and ClamAv will probably recalculate the hash, but might return more info / detect other malware than pure hash db solution. |
Also, OpenIOC and Yara support might be useful as well. |
In the absence of a real "send to AV for scanning", I used the mentioned trick by aoighost. Not very agile as you have to do the updates manually every time, but still some way of getting it done. |
We should have a module that integrates an anit-virus solution. Files that are found to have viruses should have a TSK_MALWARE_DETECTED attribute added in the blackboard.
The text was updated successfully, but these errors were encountered: