Skip to content

Commit

Permalink
Merge pull request #68 from hazcod/feat/warnings
Browse files Browse the repository at this point in the history
fix(falcon): ignore suppressed vulnerabilities
  • Loading branch information
hazcod authored Jan 12, 2023
2 parents f943a79 + d638ba7 commit 8c933af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/falcon/extractor.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ func GetMessages(config *config.Config, ctx context.Context) (results map[string
queryResult, err := client.SpotlightVulnerabilities.CombinedQueryVulnerabilities(
&spotlight_vulnerabilities.CombinedQueryVulnerabilitiesParams{
Context: ctx,
Filter: "status:'open'",
Filter: "status:'open'+suppression_info.is_suppressed:'false'",
Limit: &falconAPIMaxRecords,
Facet: []string{"host_info", "cve", "remediation"},
After: &paginationToken,
Expand Down

0 comments on commit 8c933af

Please sign in to comment.