cmd/redhat2nvd/redhat2nvd.go (41 lines of code) (raw):

// Copyright (c) Facebook, Inc. and its affiliates. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package main import ( "context" "encoding/json" "fmt" "io" "github.com/facebookincubator/flog" "github.com/facebookincubator/nvdtools/providers/lib/client" "github.com/facebookincubator/nvdtools/providers/lib/runner" "github.com/facebookincubator/nvdtools/providers/redhat/api" "github.com/facebookincubator/nvdtools/providers/redhat/schema" ) func Read(r io.Reader, c chan runner.Convertible) error { var vulns map[string]*schema.CVE if err := json.NewDecoder(r).Decode(&vulns); err != nil { return fmt.Errorf("can't decode into vulns: %v", err) } for _, vuln := range vulns { c <- vuln } return nil } func FetchSince(ctx context.Context, c client.Client, baseURL string, since int64) (<-chan runner.Convertible, error) { client := api.NewClient(c, baseURL) return client.FetchAllCVEs(ctx, since) } func main() { r := runner.Runner{ Config: runner.Config{ BaseURL: "https://access.redhat.com/labs/securitydataapi", ClientConfig: client.Config{ UserAgent: "redhat2nvd", }, }, FetchSince: FetchSince, Read: Read, } if err := r.Run(); err != nil { flog.Fatalln(err) } }