first commit
This commit is contained in:
3394
example/db/main.ldb
Normal file
3394
example/db/main.ldb
Normal file
File diff suppressed because one or more lines are too long
5095
example/db/main.ndb
Normal file
5095
example/db/main.ndb
Normal file
File diff suppressed because it is too large
Load Diff
8008
example/db/online_20220222.yar
Normal file
8008
example/db/online_20220222.yar
Normal file
File diff suppressed because it is too large
Load Diff
1
example/db/version
Normal file
1
example/db/version
Normal file
@@ -0,0 +1 @@
|
||||
20220222
|
||||
51
example/main.go
Normal file
51
example/main.go
Normal file
@@ -0,0 +1,51 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
clamav "github.com/ca110us/go-clamav"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// new clamav instance
|
||||
c := new(clamav.Clamav)
|
||||
err := c.Init(clamav.SCAN_OPTIONS{
|
||||
General: 0,
|
||||
Parse: clamav.CL_SCAN_PARSE_ARCHIVE | clamav.CL_SCAN_PARSE_ELF,
|
||||
Heuristic: 0,
|
||||
Mail: 0,
|
||||
Dev: 0,
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
// free clamav memory
|
||||
defer c.Free()
|
||||
|
||||
// load db
|
||||
signo, err := c.LoadDB("./db", uint(clamav.CL_DB_DIRECTORY))
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
fmt.Println("db load succeed:", signo)
|
||||
|
||||
// compile engine
|
||||
err = c.CompileEngine()
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
c.EngineSetNum(clamav.CL_ENGINE_MAX_SCANSIZE, 1024*1024*40)
|
||||
c.EngineSetNum(clamav.CL_ENGINE_PCRE_MAX_FILESIZE, 1024*1024*20)
|
||||
c.EngineSetNum(clamav.CL_ENGINE_MAX_SCANTIME, 9000)
|
||||
c.EngineSetNum(clamav.CL_ENGINE_PCRE_MATCH_LIMIT, 1000)
|
||||
c.EngineSetNum(clamav.CL_ENGINE_PCRE_RECMATCH_LIMIT, 500)
|
||||
|
||||
// fmt.Println(c.EngineGetNum(clamav.CL_ENGINE_PCRE_RECMATCH_LIMIT))
|
||||
|
||||
// scan
|
||||
scanned, msg, err := c.ScanFile("./test_file/nmap")
|
||||
fmt.Println(scanned, msg, err)
|
||||
}
|
||||
BIN
example/test_file/nmap
Normal file
BIN
example/test_file/nmap
Normal file
Binary file not shown.
Reference in New Issue
Block a user