KicomAV is an open source (GPL v2) antivirus engine designed for detecting malware and disinfecting it. This antivirus engine is created and maintained by Kei Choi.
- Python 2.7
- pylzma
- yara
- backports.lzma
Three quick start options are available:
- Download the latest release and unzip it.
- Clone the repo:
git clone git://github.com/hanul93/kicomav.git
. - Build KicomAV Engine & Plugins modules :
build.sh build
orbuild.bat build
- You can see
Release
Directory. Change theRelease
directory and runk2.py
.
C:\kicomav\Release> python k2.py [path] [options]
Example 1 : KicomAV help Options
C:\kicomav\Release> python k2.py
Example 2 : Update for malware signatures
C:\kicomav\Release> python k2.py --update
Example 3 : Scan for current path
C:\kicomav\Release> python k2.py . -I
Example 4 : Scan for ZIP files
C:\kicomav\Release> python k2.py sample -r -I
Example 5 : Display Virus list
C:\kicomav\Release> python k2.py -V
Kei Choi