fleet/server/vulnerabilities/oval/input/rhel_result.go
Juan Fernandez 9d01ba33c6
Feature 6096: Scan RHEL/CentOS hosts using OVAL definitions (#6241)
Extended the OVAL parser/analyzer so that we can scan RHEL based systems.
2022-06-23 16:44:45 -04:00

14 lines
523 B
Go

package oval_input
// RhelResultXML groups together the different tokens produced from parsing an OVAL file targeting
// RHEL distros.
type RhelResultXML struct {
Definitions []DefinitionXML
RpmVerifyFileTests []RpmVerifyFileTestXML
RpmInfoTests []RpmInfoTestXML
RpmInfoTestStates []RpmInfoStateXML
RpmInfoTestObjects []PackageInfoTestObjectXML
RpmVerifyFileObjects []RpmVerifyFileObjectXML
RpmVerifyFileStates []RpmVerifyFileStateXML
Variables map[string]ConstantVariableXML
}