* feat(cti): add Cyber Threat Intelligence info * chore: replace io/ioutil as it is deprecated * chore: remove --format-csv in stdout writer * chore(deps): go get go-cti@v0.0.1 * feat(cti): update cti dict(support MITRE ATT&CK v11.1) * chore(deps): go get go-cti@master
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package subcmds
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"flag"
 | 
						|
	"fmt"
 | 
						|
	"io/fs"
 | 
						|
	"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, _ *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus {
 | 
						|
	dirs, err := reporter.ListValidJSONDirs(config.Conf.ResultsDir)
 | 
						|
	if err != nil {
 | 
						|
		return subcommands.ExitFailure
 | 
						|
	}
 | 
						|
	for _, d := range dirs {
 | 
						|
		var files []fs.DirEntry
 | 
						|
		if files, err = os.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
 | 
						|
}
 |