Skip to content

streams the clamwin db and extracts the main.cvd into a file of your choosing

License

Notifications You must be signed in to change notification settings

codeallthethingz/clamwin-downloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Clamwin DB downloader

Downloads the clamwin DB, and extracts main.cvd from it.

Usage

package main

import (
	"os"

	"github.com/codeallthethingz/clamwin-downloader/clamwin"
)

func main() {
	file, err := os.Create("virus.db")
	if err != nil {
		panic(err)
	}
	if err := clamwin.NewClamwinConnector().Download(file); err != nil {
		panic(err)
	}
}

License

Please note, clamwin DB is GNU GENERAL PUBLIC LICENSE, Version 3, and thus you cannot use this code in any commercial software.

About

streams the clamwin db and extracts the main.cvd into a file of your choosing

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published