blob: fd1b01192c6196c199c513e3895c2cac3611ed40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package cmd
import (
"context"
"github.com/spf13/cobra"
"github.com/rs/zerolog/log"
"os"
)
var searchCmd = &cobra.Command{
Use: "search",
Args: cobra.MinimumNArgs(1),
Short: "Search CVEs.",
Long: `Common Vulnerability Enumeration (CVE) search.`,
Run: func(cmd *cobra.Command, args []string) {
ctx := context.Background()
// search for CVEs
rows, err := getDb().CveSearch(ctx, getSearchQuery(args))
if err != nil {
log.Error().Err(err).Msg("CveSearch")
os.Exit(-1)
}
// write rows to stdout
jsonEncode(rows)
},
}
|