Skip to content

Commit 31fd92f

Browse files
committed
add edge cpe translation
1 parent 39f0fd2 commit 31fd92f

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

changes/16817-ms-edge-vuln

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Fixed issue where microsoft edge was not reporting vulnerabilities

server/vulnerabilities/nvd/README.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,24 @@ To test these changes locally, you can:
1010
2. host this file on a local web server
1111

1212
```bash
13-
./tools/file-server 8082 ./server/vulnerabilities/nvd/cpe_translations.json
13+
go run ./tools/file-server 8082 ./server/vulnerabilities/nvd
1414
```
1515

16-
3. (re)launch your local fleet server with the following `--config`
16+
3. (re)launch your local fleet server with one of the following
1717

18+
Config method
1819
```yaml
1920
vulnerabilities:
2021
cpe_translations_url: "http://localhost:8082/cpe_translations.json"
2122
```
2223

23-
4. trigger the vulnerabilities scan
24+
25+
Environment method
26+
```bash
27+
FLEET_VULNERABILITIES_CPE_TRANSLATIONS_URL="http://localhost:8082/cpe_translations.json" ./build/fleet serve --dev --dev_license --logging_debug
28+
```
29+
30+
4. trigger a vulnerabilities scan
2431

2532
```bash
2633
fleetctl trigger --name vulnerabilities

server/vulnerabilities/nvd/cpe_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ func TestCPEFromSoftwareIntegration(t *testing.T) {
823823
Version: "105.0.1343.50",
824824
Vendor: "Microsoft Corporation",
825825
BundleIdentifier: "",
826-
}, cpe: "cpe:2.3:a:microsoft:edge:105.0.1343.50:*:*:*:*:windows:*:*",
826+
}, cpe: "cpe:2.3:a:microsoft:edge_chromium:105.0.1343.50:*:*:*:*:windows:*:*",
827827
},
828828
{
829829
software: fleet.Software{

server/vulnerabilities/nvd/cpe_translations.json

+10
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,15 @@
139139
"product": ["pycharm"],
140140
"vendor": ["jetbrains"]
141141
}
142+
},
143+
{
144+
"software": {
145+
"name": ["Microsoft Edge"],
146+
"source": ["programs", "apps"]
147+
},
148+
"filter": {
149+
"product": ["edge_chromium"],
150+
"vendor": ["microsoft"]
151+
}
142152
}
143153
]

0 commit comments

Comments
 (0)