Support scanning Ubuntu using Gost (#1243)

* chore: add vuls binary in gitignore

* feat(gost): support ubuntu

* chore(debian): fix typo

* feat(ubuntu): more detail on CveContent

* chore: update .gitignore

* chore: update gost deps

* feat(ubuntu): add test in gost/ubuntu

* chore: fix typo

* Revert "chore: fix typo"

This reverts commit 9f2f1db233.

* docs: update README
This commit is contained in:
Norihiro NAKAOKA
2021-07-08 08:31:46 +09:00
committed by GitHub
parent 0bf12412d6
commit 0b9ec05181
9 changed files with 350 additions and 8 deletions

View File

@@ -69,6 +69,8 @@ func NewClient(cnf config.GostConf, family string) (Client, error) {
return RedHat{Base{DBDriver: driver}}, nil
case constant.Debian, constant.Raspbian:
return Debian{Base{DBDriver: driver}}, nil
case constant.Ubuntu:
return Ubuntu{Base{DBDriver: driver}}, nil
case constant.Windows:
return Microsoft{Base{DBDriver: driver}}, nil
default: