* refactor: cve_client.go * refactor: don't use global Config in private func * remove import alias for config * refactor: dbclient * refactor: resultDir * refactor: resultsDir * refactor * refactor: gost * refactor: db client * refactor: cveDB * refactor: cvedb * refactor: exploitDB * refactor: remove detector/dbclient.go * refactor: writer * refactor: syslog writer * refactor: ips * refactor: ensureResultDir * refactor: proxy * fix(db): call CloseDB * add integration test * feat(report): sort array in json * sort func for json diff * add build-int to makefile * add int-rds-redis to makefile * fix: test case, makefile * fix makefile * show cve count after diff * make diff * diff -c * sort exploits in json for diff * sort metasploit, exploit
74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
package subcmds
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/future-architect/vuls/config"
|
|
"github.com/future-architect/vuls/reporter"
|
|
"github.com/google/subcommands"
|
|
)
|
|
|
|
// HistoryCmd is Subcommand of list scanned results
|
|
type HistoryCmd struct{}
|
|
|
|
// Name return subcommand name
|
|
func (*HistoryCmd) Name() string { return "history" }
|
|
|
|
// Synopsis return synopsis
|
|
func (*HistoryCmd) Synopsis() string {
|
|
return `List history of scanning.`
|
|
}
|
|
|
|
// Usage return usage
|
|
func (*HistoryCmd) Usage() string {
|
|
return `history:
|
|
history
|
|
[-results-dir=/path/to/results]
|
|
`
|
|
}
|
|
|
|
// SetFlags set flag
|
|
func (p *HistoryCmd) SetFlags(f *flag.FlagSet) {
|
|
f.BoolVar(&config.Conf.DebugSQL, "debug-sql", false, "SQL debug mode")
|
|
|
|
wd, _ := os.Getwd()
|
|
defaultResultsDir := filepath.Join(wd, "results")
|
|
f.StringVar(&config.Conf.ResultsDir, "results-dir", defaultResultsDir, "/path/to/results")
|
|
}
|
|
|
|
// Execute execute
|
|
func (p *HistoryCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus {
|
|
dirs, err := reporter.ListValidJSONDirs(config.Conf.ResultsDir)
|
|
if err != nil {
|
|
return subcommands.ExitFailure
|
|
}
|
|
for _, d := range dirs {
|
|
var files []os.FileInfo
|
|
if files, err = ioutil.ReadDir(d); err != nil {
|
|
return subcommands.ExitFailure
|
|
}
|
|
var hosts []string
|
|
for _, f := range files {
|
|
if filepath.Ext(f.Name()) != ".json" {
|
|
continue
|
|
}
|
|
fileBase := strings.TrimSuffix(f.Name(), filepath.Ext(f.Name()))
|
|
hosts = append(hosts, fileBase)
|
|
}
|
|
splitPath := strings.Split(d, string(os.PathSeparator))
|
|
timeStr := splitPath[len(splitPath)-1]
|
|
fmt.Printf("%s %d servers: %s\n",
|
|
timeStr,
|
|
len(hosts),
|
|
strings.Join(hosts, ", "),
|
|
)
|
|
}
|
|
return subcommands.ExitSuccess
|
|
}
|