The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "FLOP:CVE Monitoring"
m |
|||
Line 44: | Line 44: | ||
* ''discussion'' produces issues to be posted at <tt>jira</tt>. | * ''discussion'' produces issues to be posted at <tt>jira</tt>. | ||
== Algorithm == | |||
=== cvedb.cves Collection Schema === | |||
The cvedb.cves collection provided by [https://github.com/cve-search/cve-search cve-search] has the following ''estimated'' schema (see [https://github.com/variety/variety variety], a schema estimator for mongodb): | |||
<syntaxhighlight style="white-space:nowrap"> | |||
+--------------------------------------------------------------------------------+ | |||
| key | types | occurrences | percents | | |||
| -------------------------------- | -------- | ----------- | ------------------ | | |||
| Modified | Date | 136539 | 100.00000000000000 | | |||
| Published | Date | 136539 | 100.00000000000000 | | |||
| _id | ObjectId | 136539 | 100.00000000000000 | | |||
| access | Object | 136539 | 100.00000000000000 | | |||
| assigner | String | 136539 | 100.00000000000000 | | |||
| cvss | Number | 136539 | 100.00000000000000 | | |||
| cwe | String | 136539 | 100.00000000000000 | | |||
| id | String | 136539 | 100.00000000000000 | | |||
| impact | Object | 136539 | 100.00000000000000 | | |||
| references | Array | 136539 | 100.00000000000000 | | |||
| summary | String | 136539 | 100.00000000000000 | | |||
| vulnerable_configuration | Array | 136539 | 100.00000000000000 | | |||
| vulnerable_configuration_cpe_2_2 | Array | 136539 | 100.00000000000000 | | |||
| vulnerable_product | Array | 136539 | 100.00000000000000 | | |||
| access.authentication | String | 128583 | 94.17309340188518 | | |||
| access.complexity | String | 128583 | 94.17309340188518 | | |||
| access.vector | String | 128583 | 94.17309340188518 | | |||
| cvss-time | Date | 128583 | 94.17309340188518 | | |||
| cvss-vector | String | 128583 | 94.17309340188518 | | |||
| impact.availability | String | 128583 | 94.17309340188518 | | |||
| impact.confidentiality | String | 128583 | 94.17309340188518 | | |||
| impact.integrity | String | 128583 | 94.17309340188518 | | |||
+--------------------------------------------------------------------------------+ | |||
</syntaxhighlight> | |||
{{FLOPFooter}} | {{FLOPFooter}} |
Revision as of 03:07, January 24, 2020
Funtoo Linux Optimization Proposal: CVE Monitoring
Summary
Ultimately, not all ebuilds are created equal. Hence they are updated at different rates according to their popularity in the tree of available packages and this is generally fine: packages with a lot of use get updated frequently, and vulnerabilities are generally dealt with. Unpopular ebuilds can languish, and no one really cares. However, unpopular ebuilds with a significant vulnerability should be updated, popular or not, as they represent a potential vector for attack, if they can be installed.
Identifying ebuilds with an associated CVE will bring them to 'head of the queue' for pull requests and updates, which should often be trivial, as the vulnerability is dealt with upstream and released as a new hotfix version. Or, we can fork and provide our own mitigation, merging with upstream again when a new release comes out (if at all).
The cver tool is built around redis and mongodb collections that are regularly updated with newly filed CVEs. The tool queries the collections to produce a set of text data appropriate to fill fields on a newly created security vulnerability issue on the Funtoo bug tracker. The data can be output in various formats (current just formatted text on stdout), and eventually input directly to the bug tracker via its REST api.
Architecture
The architecture is simple:
┌─────────┐
│redis │ ┌────┐
│┌───────┐│ │jira│──────────┐
││mongoDB││ └──┬─┘ │
│└───────┘│ │ │
└────┬────┘ │ │
│ │ *********
│ ┌───┐ │ *** ***
├─────┤dev│──────────* discussion *
│ └─┬─┘ │ *** ***
│ │ │ *********
│ │ │
│ ┌─┴─┐ │
├─────┤bot│────┘
│ └───┘
│
│
│ ┌───┐
└─────│usr│
└───┘
- A dev uses the tool to query the redis cache of the CVE data held in the mongoDB, update and admin the mongoDB, create reports for discussion, and control a bot.
- The bot can query the redis cache and create issues to post via the REST api of jira.
- A user can query the redis cache and create reports.
- discussion produces issues to be posted at jira.
Algorithm
cvedb.cves Collection Schema
The cvedb.cves collection provided by cve-search has the following estimated schema (see variety, a schema estimator for mongodb):
+--------------------------------------------------------------------------------+
| key | types | occurrences | percents |
| -------------------------------- | -------- | ----------- | ------------------ |
| Modified | Date | 136539 | 100.00000000000000 |
| Published | Date | 136539 | 100.00000000000000 |
| _id | ObjectId | 136539 | 100.00000000000000 |
| access | Object | 136539 | 100.00000000000000 |
| assigner | String | 136539 | 100.00000000000000 |
| cvss | Number | 136539 | 100.00000000000000 |
| cwe | String | 136539 | 100.00000000000000 |
| id | String | 136539 | 100.00000000000000 |
| impact | Object | 136539 | 100.00000000000000 |
| references | Array | 136539 | 100.00000000000000 |
| summary | String | 136539 | 100.00000000000000 |
| vulnerable_configuration | Array | 136539 | 100.00000000000000 |
| vulnerable_configuration_cpe_2_2 | Array | 136539 | 100.00000000000000 |
| vulnerable_product | Array | 136539 | 100.00000000000000 |
| access.authentication | String | 128583 | 94.17309340188518 |
| access.complexity | String | 128583 | 94.17309340188518 |
| access.vector | String | 128583 | 94.17309340188518 |
| cvss-time | Date | 128583 | 94.17309340188518 |
| cvss-vector | String | 128583 | 94.17309340188518 |
| impact.availability | String | 128583 | 94.17309340188518 |
| impact.confidentiality | String | 128583 | 94.17309340188518 |
| impact.integrity | String | 128583 | 94.17309340188518 |
+--------------------------------------------------------------------------------+