Skip to content

Commit 6f93894

Browse files
authored
Fixing false negative vulnerabilities on macOS Homebrew python packages. (#17722)
#17061 Already merged into main: #17709 # 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 8393c17 commit 6f93894

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
@@ -1367,6 +1367,15 @@ func TestCPEFromSoftwareIntegration(t *testing.T) {
13671367
// DO NOT MATCH with Cisco Umbrella
13681368
cpe: "",
13691369
},
1370+
{
1371+
software: fleet.Software{
1372+
1373+
Source: "homebrew_packages",
1374+
Version: "3.9.18_2",
1375+
Vendor: "",
1376+
},
1377+
cpe: `cpe:2.3:a:python:python:3.9.18_2:*:*:*:*:*:*:*`,
1378+
},
13701379
}
13711380

13721381
tempDir := t.TempDir()

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)