Documentation ¶
Index ¶
Constants ¶
const ( OSReleaseID = "ol" OSReleaseName = "Oracle Linux Server" )
const ( NA = "N/A" Low = "LOW" Moderate = "MODERATE" Important = "IMPORTANT" Critical = "CRITICAL" )
const ( OracleLinux5Platform = "Oracle Linux 5" OracleLinux6Platform = "Oracle Linux 6" OracleLinux7Platform = "Oracle Linux 7" OracleLinux8Platform = "Oracle Linux 8" )
Variables ¶
This section is empty.
Functions ¶
func NormalizeSeverity ¶ added in v0.0.15
func UpdaterSet ¶ added in v0.0.21
func UpdaterSet(_ context.Context) (driver.UpdaterSet, error)
Types ¶
type DistributionScanner ¶ added in v0.0.14
type DistributionScanner struct{}
DistributionScanner attempts to discover if a layer displays characteristics of a Oracle distribution
func (*DistributionScanner) Kind ¶ added in v0.0.14
func (*DistributionScanner) Kind() string
Kind implements scanner.VersionedScanner.
func (*DistributionScanner) Name ¶ added in v0.0.14
func (*DistributionScanner) Name() string
Name implements scanner.VersionedScanner.
func (*DistributionScanner) Scan ¶ added in v0.0.14
func (ds *DistributionScanner) Scan(ctx context.Context, l *claircore.Layer) ([]*claircore.Distribution, error)
Scan will inspect the layer for an os-release or lsb-release file and perform a regex match for keywords indicating the associated Oracle release
If neither file is found a (nil,nil) is returned. If the files are found but all regexp fail to match an empty slice is returned.
func (*DistributionScanner) Version ¶ added in v0.0.14
func (*DistributionScanner) Version() string
Version implements scanner.VersionedScanner.
type Matcher ¶ added in v0.1.0
type Matcher struct{}
Matcher implements driver.Matcher
func (*Matcher) Filter ¶ added in v0.1.0
func (*Matcher) Filter(record *claircore.IndexRecord) bool
Filter implements driver.Matcher
func (*Matcher) Query ¶ added in v0.1.0
func (*Matcher) Query() []driver.MatchConstraint
Query implements driver.Matcher
func (*Matcher) Vulnerable ¶ added in v0.1.0
func (*Matcher) Vulnerable(ctx context.Context, record *claircore.IndexRecord, vuln *claircore.Vulnerability) (bool, error)
Vulnerable implements driver.Matcher
type Option ¶
Option configures the provided Updater.
func WithClient ¶
WithClient returns an Option that will make the Updater use the specified http.Client, instead of http.DefaultClient.
type Updater ¶
type Updater struct { ovalutil.Fetcher // Fetch method promoted via embed // contains filtered or unexported fields }
Updater implements driver.Updater for Oracle Linux.
func NewUpdater ¶
NewUpdater returns an updater configured according to the provided Options.
If year is -1, the "all" database will be pulled.
func (*Updater) Parse ¶
func (u *Updater) Parse(ctx context.Context, r io.ReadCloser) ([]*claircore.Vulnerability, error)