Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

Latest commit

 

History

History
22 lines (15 loc) · 854 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 854 Bytes

SimpleFileVirusScan

This service offers a small web page to upload a file and check these file against a virus scanner.
Similar project to virustotal, just in open source with clamav as virus scanner.

See demo.

Installation

See docs/INSTALL.md

Contribute / Add new virus scanner

If you want to add a new virus scanner, you can simply implement the net.ngotzmann.SimpleFileVirusScan.virusscanner.VirusScanner interface.
Your virus scanner bean must be spring managed!

Set the virusscanner.beanName=yourVirusScannerBeanName application property to your beanName.
To test if your virus scanner work, maybe adjust and execute the net.ngotzmann.SimpleFileVirusScan.virusscanner.FileServiceIntegrationTest class.