blob: 7047fd90655e959f59541b959710078770756499 (
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
30
31
32
33
34
|
package cmd
import (
// "encoding/json"
"github.com/pablotron/cvez/nvdmirror"
"github.com/spf13/cobra"
"github.com/rs/zerolog/log"
)
var updateCmd = &cobra.Command{
Use: "update",
Aliases: []string { "up" },
Short: "Update mirror.",
Long: `Update local NVD mirror.`,
Run: func(cmd *cobra.Command, args []string) {
// create cache
cache, err := nvdmirror.NewJsonCache("stuff/cache.json.gz")
if err != nil {
log.Error().Err(err).Msg("NewJsonCache")
}
defer cache.Close()
// custom sync config
config := nvdmirror.SyncConfig {
Cve11BaseUrl: "https://pmdn.org/nvdmirror",
CpeMatch10BaseUrl: "https://pmdn.org/nvdmirror",
Cpe23DictUrl: "https://pmdn.org/nvdmirror",
}
// sync data, get changed data
nvdmirror.Sync(config, &cache, "stuff")
},
}
|