Skip to content

Commit 759003e

Browse files
authored
Fixing false negative vulnerabilities on macOS Homebrew python packages. (#17709)
#17061 TODO: Need to also merge this fix into patch branch. # Checklist for submitter - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Added/updated tests - [x] Manual QA for all new/changed functionality
1 parent 61544f4 commit 759003e

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

changes/17061-homebrew-python

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixing false negative vulnerabilities on macOS Homebrew python packages.

server/vulnerabilities/nvd/cpe_test.go

+9
Original file line numberDiff line numberDiff line change
@@ -1604,6 +1604,15 @@ func TestCPEFromSoftwareIntegration(t *testing.T) {
16041604
// DO NOT MATCH with Cisco Umbrella
16051605
cpe: "",
16061606
},
1607+
{
1608+
software: fleet.Software{
1609+
1610+
Source: "homebrew_packages",
1611+
Version: "3.9.18_2",
1612+
Vendor: "",
1613+
},
1614+
cpe: `cpe:2.3:a:python:python:3.9.18_2:*:*:*:*:*:*:*`,
1615+
},
16071616
}
16081617

16091618
// NVD_TEST_CPEDB_PATH can be used to speed up development (sync cpe.sqlite only once).

server/vulnerabilities/nvd/sanitize.go

+7
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,13 @@ var langCodes = map[string]bool{
8181
// - Removing any extra spaces
8282
// - Lowercasing the name
8383
// - Removing parts from the bundle identifier
84+
// - Removing version contained in homebrew_packages name
8485
func sanitizeSoftwareName(s *fleet.Software) string {
8586
archs := regexp.MustCompile(` \(?x64\)?|\(?64-bit\)?|\(?64bit\)?|\(?amd64\)? `)
8687
ver := regexp.MustCompile(` \.?\(?(\d+\.)?(\d+\.)?(\*|\d+)\)?\s?`)
8788
gen := regexp.MustCompile(` \(\w+\)\s?`)
8889
comments := regexp.MustCompile(` (-|:)\s?.+`)
90+
versions := regexp.MustCompile(`@\d+($|(\.\d+($|\..+)))`) // @3 or @3.9 or @3.9.18 or @3.9.18_2
8991

9092
r := strings.ToLower(s.Name)
9193
r = strings.TrimSuffix(r, ".app")
@@ -119,6 +121,11 @@ func sanitizeSoftwareName(s *fleet.Software) string {
119121
r = strings.Replace(r, ")", " ", -1)
120122
r = strings.Join(strings.Fields(r), " ")
121123

124+
// Remove @<version> from homebrew names
125+
if s.Source == "homebrew_packages" {
126+
r = versions.ReplaceAllString(r, "")
127+
}
128+
122129
return r
123130
}
124131

0 commit comments

Comments
 (0)