VEX represents Vulnerability Exploitability eXchange. It abstracts multiple VEX formats. Note: This is in the experimental stage and does not yet support many specifications. The implementation may change significantly.
| 26 | // Note: This is in the experimental stage and does not yet support many specifications. |
| 27 | // The implementation may change significantly. |
| 28 | type VEX interface { |
| 29 | NotAffected(vuln types.DetectedVulnerability, product, subComponent *core.Component) (types.ModifiedFinding, bool) |
| 30 | } |
| 31 | |
| 32 | type Client struct { |
| 33 | VEXes []VEX |
no outgoing calls
no test coverage detected