File tree Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 5
5
"""
6
6
CVE checker for boinc
7
7
8
- https://www.cvedetails.com/product/27779/Rom-Walton- Boinc.html?vendor_id=13367
9
- https://www.cvedetails.com/product/63697/Berkeley -Boinc.html?vendor_id=356
8
+ https://www.cvedetails.com/product/16720/Berkeley- Boinc-Client .html?vendor_id=356
9
+ https://www.cvedetails.com/product/179893/Universityofcalifornia -Boinc-Client .html?vendor_id=37525
10
10
11
11
"""
12
12
from __future__ import annotations
@@ -21,4 +21,7 @@ class BoincChecker(Checker):
21
21
r"boinc.so.([0-9]+\.[0-9]+\.[0-9]+)" ,
22
22
r"([0-9]+\.[0-9]+\.[0-9]+)\r?\nboinc" ,
23
23
]
24
- VENDOR_PRODUCT = [("berkeley" , "boinc" ), ("rom_walton" , "boinc" )]
24
+ VENDOR_PRODUCT = [
25
+ ("berkeley" , "boinc_client" ),
26
+ ("universityofcalifornia" , "boinc_client" ),
27
+ ]
Original file line number Diff line number Diff line change 2
2
# SPDX-License-Identifier: GPL-3.0-or-later
3
3
4
4
mapping_test_data = [
5
- {"product" : "boinc" , "version" : "7.20.2" , "version_strings" : ["boinc.so.7.20.2" ]},
6
- {"product" : "boinc" , "version" : "7.10.2" , "version_strings" : ["7.10.2\n boinc" ]},
5
+ {
6
+ "product" : "boinc_client" ,
7
+ "version" : "7.20.2" ,
8
+ "version_strings" : ["boinc.so.7.20.2" ],
9
+ },
10
+ {
11
+ "product" : "boinc_client" ,
12
+ "version" : "7.10.2" ,
13
+ "version_strings" : ["7.10.2\n boinc" ],
14
+ },
7
15
]
8
16
package_test_data = [
9
17
{
10
18
"url" : "http://rpmfind.net/linux/opensuse/ports/aarch64/tumbleweed/repo/oss/aarch64/" ,
11
19
"package_name" : "libboinc7-7.20.2-1.3.aarch64.rpm" ,
12
- "product" : "boinc " ,
20
+ "product" : "boinc_client " ,
13
21
"version" : "7.20.2" ,
14
22
},
15
23
{
16
24
"url" : "http://ftp.debian.org/debian/pool/main/b/boinc/" ,
17
25
"package_name" : "boinc-client_7.10.2+dfsg-2~bpo9+1_amd64.deb" ,
18
- "product" : "boinc " ,
26
+ "product" : "boinc_client " ,
19
27
"version" : "7.10.2" ,
20
28
},
21
29
{
22
30
"url" : "https://downloads.openwrt.org/releases/packages-19.07/x86_64/packages/" ,
23
31
"package_name" : "boinc_7.16.16-1_x86_64.ipk" ,
24
- "product" : "boinc " ,
32
+ "product" : "boinc_client " ,
25
33
"version" : "7.16.16" ,
26
34
},
27
35
]
You can’t perform that action at this time.
0 commit comments