William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 1 | # This file contains a list of CVE's where resolution has proven to be impractical |
| 2 | # or there is no reasonable action the Yocto Project can take to resolve the issue. |
| 3 | # It contains all the information we are aware of about an issue and analysis about |
| 4 | # why we believe it can't be fixed/handled. Additional information is welcome through |
| 5 | # patches to the file. |
| 6 | # |
| 7 | # Include this file in your local.conf or distro.conf to exclude these CVE's |
| 8 | # from the cve-check results or add to the bitbake command with: |
| 9 | # -R conf/distro/include/cve-extra-exclusions.inc |
| 10 | # |
| 11 | # The file is not included by default since users should review this data to ensure |
| 12 | # it matches their expectations and usage of the project. |
| 13 | # |
| 14 | # We may also include "in-flight" information about current/ongoing CVE work with |
| 15 | # the aim of sharing that work and ensuring we don't duplicate it. |
| 16 | # |
| 17 | |
| 18 | |
| 19 | # strace https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2000-0006 |
| 20 | # CVE is more than 20 years old with no resolution evident |
| 21 | # broken links in CVE database references make resolution impractical |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 22 | CVE_CHECK_IGNORE += "CVE-2000-0006" |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 23 | |
| 24 | # epiphany https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2005-0238 |
| 25 | # The issue here is spoofing of domain names using characters from other character sets. |
| 26 | # There has been much discussion amongst the epiphany and webkit developers and |
| 27 | # whilst there are improvements about how domains are handled and displayed to the user |
| 28 | # there is unlikely ever to be a single fix to webkit or epiphany which addresses this |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 29 | # problem. Ignore this CVE as there isn't any mitigation or fix or way to progress this further |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 30 | # we can seem to take. |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 31 | CVE_CHECK_IGNORE += "CVE-2005-0238" |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 32 | |
| 33 | # glibc https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-4756 |
| 34 | # Issue is memory exhaustion via glob() calls, e.g. from within an ftp server |
| 35 | # Best discussion in https://bugzilla.redhat.com/show_bug.cgi?id=681681 |
| 36 | # Upstream don't see it as a security issue, ftp servers shouldn't be passing |
| 37 | # this to libc glob. Exclude as upstream have no plans to add BSD's GLOB_LIMIT or similar |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 38 | CVE_CHECK_IGNORE += "CVE-2010-4756" |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 39 | |
| 40 | # go https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-29509 |
| 41 | # go https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-29511 |
| 42 | # The encoding/xml package in go can potentially be used for security exploits if not used correctly |
| 43 | # CVE applies to a netapp product as well as flagging a general issue. We don't ship anything |
| 44 | # exposing this interface in an exploitable way |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 45 | CVE_CHECK_IGNORE += "CVE-2020-29509 CVE-2020-29511" |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 46 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 47 | # db |
| 48 | # Since Oracle relicensed bdb, the open source community is slowly but surely replacing bdb with |
| 49 | # supported and open source friendly alternatives. As a result these CVEs are unlikely to ever be fixed. |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 50 | CVE_CHECK_IGNORE += "CVE-2015-2583 CVE-2015-2624 CVE-2015-2626 CVE-2015-2640 CVE-2015-2654 \ |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 51 | CVE-2015-2656 CVE-2015-4754 CVE-2015-4764 CVE-2015-4774 CVE-2015-4775 CVE-2015-4776 CVE-2015-4777 \ |
| 52 | CVE-2015-4778 CVE-2015-4779 CVE-2015-4780 CVE-2015-4781 CVE-2015-4782 CVE-2015-4783 CVE-2015-4784 \ |
| 53 | CVE-2015-4785 CVE-2015-4786 CVE-2015-4787 CVE-2015-4788 CVE-2015-4789 CVE-2015-4790 CVE-2016-0682 \ |
| 54 | CVE-2016-0689 CVE-2016-0692 CVE-2016-0694 CVE-2016-3418 CVE-2020-2981" |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 55 | |
| 56 | #### CPE update pending #### |
| 57 | |
| 58 | # groff:groff-native https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2000-0803 |
| 59 | # Appears it was fixed in https://git.savannah.gnu.org/cgit/groff.git/commit/?id=07f95f1674217275ed4612f1dcaa95a88435c6a7 |
| 60 | # so from 1.17 onwards. Reported to the database for update by RP 2021/5/9. Update accepted 2021/5/10. |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 61 | #CVE_CHECK_IGNORE += "CVE-2000-0803" |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 62 | |
| 63 | |
| 64 | |
| 65 | #### Upstream still working on #### |
| 66 | |
| 67 | # qemu:qemu-native:qemu-system-native https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-20255 |
| 68 | # There was a proposed patch https://lists.gnu.org/archive/html/qemu-devel/2021-02/msg06098.html |
| 69 | # however qemu maintainers are sure the patch is incorrect and should not be applied. |
| 70 | |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 71 | # wget https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-31879 |
| 72 | # https://mail.gnu.org/archive/html/bug-wget/2021-02/msg00002.html |
| 73 | # No response upstream as of 2021/5/12 |
| 74 | |
| 75 | |
| 76 | |