mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Exclude ios_apps and ipados_apps from normal vuln processing. (#21143)
#21142
This commit is contained in:
parent
ae211a3966
commit
647ffc6bf1
1 changed files with 2 additions and 1 deletions
|
|
@ -443,7 +443,8 @@ func TranslateSoftwareToCPE(
|
|||
nonOvalIterator, err := ds.AllSoftwareIterator(
|
||||
ctx,
|
||||
fleet.SoftwareIterQueryOptions{
|
||||
ExcludedSources: oval.SupportedSoftwareSources,
|
||||
// Also exclude iOS and iPadOS apps until we enable vulnerabilities support for them.
|
||||
ExcludedSources: append(oval.SupportedSoftwareSources, "ios_apps", "ipados_apps"),
|
||||
},
|
||||
)
|
||||
if err != nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue