-
Dear Maintainers, I have some questions regarding the
Could you help clarify the intended use cases for the informational status? Specifically: Under what circumstances should a rule return this status? Are there existing implementation examples in the codebase demonstrating its proper usage? For a rule implementation that: Serves purely to provide advisory/hint information in reports Are there specific conventions we should follow when implementing such informational rules? Should these rules follow the same structure as standard compliance checks while omitting validation logic? Thank you for your guidance. I want to ensure proper adherence to our status taxonomy when implementing informational reporting features. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Maybe I didn't express myself clearly, what I wanted to ask was
Can you help me find an example to help me understand what the Thanks! |
Beta Was this translation helpful? Give feedback.
-
The information status/severity (in this project you set the rule severity to informational so that when scan using the content is ran you get an information result) rules are rarely used and have various levels of support across the ecosystem. It really shouldn't used for anything. It is here to the comply with the XCCDF and OVAL specifications. One use case that I can think of would something like an "Manual" check in the CIS benchmarks. You can use the scanner to collect data and then manually review it. However, this behavior isn't consistent among integrations into OpenSCAP so I wouldn't recommend it. As far as what an |
Beta Was this translation helpful? Give feedback.
-
Your response is clear and professional — thank you very much. |
Beta Was this translation helpful? Give feedback.
The information status/severity (in this project you set the rule severity to informational so that when scan using the content is ran you get an information result) rules are rarely used and have various levels of support across the ecosystem.
It really shouldn't used for anything. It is here to the comply with the XCCDF and OVAL specifications.
One use case that I can think of would something like an "Manual" check in the CIS benchmarks. You can use the scanner to collect data and then manually review it. However, this behavior isn't consistent among integrations into OpenSCAP so I wouldn't recommend it.
As far as what an
informational
result means. It means that human will need to figu…