public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH 0/5] kernel-yocto: consolidated pull request
@ 2013-02-01 14:02 Bruce Ashfield
  0 siblings, 0 replies; 18+ messages in thread
From: Bruce Ashfield @ 2013-02-01 14:02 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Richard/Saul,

This pull request is a collection of bug fixes and feature additions
for the 1.4 release. Documentation updates are underway for the new
features, but they've soaked long enough here, so I wanted to get
them out while there's lots of time to address any issues.

[PATCH 1/5] guilt: remove GIT_EXEC_BASE export

  This fixes a bug that has been reported off and on for nearly a 
  year now. I finally saw it on my local machine and was able to
  track down the cause .. and export of GIT_EXEC_BASE that is no
  longer needed. Although I may get rid of guilt shortly, it's still
  worth fixing this now.

[PATCH 2/5] kernel-yocto: make configuration audit details debug only

  This addresses [YOCTO #3415], and simply makes the full kernel
  configuration audit slightly less visible, but yet still available.

[PATCH 3/5] kernel-yocto: fix .scc and .cfg matching

  I ran into this while implementing a new feature, some local 
  SRC_URIs were matching fragments incorrectly. With this fix
  I'm back to only getting .scc and .cfg files.

[PATCH 4/5] kernel-yocto: allow multiple / shared kernel feature directories

  This is the most interesting addition of this series, and it's
  the start of solving the problem of having multiple people developing
  disjoint sets of kernel configuration blocks, or kernel features. 

  To promote the reuse and sharing of configuration fragments this change
  allows any kernel-yocto based recipe to have multiple alternate git repositories
  which provide kernel feature directory trees listed on the SRC_URI.

  These feature directories are in addition to any in-tree kernel meta data branches
  that may be available (described via the KMETA variable in linux-yocto recipes).

  Features found within these directories can be used from recipes via the
  KERNEL_FEATURES variable. Features found within a feature directory are free
  to include any other features that are available in any directories. In both
  cases the path to a feature description (a .scc file) is relative to the
  root of a given feature directory (which is how existing .scc files work)

  The search order for features is determined by the order that repositories
  appear on the SRC_URI.

  Normal SRC_URI rules apply to any repository that is added as a kernel
  feature container. A SRCREV must be supplied and it must be unpacked to
  a unique directory, which is controlled via the "destsuffic" url parameter.

  In addition to these standard requirements, any kernel feature repository
  reference should identify itself via the "type=kmeta" url parameter. If
  type=kmeta is not supplied, the repository will not be processed for
  kernel features.

  As an example, the following in a linux-yocto bbappend makes two additional
  feature directories available to KERNEL_FEATURES and fragments.

    SRC_URI += "git://git.yoctoproject.org/yocto-kernel-cache;protocol=git;branch=master;type=kmeta;name=feat1;destsuffix=kernel-cache/"
    SRC_URI += "git://${KSRC_linux_yocto_3_4};protocol=file;branch=meta;name=feat2;type=kmeta;destsuffix=kernel-features-experimental/"

    SRCREV_feat1 = "${AUTOREV}"
    SRCREV_feat2 = "${AUTOREV}"

[PATCH 5/5] kernel-yocto/linux-yocto-custom: support low bandwidth options

  To support configurations where active development is not being done within
  the oe/bitbake build environment and restricted bandwidth situations, this
  commit allows the SRC_URI to point to a kernel tgz instead of a full git
  repository.

  Outside of the upstream tgz instead of a kernel git repository, the
  restrictions, config and patch process is the same as any linux-yocto-custom
  recipe.

  An example linux-yocto-custom based recipe would have a configuration like
  this to build the 3.7 kernel, using an externally supplied config, from the
  3.7 tgz:

    SRC_URI = "http://kernel.org/pub/linux/kernel/v3.0/linux-3.7.tar.bz2"
    PV = "3.7"
    S = "${WORKDIR}/linux-3.7"
    SRC_URI[md5sum] = "5323f3faadd051e83af605a63be5ea2e"
    SRC_URI[sha256sum] = "dc08d87a579fe2918362e6666e503a95a76296419195cb499aa9dd4dbe171a9e"

  [YOCTO #2686]

Cheers,

Bruce

The following changes since commit 828b1143477da079956a5541f8cc66c07ab6a3cc:

  multilib: skip packages that provide virtual/kernel (2013-01-31 12:39:47 -0500)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib zedd/kernel-dev
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (5):
  guilt: remove GIT_EXEC_BASE export
  kernel-yocto: make configuration audit details debug only
  kernel-yocto: fix .scc and .cfg matching
  kernel-yocto: allow multiple / shared kernel feature directories
  kernel-yocto/linux-yocto-custom: support low bandwidth options

 meta/classes/kernel-yocto.bbclass                  |   77 +++++++++++++++-----
 meta/recipes-devtools/guilt/guilt-native_0.33.bb   |    3 +-
 .../kern-tools/kern-tools-native_git.bb            |    2 +-
 3 files changed, 62 insertions(+), 20 deletions(-)

-- 
1.7.10.4




^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/5] kernel-yocto: consolidated pull request
@ 2016-09-08  1:08 Bruce Ashfield
  0 siblings, 0 replies; 18+ messages in thread
From: Bruce Ashfield @ 2016-09-08  1:08 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Hi all,

Here are some fixes for the minor issues cased by the kern-tools update
and the recent 4.8 kernel introduction.

RP reported a build and footprint time increase for 4.8, that was due to
some missing kernel meta data that (re)enabled DEBUG and for the standard
kernel. commit [kernel-yocto: restore missing configuration meta data]
deals with that issue.

The commits:

  kernel-yocto: restore kernel-meta data detection for SRC_URI elements
  kernel-yocto: allow --allnoconfig and --alldefconfig as KCONFIG_MODES

Fix some issues with the compatibility of existing layers and config
fragment users. I was luckily able to fix the issues without bringing
the complexity that I was removing.

There's a small change to uvesafb to have a longer timeout on some
machines (or virtual machines) to avoid issues when performing QA
testing.

And finally, we have the 4.8-rc5 content update. I'll do one of these
a week until we get to the full 4.8 release. This can be pended for
the M3 build, but it did pass my local sanity testing.

Cheers,

Bruce

The following changes since commit ce4ea7a730a7bec257218533b7c1fcb31134e25b:

  recipetool: create: avoid extra blank lines in output recipe (2016-09-08 00:36:49 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib zedd/kernel
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (5):
  kernel-yocto: restore kernel-meta data detection for SRC_URI elements
  kernel-yocto: allow --allnoconfig and --alldefconfig as KCONFIG_MODES
  kernel-yocto: restore missing configuration meta data
  linux-yocto: update to 4.8-rc5
  linux-yocto/4.4/4.8: uvesafb: provide option to specify timeout for
    task completion

 meta/classes/kernel-yocto.bbclass                 | 15 ++++++++++-----
 meta/recipes-kernel/linux/linux-yocto-rt_4.4.bb   |  4 ++--
 meta/recipes-kernel/linux/linux-yocto-rt_4.8.bb   |  4 ++--
 meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb |  4 ++--
 meta/recipes-kernel/linux/linux-yocto-tiny_4.8.bb |  4 ++--
 meta/recipes-kernel/linux/linux-yocto_4.4.bb      | 18 +++++++++---------
 meta/recipes-kernel/linux/linux-yocto_4.8.bb      | 18 +++++++++---------
 7 files changed, 36 insertions(+), 31 deletions(-)

-- 
2.5.0



^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/5] kernel-yocto: consolidated pull request
@ 2016-11-16 14:24 Bruce Ashfield
  0 siblings, 0 replies; 18+ messages in thread
From: Bruce Ashfield @ 2016-11-16 14:24 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

Hi all,

Here is my latest set of updates to the 4.8/4.4 kernels, as well as a couple
of bug fixes to the tools.

I've included short log summaries of the changes that come with the -stable
updates in the commits themselves.

Also of note, now that 4.9 is in the latter part of the -rc cycle, I'll bring
linux-yocto-dev up to date with it, and create a versioned recipe for it, so
it can be the LTS kernel in the 2.3 release.

Cheers,

Bruce

The following changes since commit 9b1bd29ea99aa0dec51e603e4ac28e211af19765:

  maintainers.inc: remove libwnck3 recipe (2016-11-15 15:19:55 +0000)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib zedd/kernel
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (5):
  linux-yocto/4.8: fix cryptodev compilation error
  linux-yocto/4.8: update to v4.8.6-rt5
  linux-yocto/4.8: update from v4.8.6 -> v4.8.8
  linux-yocto/4.4: update to v4.4.32
  kern-tools: error checking and tree generation fixes

 .../kern-tools/kern-tools-native_git.bb              |  2 +-
 meta/recipes-kernel/linux/linux-yocto-rt_4.4.bb      |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-rt_4.8.bb      |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-tiny_4.4.bb    |  6 +++---
 meta/recipes-kernel/linux/linux-yocto-tiny_4.8.bb    |  6 +++---
 meta/recipes-kernel/linux/linux-yocto_4.4.bb         | 20 ++++++++++----------
 meta/recipes-kernel/linux/linux-yocto_4.8.bb         | 20 ++++++++++----------
 7 files changed, 33 insertions(+), 33 deletions(-)

-- 
2.5.0



^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/5] kernel-yocto: consolidated pull request
@ 2020-08-27 17:53 Bruce Ashfield
  0 siblings, 0 replies; 18+ messages in thread
From: Bruce Ashfield @ 2020-08-27 17:53 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Richard,

Here's the latest set of queued kernel changes.

Two are routine -stable updates, the other meta data change is the cherry pick
of a 5.4 change we had, that I somehow missed when creating the 5.8 config
branch. This will get rid of he intermittent reproducibility failure, which
I'll continue to debug.

The two kernel-yocto changes are features that have been requested for some
time. One simply allows an configuration audit warning to be an error (off by
default), and the other allows changes to files pointed to by .scc files to
be part of the checksum.

I checked the checksum patch as discussed earlier, and it does look like it
will work with directories that don't already exist, since if something isn't
listed already as :True, it will be added as either :True or :False based on
whether it exists when the checksum is calculated.

There's a corner case that a moved file doesn't seen to trigger a new exec of
the task, but that isn't something commonly done and something that I can look
into if it pops up. I've had this patch in my tree for ~8 months, so it is
time to get it out and about :D

Cheers,

Bruce

The following changes since commit b67303460c9da25f69b206d0bbb3fa1467857bab:

  devtool: expand SRC_URI when guessing recipe update mode (2020-08-27 08:28:03 +0100)

are available in the Git repository at:

  git://git.yoctoproject.org/poky-contrib zedd/kernel
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (5):
  linux-yocto/5.4: update to v5.4.61
  linux-yocto/5.8: update to v5.8.4
  linux-yocto/5.8: disable IKHEADERS in default builds
  kernel-yocto: checksum all modifications to available kernel fragments
    directories
  kernel-yocto: allow promotion of configuration warnings to errors

 meta/classes/kernel-yocto.bbclass             | 52 ++++++++++++++++++-
 .../linux/linux-yocto-rt_5.4.bb               |  6 +--
 .../linux/linux-yocto-rt_5.8.bb               |  6 +--
 .../linux/linux-yocto-tiny_5.4.bb             |  8 +--
 .../linux/linux-yocto-tiny_5.8.bb             |  8 +--
 meta/recipes-kernel/linux/linux-yocto_5.4.bb  | 22 ++++----
 meta/recipes-kernel/linux/linux-yocto_5.8.bb  | 22 ++++----
 7 files changed, 86 insertions(+), 38 deletions(-)

-- 
2.19.1


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/5] kernel-yocto: consolidated pull request
@ 2022-05-19 15:15 bruce.ashfield
  0 siblings, 0 replies; 18+ messages in thread
From: bruce.ashfield @ 2022-05-19 15:15 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Richard,

Here's the next round of -stable updates, and a lttng-modules fix .. just
because what fun would it be without some lttng issues :)

Local testing has passed, but we'll see if the AB manages to spot something
that I could hit.

Bruce

The following changes since commit bd66a18eaa463c2eab291fea68039bf0d61c7b8b:

  openssl: minor security upgrade 3.0.2 -> 3.0.3 (2022-05-15 08:57:16 +0100)

are available in the Git repository at:

  git://git.yoctoproject.org/poky-contrib zedd/kernel
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (5):
  linux-yocto/5.15: update to v5.15.37
  linux-yocto/5.10: update to v5.10.113
  linux-yocto/5.15: update to v5.15.38
  linux-yocto/5.10: update to v5.10.114
  lttng-modules: fix build against 5.18-rc7+

 .../linux/linux-yocto-rt_5.10.bb              |  6 +-
 .../linux/linux-yocto-rt_5.15.bb              |  6 +-
 .../linux/linux-yocto-tiny_5.10.bb            |  8 +-
 .../linux/linux-yocto-tiny_5.15.bb            |  6 +-
 meta/recipes-kernel/linux/linux-yocto_5.10.bb | 24 ++---
 meta/recipes-kernel/linux/linux-yocto_5.15.bb | 26 +++---
 ...x-__trace_sched_switch_state-5.18-rc.patch | 88 +++++++++++++++++++
 .../lttng/lttng-modules_2.13.3.bb             |  1 +
 8 files changed, 127 insertions(+), 38 deletions(-)
 create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0001-sched-tracing-fix-__trace_sched_switch_state-5.18-rc.patch

-- 
2.19.1



^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/5] kernel-yocto: consolidated pull request
@ 2024-05-30 21:44 bruce.ashfield
  0 siblings, 0 replies; 18+ messages in thread
From: bruce.ashfield @ 2024-05-30 21:44 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Richard,

A dev kernel bump to 6.10 will follow this, but I still have it under
test.

I've built core-image-kernel-dev and minimal for multiple architectures
against both musl and glibc for the kernel headers and I didn't find
any issues. Fingers crossed the AB doesn't find something I missed.

-stable updates for the LTS branches will follow in a few more days.

Cheers,

Bruce

The following changes since commit f66f8fa9f605d5dc39acb10226198b3ab40dcaa3:

  oe-build-perf-report: Add commit hash link to chart tooltip (2024-05-24 16:59:31 +0100)

are available in the Git repository at:

  https://git.yoctoproject.org/poky-contrib zedd/kernel
  https://git.yoctoproject.org/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (5):
  linux-yocto/6.6: update to v6.6.30
  linux-yocto/6.6: intel configuration changes
  linux-libc-headers: bump to v6.9
  linux-yocto/6.6: update to v6.6.32
  linux-yocto/6.6: cfg: introduce Intel NPU fragment

 meta/conf/distro/include/tcmode-default.inc   |  2 +-
 ...aders_6.6.bb => linux-libc-headers_6.9.bb} |  2 +-
 .../linux/linux-yocto-rt_6.6.bb               |  6 ++--
 .../linux/linux-yocto-tiny_6.6.bb             |  6 ++--
 meta/recipes-kernel/linux/linux-yocto_6.6.bb  | 28 +++++++++----------
 5 files changed, 22 insertions(+), 22 deletions(-)
 rename meta/recipes-kernel/linux-libc-headers/{linux-libc-headers_6.6.bb => linux-libc-headers_6.9.bb} (83%)

-- 
2.39.2



^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/5] kernel-yocto: consolidated pull request
@ 2024-09-06 17:45 bruce.ashfield
  0 siblings, 0 replies; 18+ messages in thread
From: bruce.ashfield @ 2024-09-06 17:45 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Richard,

Here's the next set of -stable updates for the kernel's in master.

I'm continuing to watch 6.10 in case we need to jump to 6.11 for
the release.

-stable updates for the other branches will be sent shortly as
well.

Bruce


The following changes since commit bd2159719c08c101a25a5012fc684163135653e6:

  patchtest: test_non_auh_upgrade: improve parse logic (2024-09-01 12:32:37 +0100)

are available in the Git repository at:

  https://git.yoctoproject.org/poky-contrib zedd/kernel
  https://git.yoctoproject.org/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (5):
  linux-yocto/6.6: update to v6.6.47
  linux-yocto/6.10: fix CONFIG_PWM_SYSFS config warning
  linux-yocto/6.10: update to v6.10.7
  linux-yocto/6.10: update to v6.10.8
  linux-yocto/6.6: update to v6.6.49

 .../linux/linux-yocto-rt_6.10.bb              |  6 ++--
 .../linux/linux-yocto-rt_6.6.bb               |  6 ++--
 .../linux/linux-yocto-tiny_6.10.bb            |  6 ++--
 .../linux/linux-yocto-tiny_6.6.bb             |  6 ++--
 meta/recipes-kernel/linux/linux-yocto_6.10.bb | 28 +++++++++----------
 meta/recipes-kernel/linux/linux-yocto_6.6.bb  | 28 +++++++++----------
 6 files changed, 40 insertions(+), 40 deletions(-)

-- 
2.39.2



^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/5] kernel-yocto: consolidated pull request
@ 2025-02-09 23:56 bruce.ashfield
  2025-02-09 23:56 ` [PATCH 1/5] kernel: drop 6.6 reference kernels bruce.ashfield
                   ` (4 more replies)
  0 siblings, 5 replies; 18+ messages in thread
From: bruce.ashfield @ 2025-02-09 23:56 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Richard,

Here's the final preparation patch for the LTS release and
reference kernel versions.

I've tested 6.13 in linux-yocto-dev and it passed, I've moved
onto 6.14, so I'll update to it for the dev kernel in the
release, but that comes later this week as my testing has a
few issues I need to look into.

I removed the 6.6 references I found, and updated thing to
6.12 .. but I could have missed something, but they are an
easy fix if the AB does trip over something.

I also found a stale 6.10 cve file, so I'm removing it in this
series.

These are on top of poky and a single series, since it is
easier than two separate sends on top of OE core and poky,
but if we'd rather they be split, I can do that.

Bruce

The following changes since commit 4f6b1440af3eb7c4b659d9b0329592180ccea5fe:

  scripts/buildperf: Add chart tabs for commit count/time (2025-02-09 18:42:48 -0500)

are available in the Git repository at:

  https://git.yoctoproject.org/poky-contrib zedd/kernel
  https://git.yoctoproject.org/poky-contrib/log/?h=zedd/kernel

Bruce Ashfield (5):
  kernel: drop 6.6 reference kernels
  kernel: remove unused 6.10 CVE exclusion file
  linux-yocto/6.12: update to v6.12.12
  poky-alt: switch preferred kernel to 6.12
  yocto-bsp: drop linux-yocto 6.6 bbappend

 .../include/poky-distro-alt-test-config.inc   |    2 +-
 .../linux/linux-yocto_6.6.bbappend            |   21 -
 .../linux/cve-exclusion_6.10.inc              | 6660 -----------------
 .../linux/cve-exclusion_6.6.inc               | 6660 -----------------
 .../linux/linux-yocto-rt_6.12.bb              |    6 +-
 .../linux/linux-yocto-rt_6.6.bb               |   48 -
 .../linux/linux-yocto-tiny_6.12.bb            |    6 +-
 .../linux/linux-yocto-tiny_6.6.bb             |   33 -
 meta/recipes-kernel/linux/linux-yocto_6.12.bb |   28 +-
 meta/recipes-kernel/linux/linux-yocto_6.6.bb  |   74 -
 10 files changed, 21 insertions(+), 13517 deletions(-)
 delete mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_6.6.bbappend
 delete mode 100644 meta/recipes-kernel/linux/cve-exclusion_6.10.inc
 delete mode 100644 meta/recipes-kernel/linux/cve-exclusion_6.6.inc
 delete mode 100644 meta/recipes-kernel/linux/linux-yocto-rt_6.6.bb
 delete mode 100644 meta/recipes-kernel/linux/linux-yocto-tiny_6.6.bb
 delete mode 100644 meta/recipes-kernel/linux/linux-yocto_6.6.bb

-- 
2.39.2



^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 1/5] kernel: drop 6.6 reference kernels
  2025-02-09 23:56 [PATCH 0/5] kernel-yocto: consolidated pull request bruce.ashfield
@ 2025-02-09 23:56 ` bruce.ashfield
  2025-02-10  0:13   ` Bruce Ashfield
  2025-02-09 23:56 ` [PATCH 2/5] kernel: remove unused 6.10 CVE exclusion file bruce.ashfield
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 18+ messages in thread
From: bruce.ashfield @ 2025-02-09 23:56 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Dropping the 6.6 reference kernel as the upcoming LTS will use
6.12 as the main reference with 6.13+ as the -dev kernel.

6.6 will not be supported upstream for the duration of the
LTS release, so droping it now to avoid uncessary mid-release
churn.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 .../linux/cve-exclusion_6.6.inc               | 6660 -----------------
 .../linux/linux-yocto-rt_6.6.bb               |   48 -
 .../linux/linux-yocto-tiny_6.6.bb             |   33 -
 meta/recipes-kernel/linux/linux-yocto_6.6.bb  |   74 -
 4 files changed, 6815 deletions(-)
 delete mode 100644 meta/recipes-kernel/linux/cve-exclusion_6.6.inc
 delete mode 100644 meta/recipes-kernel/linux/linux-yocto-rt_6.6.bb
 delete mode 100644 meta/recipes-kernel/linux/linux-yocto-tiny_6.6.bb
 delete mode 100644 meta/recipes-kernel/linux/linux-yocto_6.6.bb

diff --git a/meta/recipes-kernel/linux/cve-exclusion_6.6.inc b/meta/recipes-kernel/linux/cve-exclusion_6.6.inc
deleted file mode 100644
index 32a0701edf..0000000000
--- a/meta/recipes-kernel/linux/cve-exclusion_6.6.inc
+++ /dev/null
@@ -1,6660 +0,0 @@
-
-# Auto-generated CVE metadata, DO NOT EDIT BY HAND.
-# Generated at 2024-06-06 20:41:33.044442+00:00 for version 6.6.32
-
-#python check_kernel_cve_status_version() {
-#    this_version = "6.6.29"
-#    kernel_version = d.getVar("LINUX_VERSION")
-#    if kernel_version != this_version:
-#        bb.warn("Kernel CVE status needs updating: generated for %s but kernel is %s" % (this_version, kernel_version))
-#}
-#do_cve_check[prefuncs] += "check_kernel_cve_status_version"
-
-CVE_STATUS[CVE-2003-1604] = "fixed-version: Fixed from version 2.6.12rc2"
-
-CVE_STATUS[CVE-2004-0230] = "fixed-version: Fixed from version 3.6rc1"
-
-# CVE-2005-3660 has no known resolution
-
-CVE_STATUS[CVE-2006-3635] = "fixed-version: Fixed from version 2.6.26rc5"
-
-CVE_STATUS[CVE-2006-5331] = "fixed-version: Fixed from version 2.6.19rc3"
-
-CVE_STATUS[CVE-2006-6128] = "fixed-version: Fixed from version 2.6.19rc2"
-
-# CVE-2007-3719 has no known resolution
-
-CVE_STATUS[CVE-2007-4774] = "fixed-version: Fixed from version 2.6.12rc2"
-
-CVE_STATUS[CVE-2007-6761] = "fixed-version: Fixed from version 2.6.24rc6"
-
-CVE_STATUS[CVE-2007-6762] = "fixed-version: Fixed from version 2.6.20rc5"
-
-# CVE-2008-2544 has no known resolution
-
-# CVE-2008-4609 has no known resolution
-
-CVE_STATUS[CVE-2008-7316] = "fixed-version: Fixed from version 2.6.25rc1"
-
-CVE_STATUS[CVE-2009-2692] = "fixed-version: Fixed from version 2.6.31rc6"
-
-CVE_STATUS[CVE-2010-0008] = "fixed-version: Fixed from version 2.6.23rc9"
-
-CVE_STATUS[CVE-2010-3432] = "fixed-version: Fixed from version 2.6.36rc5"
-
-# CVE-2010-4563 has no known resolution
-
-CVE_STATUS[CVE-2010-4648] = "fixed-version: Fixed from version 2.6.37rc6"
-
-CVE_STATUS[CVE-2010-5313] = "fixed-version: Fixed from version 2.6.38rc1"
-
-# CVE-2010-5321 has no known resolution
-
-CVE_STATUS[CVE-2010-5328] = "fixed-version: Fixed from version 2.6.35rc1"
-
-CVE_STATUS[CVE-2010-5329] = "fixed-version: Fixed from version 2.6.39rc1"
-
-CVE_STATUS[CVE-2010-5331] = "fixed-version: Fixed from version 2.6.34rc7"
-
-CVE_STATUS[CVE-2010-5332] = "fixed-version: Fixed from version 2.6.37rc1"
-
-CVE_STATUS[CVE-2011-4098] = "fixed-version: Fixed from version 3.2rc1"
-
-CVE_STATUS[CVE-2011-4131] = "fixed-version: Fixed from version 3.3rc1"
-
-CVE_STATUS[CVE-2011-4915] = "fixed-version: Fixed from version 3.2rc1"
-
-# CVE-2011-4916 has no known resolution
-
-# CVE-2011-4917 has no known resolution
-
-CVE_STATUS[CVE-2011-5321] = "fixed-version: Fixed from version 3.2rc1"
-
-CVE_STATUS[CVE-2011-5327] = "fixed-version: Fixed from version 3.1rc1"
-
-CVE_STATUS[CVE-2012-0957] = "fixed-version: Fixed from version 3.7rc2"
-
-CVE_STATUS[CVE-2012-2119] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-2136] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-2137] = "fixed-version: Fixed from version 3.5rc2"
-
-CVE_STATUS[CVE-2012-2313] = "fixed-version: Fixed from version 3.4rc6"
-
-CVE_STATUS[CVE-2012-2319] = "fixed-version: Fixed from version 3.4rc6"
-
-CVE_STATUS[CVE-2012-2372] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2012-2375] = "fixed-version: Fixed from version 3.4rc1"
-
-CVE_STATUS[CVE-2012-2390] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-2669] = "fixed-version: Fixed from version 3.5rc4"
-
-CVE_STATUS[CVE-2012-2744] = "fixed-version: Fixed from version 2.6.34rc1"
-
-CVE_STATUS[CVE-2012-2745] = "fixed-version: Fixed from version 3.4rc3"
-
-CVE_STATUS[CVE-2012-3364] = "fixed-version: Fixed from version 3.5rc6"
-
-CVE_STATUS[CVE-2012-3375] = "fixed-version: Fixed from version 3.4rc5"
-
-CVE_STATUS[CVE-2012-3400] = "fixed-version: Fixed from version 3.5rc5"
-
-CVE_STATUS[CVE-2012-3412] = "fixed-version: Fixed from version 3.6rc2"
-
-CVE_STATUS[CVE-2012-3430] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-3510] = "fixed-version: Fixed from version 2.6.19rc4"
-
-CVE_STATUS[CVE-2012-3511] = "fixed-version: Fixed from version 3.5rc6"
-
-CVE_STATUS[CVE-2012-3520] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-3552] = "fixed-version: Fixed from version 3.0rc1"
-
-# Skipping CVE-2012-4220, no affected_versions
-
-# Skipping CVE-2012-4221, no affected_versions
-
-# Skipping CVE-2012-4222, no affected_versions
-
-CVE_STATUS[CVE-2012-4398] = "fixed-version: Fixed from version 3.4rc1"
-
-CVE_STATUS[CVE-2012-4444] = "fixed-version: Fixed from version 2.6.36rc4"
-
-CVE_STATUS[CVE-2012-4461] = "fixed-version: Fixed from version 3.7rc6"
-
-CVE_STATUS[CVE-2012-4467] = "fixed-version: Fixed from version 3.6rc5"
-
-CVE_STATUS[CVE-2012-4508] = "fixed-version: Fixed from version 3.7rc3"
-
-CVE_STATUS[CVE-2012-4530] = "fixed-version: Fixed from version 3.8rc1"
-
-# CVE-2012-4542 has no known resolution
-
-CVE_STATUS[CVE-2012-4565] = "fixed-version: Fixed from version 3.7rc4"
-
-CVE_STATUS[CVE-2012-5374] = "fixed-version: Fixed from version 3.8rc1"
-
-CVE_STATUS[CVE-2012-5375] = "fixed-version: Fixed from version 3.8rc1"
-
-CVE_STATUS[CVE-2012-5517] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-6536] = "fixed-version: Fixed from version 3.6rc7"
-
-CVE_STATUS[CVE-2012-6537] = "fixed-version: Fixed from version 3.6rc7"
-
-CVE_STATUS[CVE-2012-6538] = "fixed-version: Fixed from version 3.6rc7"
-
-CVE_STATUS[CVE-2012-6539] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6540] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6541] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6542] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6543] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6544] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6545] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6546] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6547] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-6548] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-6549] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-6638] = "fixed-version: Fixed from version 3.3rc1"
-
-CVE_STATUS[CVE-2012-6647] = "fixed-version: Fixed from version 3.6rc2"
-
-CVE_STATUS[CVE-2012-6657] = "fixed-version: Fixed from version 3.6"
-
-CVE_STATUS[CVE-2012-6689] = "fixed-version: Fixed from version 3.6rc5"
-
-CVE_STATUS[CVE-2012-6701] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-6703] = "fixed-version: Fixed from version 3.7rc1"
-
-CVE_STATUS[CVE-2012-6704] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-6712] = "fixed-version: Fixed from version 3.4rc1"
-
-CVE_STATUS[CVE-2013-0160] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-0190] = "fixed-version: Fixed from version 3.8rc5"
-
-CVE_STATUS[CVE-2013-0216] = "fixed-version: Fixed from version 3.8rc7"
-
-CVE_STATUS[CVE-2013-0217] = "fixed-version: Fixed from version 3.8rc7"
-
-CVE_STATUS[CVE-2013-0228] = "fixed-version: Fixed from version 3.8"
-
-CVE_STATUS[CVE-2013-0231] = "fixed-version: Fixed from version 3.8rc7"
-
-CVE_STATUS[CVE-2013-0268] = "fixed-version: Fixed from version 3.8rc6"
-
-CVE_STATUS[CVE-2013-0290] = "fixed-version: Fixed from version 3.8"
-
-CVE_STATUS[CVE-2013-0309] = "fixed-version: Fixed from version 3.7rc1"
-
-CVE_STATUS[CVE-2013-0310] = "fixed-version: Fixed from version 3.5"
-
-CVE_STATUS[CVE-2013-0311] = "fixed-version: Fixed from version 3.7rc8"
-
-CVE_STATUS[CVE-2013-0313] = "fixed-version: Fixed from version 3.8rc5"
-
-CVE_STATUS[CVE-2013-0343] = "fixed-version: Fixed from version 3.11rc7"
-
-CVE_STATUS[CVE-2013-0349] = "fixed-version: Fixed from version 3.8rc6"
-
-CVE_STATUS[CVE-2013-0871] = "fixed-version: Fixed from version 3.8rc5"
-
-CVE_STATUS[CVE-2013-0913] = "fixed-version: Fixed from version 3.9rc4"
-
-CVE_STATUS[CVE-2013-0914] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1059] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-1763] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-1767] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-1772] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2013-1773] = "fixed-version: Fixed from version 3.3rc1"
-
-CVE_STATUS[CVE-2013-1774] = "fixed-version: Fixed from version 3.8rc5"
-
-CVE_STATUS[CVE-2013-1792] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1796] = "fixed-version: Fixed from version 3.9rc4"
-
-CVE_STATUS[CVE-2013-1797] = "fixed-version: Fixed from version 3.9rc4"
-
-CVE_STATUS[CVE-2013-1798] = "fixed-version: Fixed from version 3.9rc4"
-
-CVE_STATUS[CVE-2013-1819] = "fixed-version: Fixed from version 3.8rc6"
-
-CVE_STATUS[CVE-2013-1826] = "fixed-version: Fixed from version 3.6rc7"
-
-CVE_STATUS[CVE-2013-1827] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2013-1828] = "fixed-version: Fixed from version 3.9rc2"
-
-CVE_STATUS[CVE-2013-1848] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1858] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1860] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1928] = "fixed-version: Fixed from version 3.7rc3"
-
-CVE_STATUS[CVE-2013-1929] = "fixed-version: Fixed from version 3.9rc6"
-
-# Skipping CVE-2013-1935, no affected_versions
-
-CVE_STATUS[CVE-2013-1943] = "fixed-version: Fixed from version 3.0rc1"
-
-CVE_STATUS[CVE-2013-1956] = "fixed-version: Fixed from version 3.9rc5"
-
-CVE_STATUS[CVE-2013-1957] = "fixed-version: Fixed from version 3.9rc5"
-
-CVE_STATUS[CVE-2013-1958] = "fixed-version: Fixed from version 3.9rc5"
-
-CVE_STATUS[CVE-2013-1959] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-1979] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2015] = "fixed-version: Fixed from version 3.8rc2"
-
-CVE_STATUS[CVE-2013-2017] = "fixed-version: Fixed from version 2.6.34"
-
-CVE_STATUS[CVE-2013-2058] = "fixed-version: Fixed from version 3.8rc4"
-
-CVE_STATUS[CVE-2013-2094] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2128] = "fixed-version: Fixed from version 2.6.34rc4"
-
-CVE_STATUS[CVE-2013-2140] = "fixed-version: Fixed from version 3.11rc3"
-
-CVE_STATUS[CVE-2013-2141] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2146] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2147] = "fixed-version: Fixed from version 3.12rc3"
-
-CVE_STATUS[CVE-2013-2148] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-2164] = "fixed-version: Fixed from version 3.11rc1"
-
-# Skipping CVE-2013-2188, no affected_versions
-
-CVE_STATUS[CVE-2013-2206] = "fixed-version: Fixed from version 3.9rc4"
-
-# Skipping CVE-2013-2224, no affected_versions
-
-CVE_STATUS[CVE-2013-2232] = "fixed-version: Fixed from version 3.10"
-
-CVE_STATUS[CVE-2013-2234] = "fixed-version: Fixed from version 3.10"
-
-CVE_STATUS[CVE-2013-2237] = "fixed-version: Fixed from version 3.9rc6"
-
-# Skipping CVE-2013-2239, no affected_versions
-
-CVE_STATUS[CVE-2013-2546] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-2547] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-2548] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-2596] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2634] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-2635] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-2636] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-2850] = "fixed-version: Fixed from version 3.10rc4"
-
-CVE_STATUS[CVE-2013-2851] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-2852] = "fixed-version: Fixed from version 3.10rc6"
-
-CVE_STATUS[CVE-2013-2888] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2889] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2890] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2891] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2892] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2893] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2894] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2895] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2896] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2897] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2898] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2899] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2929] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-2930] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-3076] = "fixed-version: Fixed from version 3.9"
-
-CVE_STATUS[CVE-2013-3222] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3223] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3224] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3225] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3226] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3227] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3228] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3229] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3230] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3231] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3232] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3233] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3234] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3235] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3236] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3237] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3301] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3302] = "fixed-version: Fixed from version 3.8rc3"
-
-CVE_STATUS[CVE-2013-4125] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4127] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4129] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4162] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4163] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4205] = "fixed-version: Fixed from version 3.11rc5"
-
-CVE_STATUS[CVE-2013-4220] = "fixed-version: Fixed from version 3.10rc4"
-
-CVE_STATUS[CVE-2013-4247] = "fixed-version: Fixed from version 3.10rc5"
-
-CVE_STATUS[CVE-2013-4254] = "fixed-version: Fixed from version 3.11rc6"
-
-CVE_STATUS[CVE-2013-4270] = "fixed-version: Fixed from version 3.12rc4"
-
-CVE_STATUS[CVE-2013-4299] = "fixed-version: Fixed from version 3.12rc6"
-
-CVE_STATUS[CVE-2013-4300] = "fixed-version: Fixed from version 3.11"
-
-CVE_STATUS[CVE-2013-4312] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2013-4343] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-4345] = "fixed-version: Fixed from version 3.13rc2"
-
-CVE_STATUS[CVE-2013-4348] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-4350] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-4387] = "fixed-version: Fixed from version 3.12rc4"
-
-CVE_STATUS[CVE-2013-4470] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2013-4483] = "fixed-version: Fixed from version 3.10rc1"
-
-CVE_STATUS[CVE-2013-4511] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4512] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4513] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4514] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4515] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4516] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4563] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-4579] = "fixed-version: Fixed from version 3.13rc7"
-
-CVE_STATUS[CVE-2013-4587] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-4588] = "fixed-version: Fixed from version 2.6.33rc4"
-
-CVE_STATUS[CVE-2013-4591] = "fixed-version: Fixed from version 3.8rc1"
-
-CVE_STATUS[CVE-2013-4592] = "fixed-version: Fixed from version 3.7rc1"
-
-# Skipping CVE-2013-4737, no affected_versions
-
-# Skipping CVE-2013-4738, no affected_versions
-
-# Skipping CVE-2013-4739, no affected_versions
-
-CVE_STATUS[CVE-2013-5634] = "fixed-version: Fixed from version 3.10rc5"
-
-CVE_STATUS[CVE-2013-6282] = "fixed-version: Fixed from version 3.6rc6"
-
-CVE_STATUS[CVE-2013-6367] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-6368] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-6376] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-6378] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-6380] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-6381] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-6382] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-6383] = "fixed-version: Fixed from version 3.12"
-
-# Skipping CVE-2013-6392, no affected_versions
-
-CVE_STATUS[CVE-2013-6431] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-6432] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-6885] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2013-7026] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7027] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2013-7263] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7264] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7265] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7266] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7267] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7268] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7269] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7270] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7271] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7281] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7339] = "fixed-version: Fixed from version 3.13rc7"
-
-CVE_STATUS[CVE-2013-7348] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7421] = "fixed-version: Fixed from version 3.19rc1"
-
-# CVE-2013-7445 has no known resolution
-
-CVE_STATUS[CVE-2013-7446] = "fixed-version: Fixed from version 4.4rc4"
-
-CVE_STATUS[CVE-2013-7470] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2014-0038] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2014-0049] = "fixed-version: Fixed from version 3.14rc5"
-
-CVE_STATUS[CVE-2014-0055] = "fixed-version: Fixed from version 3.14"
-
-CVE_STATUS[CVE-2014-0069] = "fixed-version: Fixed from version 3.14rc4"
-
-CVE_STATUS[CVE-2014-0077] = "fixed-version: Fixed from version 3.14"
-
-CVE_STATUS[CVE-2014-0100] = "fixed-version: Fixed from version 3.14rc7"
-
-CVE_STATUS[CVE-2014-0101] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-0102] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-0131] = "fixed-version: Fixed from version 3.14rc7"
-
-CVE_STATUS[CVE-2014-0155] = "fixed-version: Fixed from version 3.15rc2"
-
-CVE_STATUS[CVE-2014-0181] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2014-0196] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2014-0203] = "fixed-version: Fixed from version 2.6.33rc5"
-
-CVE_STATUS[CVE-2014-0205] = "fixed-version: Fixed from version 2.6.37rc1"
-
-CVE_STATUS[CVE-2014-0206] = "fixed-version: Fixed from version 3.16rc3"
-
-# Skipping CVE-2014-0972, no affected_versions
-
-CVE_STATUS[CVE-2014-1438] = "fixed-version: Fixed from version 3.13"
-
-CVE_STATUS[CVE-2014-1444] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2014-1445] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2014-1446] = "fixed-version: Fixed from version 3.13rc7"
-
-CVE_STATUS[CVE-2014-1690] = "fixed-version: Fixed from version 3.13rc8"
-
-CVE_STATUS[CVE-2014-1737] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2014-1738] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2014-1739] = "fixed-version: Fixed from version 3.15rc6"
-
-CVE_STATUS[CVE-2014-1874] = "fixed-version: Fixed from version 3.14rc2"
-
-CVE_STATUS[CVE-2014-2038] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2014-2039] = "fixed-version: Fixed from version 3.14rc3"
-
-CVE_STATUS[CVE-2014-2309] = "fixed-version: Fixed from version 3.14rc7"
-
-CVE_STATUS[CVE-2014-2523] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2014-2568] = "fixed-version: Fixed from version 3.14"
-
-CVE_STATUS[CVE-2014-2580] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-2672] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-2673] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-2678] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-2706] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-2739] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-2851] = "fixed-version: Fixed from version 3.15rc2"
-
-CVE_STATUS[CVE-2014-2889] = "fixed-version: Fixed from version 3.2rc7"
-
-CVE_STATUS[CVE-2014-3122] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-3144] = "fixed-version: Fixed from version 3.15rc2"
-
-CVE_STATUS[CVE-2014-3145] = "fixed-version: Fixed from version 3.15rc2"
-
-CVE_STATUS[CVE-2014-3153] = "fixed-version: Fixed from version 3.15"
-
-CVE_STATUS[CVE-2014-3180] = "fixed-version: Fixed from version 3.17rc4"
-
-CVE_STATUS[CVE-2014-3181] = "fixed-version: Fixed from version 3.17rc3"
-
-CVE_STATUS[CVE-2014-3182] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-3183] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-3184] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-3185] = "fixed-version: Fixed from version 3.17rc3"
-
-CVE_STATUS[CVE-2014-3186] = "fixed-version: Fixed from version 3.17rc3"
-
-# Skipping CVE-2014-3519, no affected_versions
-
-CVE_STATUS[CVE-2014-3534] = "fixed-version: Fixed from version 3.16rc7"
-
-CVE_STATUS[CVE-2014-3535] = "fixed-version: Fixed from version 2.6.36rc1"
-
-CVE_STATUS[CVE-2014-3601] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-3610] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-3611] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-3631] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-3645] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2014-3646] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-3647] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-3673] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-3687] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-3688] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-3690] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-3917] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-3940] = "fixed-version: Fixed from version 3.15"
-
-CVE_STATUS[CVE-2014-4014] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-4027] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2014-4157] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-4171] = "fixed-version: Fixed from version 3.16rc3"
-
-# Skipping CVE-2014-4322, no affected_versions
-
-# Skipping CVE-2014-4323, no affected_versions
-
-CVE_STATUS[CVE-2014-4508] = "fixed-version: Fixed from version 3.16rc3"
-
-CVE_STATUS[CVE-2014-4608] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-4611] = "fixed-version: Fixed from version 3.16rc3"
-
-CVE_STATUS[CVE-2014-4652] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4653] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4654] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4655] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4656] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4667] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-4699] = "fixed-version: Fixed from version 3.16rc4"
-
-CVE_STATUS[CVE-2014-4943] = "fixed-version: Fixed from version 3.16rc6"
-
-CVE_STATUS[CVE-2014-5045] = "fixed-version: Fixed from version 3.16rc7"
-
-CVE_STATUS[CVE-2014-5077] = "fixed-version: Fixed from version 3.16"
-
-CVE_STATUS[CVE-2014-5206] = "fixed-version: Fixed from version 3.17rc1"
-
-CVE_STATUS[CVE-2014-5207] = "fixed-version: Fixed from version 3.17rc1"
-
-# Skipping CVE-2014-5332, no affected_versions
-
-CVE_STATUS[CVE-2014-5471] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-5472] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-6410] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-6416] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-6417] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-6418] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-7145] = "fixed-version: Fixed from version 3.17rc2"
-
-# Skipping CVE-2014-7207, no affected_versions
-
-CVE_STATUS[CVE-2014-7283] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-7284] = "fixed-version: Fixed from version 3.15rc7"
-
-CVE_STATUS[CVE-2014-7822] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-7825] = "fixed-version: Fixed from version 3.18rc3"
-
-CVE_STATUS[CVE-2014-7826] = "fixed-version: Fixed from version 3.18rc3"
-
-CVE_STATUS[CVE-2014-7841] = "fixed-version: Fixed from version 3.18rc5"
-
-CVE_STATUS[CVE-2014-7842] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-7843] = "fixed-version: Fixed from version 3.18rc5"
-
-CVE_STATUS[CVE-2014-7970] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-7975] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-8086] = "fixed-version: Fixed from version 3.18rc3"
-
-CVE_STATUS[CVE-2014-8133] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-8134] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-8159] = "fixed-version: Fixed from version 4.0rc7"
-
-CVE_STATUS[CVE-2014-8160] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-8171] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2014-8172] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2014-8173] = "fixed-version: Fixed from version 3.13rc5"
-
-# Skipping CVE-2014-8181, no affected_versions
-
-CVE_STATUS[CVE-2014-8369] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-8480] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-8481] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-8559] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-8709] = "fixed-version: Fixed from version 3.14rc3"
-
-CVE_STATUS[CVE-2014-8884] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-8989] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9090] = "fixed-version: Fixed from version 3.18rc6"
-
-CVE_STATUS[CVE-2014-9322] = "fixed-version: Fixed from version 3.18rc6"
-
-CVE_STATUS[CVE-2014-9419] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9420] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9428] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9529] = "fixed-version: Fixed from version 3.19rc4"
-
-CVE_STATUS[CVE-2014-9584] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9585] = "fixed-version: Fixed from version 3.19rc4"
-
-CVE_STATUS[CVE-2014-9644] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9683] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9710] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9715] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-9717] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2014-9728] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9729] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9730] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9731] = "fixed-version: Fixed from version 3.19rc3"
-
-# Skipping CVE-2014-9777, no affected_versions
-
-# Skipping CVE-2014-9778, no affected_versions
-
-# Skipping CVE-2014-9779, no affected_versions
-
-# Skipping CVE-2014-9780, no affected_versions
-
-# Skipping CVE-2014-9781, no affected_versions
-
-# Skipping CVE-2014-9782, no affected_versions
-
-# Skipping CVE-2014-9783, no affected_versions
-
-# Skipping CVE-2014-9784, no affected_versions
-
-# Skipping CVE-2014-9785, no affected_versions
-
-# Skipping CVE-2014-9786, no affected_versions
-
-# Skipping CVE-2014-9787, no affected_versions
-
-# Skipping CVE-2014-9788, no affected_versions
-
-# Skipping CVE-2014-9789, no affected_versions
-
-CVE_STATUS[CVE-2014-9803] = "fixed-version: Fixed from version 3.16rc1"
-
-# Skipping CVE-2014-9863, no affected_versions
-
-# Skipping CVE-2014-9864, no affected_versions
-
-# Skipping CVE-2014-9865, no affected_versions
-
-# Skipping CVE-2014-9866, no affected_versions
-
-# Skipping CVE-2014-9867, no affected_versions
-
-# Skipping CVE-2014-9868, no affected_versions
-
-# Skipping CVE-2014-9869, no affected_versions
-
-CVE_STATUS[CVE-2014-9870] = "fixed-version: Fixed from version 3.11rc1"
-
-# Skipping CVE-2014-9871, no affected_versions
-
-# Skipping CVE-2014-9872, no affected_versions
-
-# Skipping CVE-2014-9873, no affected_versions
-
-# Skipping CVE-2014-9874, no affected_versions
-
-# Skipping CVE-2014-9875, no affected_versions
-
-# Skipping CVE-2014-9876, no affected_versions
-
-# Skipping CVE-2014-9877, no affected_versions
-
-# Skipping CVE-2014-9878, no affected_versions
-
-# Skipping CVE-2014-9879, no affected_versions
-
-# Skipping CVE-2014-9880, no affected_versions
-
-# Skipping CVE-2014-9881, no affected_versions
-
-# Skipping CVE-2014-9882, no affected_versions
-
-# Skipping CVE-2014-9883, no affected_versions
-
-# Skipping CVE-2014-9884, no affected_versions
-
-# Skipping CVE-2014-9885, no affected_versions
-
-# Skipping CVE-2014-9886, no affected_versions
-
-# Skipping CVE-2014-9887, no affected_versions
-
-CVE_STATUS[CVE-2014-9888] = "fixed-version: Fixed from version 3.13rc1"
-
-# Skipping CVE-2014-9889, no affected_versions
-
-# Skipping CVE-2014-9890, no affected_versions
-
-# Skipping CVE-2014-9891, no affected_versions
-
-# Skipping CVE-2014-9892, no affected_versions
-
-# Skipping CVE-2014-9893, no affected_versions
-
-# Skipping CVE-2014-9894, no affected_versions
-
-CVE_STATUS[CVE-2014-9895] = "fixed-version: Fixed from version 3.11rc1"
-
-# Skipping CVE-2014-9896, no affected_versions
-
-# Skipping CVE-2014-9897, no affected_versions
-
-# Skipping CVE-2014-9898, no affected_versions
-
-# Skipping CVE-2014-9899, no affected_versions
-
-# Skipping CVE-2014-9900, no affected_versions
-
-CVE_STATUS[CVE-2014-9903] = "fixed-version: Fixed from version 3.14rc4"
-
-CVE_STATUS[CVE-2014-9904] = "fixed-version: Fixed from version 3.17rc1"
-
-CVE_STATUS[CVE-2014-9914] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-9922] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-9940] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2015-0239] = "fixed-version: Fixed from version 3.19rc6"
-
-CVE_STATUS[CVE-2015-0274] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2015-0275] = "fixed-version: Fixed from version 4.1rc1"
-
-# Skipping CVE-2015-0777, no affected_versions
-
-# Skipping CVE-2015-1328, no affected_versions
-
-CVE_STATUS[CVE-2015-1333] = "fixed-version: Fixed from version 4.2rc5"
-
-CVE_STATUS[CVE-2015-1339] = "fixed-version: Fixed from version 4.4rc5"
-
-CVE_STATUS[CVE-2015-1350] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2015-1420] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-1421] = "fixed-version: Fixed from version 3.19rc7"
-
-CVE_STATUS[CVE-2015-1465] = "fixed-version: Fixed from version 3.19rc7"
-
-CVE_STATUS[CVE-2015-1573] = "fixed-version: Fixed from version 3.19rc5"
-
-CVE_STATUS[CVE-2015-1593] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-1805] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2015-2041] = "fixed-version: Fixed from version 3.19rc7"
-
-CVE_STATUS[CVE-2015-2042] = "fixed-version: Fixed from version 3.19"
-
-CVE_STATUS[CVE-2015-2150] = "fixed-version: Fixed from version 4.0rc4"
-
-CVE_STATUS[CVE-2015-2666] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-2672] = "fixed-version: Fixed from version 4.0rc3"
-
-CVE_STATUS[CVE-2015-2686] = "fixed-version: Fixed from version 4.0rc6"
-
-CVE_STATUS[CVE-2015-2830] = "fixed-version: Fixed from version 4.0rc3"
-
-# CVE-2015-2877 has no known resolution
-
-CVE_STATUS[CVE-2015-2922] = "fixed-version: Fixed from version 4.0rc7"
-
-CVE_STATUS[CVE-2015-2925] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2015-3212] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2015-3214] = "fixed-version: Fixed from version 2.6.33rc8"
-
-CVE_STATUS[CVE-2015-3288] = "fixed-version: Fixed from version 4.2rc2"
-
-CVE_STATUS[CVE-2015-3290] = "fixed-version: Fixed from version 4.2rc3"
-
-CVE_STATUS[CVE-2015-3291] = "fixed-version: Fixed from version 4.2rc3"
-
-CVE_STATUS[CVE-2015-3331] = "fixed-version: Fixed from version 4.0rc5"
-
-# Skipping CVE-2015-3332, no affected_versions
-
-CVE_STATUS[CVE-2015-3339] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-3636] = "fixed-version: Fixed from version 4.1rc2"
-
-CVE_STATUS[CVE-2015-4001] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-4002] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-4003] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-4004] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2015-4036] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-4167] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-4170] = "fixed-version: Fixed from version 3.13rc5"
-
-CVE_STATUS[CVE-2015-4176] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-4177] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-4178] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-4692] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2015-4700] = "fixed-version: Fixed from version 4.1rc6"
-
-CVE_STATUS[CVE-2015-5156] = "fixed-version: Fixed from version 4.2rc7"
-
-CVE_STATUS[CVE-2015-5157] = "fixed-version: Fixed from version 4.2rc3"
-
-CVE_STATUS[CVE-2015-5257] = "fixed-version: Fixed from version 4.3rc3"
-
-CVE_STATUS[CVE-2015-5283] = "fixed-version: Fixed from version 4.3rc3"
-
-CVE_STATUS[CVE-2015-5307] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-5327] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-5364] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-5366] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-5697] = "fixed-version: Fixed from version 4.2rc6"
-
-CVE_STATUS[CVE-2015-5706] = "fixed-version: Fixed from version 4.1rc3"
-
-CVE_STATUS[CVE-2015-5707] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-6252] = "fixed-version: Fixed from version 4.2rc5"
-
-CVE_STATUS[CVE-2015-6526] = "fixed-version: Fixed from version 4.1rc1"
-
-# CVE-2015-6619 has no known resolution
-
-# CVE-2015-6646 has no known resolution
-
-CVE_STATUS[CVE-2015-6937] = "fixed-version: Fixed from version 4.3rc1"
-
-# Skipping CVE-2015-7312, no affected_versions
-
-CVE_STATUS[CVE-2015-7509] = "fixed-version: Fixed from version 3.7rc1"
-
-CVE_STATUS[CVE-2015-7513] = "fixed-version: Fixed from version 4.4rc7"
-
-CVE_STATUS[CVE-2015-7515] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-7550] = "fixed-version: Fixed from version 4.4rc8"
-
-# Skipping CVE-2015-7553, no affected_versions
-
-CVE_STATUS[CVE-2015-7566] = "fixed-version: Fixed from version 4.5rc2"
-
-CVE_STATUS[CVE-2015-7613] = "fixed-version: Fixed from version 4.3rc4"
-
-CVE_STATUS[CVE-2015-7799] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-7833] = "fixed-version: Fixed from version 4.6rc6"
-
-# Skipping CVE-2015-7837, no affected_versions
-
-CVE_STATUS[CVE-2015-7872] = "fixed-version: Fixed from version 4.3rc7"
-
-CVE_STATUS[CVE-2015-7884] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-7885] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-7990] = "fixed-version: Fixed from version 4.4rc4"
-
-# Skipping CVE-2015-8019, no affected_versions
-
-CVE_STATUS[CVE-2015-8104] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8215] = "fixed-version: Fixed from version 4.0rc3"
-
-CVE_STATUS[CVE-2015-8324] = "fixed-version: Fixed from version 2.6.34rc1"
-
-CVE_STATUS[CVE-2015-8374] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8539] = "fixed-version: Fixed from version 4.4rc3"
-
-CVE_STATUS[CVE-2015-8543] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8550] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8551] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8552] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8553] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8569] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8575] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8660] = "fixed-version: Fixed from version 4.4rc4"
-
-CVE_STATUS[CVE-2015-8709] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2015-8746] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2015-8767] = "fixed-version: Fixed from version 4.3rc4"
-
-CVE_STATUS[CVE-2015-8785] = "fixed-version: Fixed from version 4.4rc5"
-
-CVE_STATUS[CVE-2015-8787] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8812] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2015-8816] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8830] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-8839] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2015-8844] = "fixed-version: Fixed from version 4.4rc3"
-
-CVE_STATUS[CVE-2015-8845] = "fixed-version: Fixed from version 4.4rc3"
-
-# Skipping CVE-2015-8937, no affected_versions
-
-# Skipping CVE-2015-8938, no affected_versions
-
-# Skipping CVE-2015-8939, no affected_versions
-
-# Skipping CVE-2015-8940, no affected_versions
-
-# Skipping CVE-2015-8941, no affected_versions
-
-# Skipping CVE-2015-8942, no affected_versions
-
-# Skipping CVE-2015-8943, no affected_versions
-
-# Skipping CVE-2015-8944, no affected_versions
-
-CVE_STATUS[CVE-2015-8950] = "fixed-version: Fixed from version 4.1rc2"
-
-CVE_STATUS[CVE-2015-8952] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2015-8953] = "fixed-version: Fixed from version 4.3"
-
-CVE_STATUS[CVE-2015-8955] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-8956] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2015-8961] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8962] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8963] = "fixed-version: Fixed from version 4.4"
-
-CVE_STATUS[CVE-2015-8964] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2015-8966] = "fixed-version: Fixed from version 4.4rc8"
-
-CVE_STATUS[CVE-2015-8967] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-8970] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2015-9004] = "fixed-version: Fixed from version 3.19rc7"
-
-CVE_STATUS[CVE-2015-9016] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2015-9289] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2016-0617] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-0723] = "fixed-version: Fixed from version 4.5rc2"
-
-CVE_STATUS[CVE-2016-0728] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-0758] = "fixed-version: Fixed from version 4.6"
-
-# Skipping CVE-2016-0774, no affected_versions
-
-CVE_STATUS[CVE-2016-0821] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2016-0823] = "fixed-version: Fixed from version 4.0rc5"
-
-CVE_STATUS[CVE-2016-10044] = "fixed-version: Fixed from version 4.8rc7"
-
-CVE_STATUS[CVE-2016-10088] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10147] = "fixed-version: Fixed from version 4.9"
-
-CVE_STATUS[CVE-2016-10150] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-10153] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10154] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10200] = "fixed-version: Fixed from version 4.9rc7"
-
-CVE_STATUS[CVE-2016-10208] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10229] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-10318] = "fixed-version: Fixed from version 4.8rc6"
-
-CVE_STATUS[CVE-2016-10723] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2016-10741] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10764] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10905] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2016-10906] = "fixed-version: Fixed from version 4.5rc6"
-
-CVE_STATUS[CVE-2016-10907] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2016-1237] = "fixed-version: Fixed from version 4.7rc5"
-
-CVE_STATUS[CVE-2016-1575] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-1576] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-1583] = "fixed-version: Fixed from version 4.7rc3"
-
-CVE_STATUS[CVE-2016-2053] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2016-2069] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2070] = "fixed-version: Fixed from version 4.4"
-
-CVE_STATUS[CVE-2016-2085] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2016-2117] = "fixed-version: Fixed from version 4.6rc5"
-
-CVE_STATUS[CVE-2016-2143] = "fixed-version: Fixed from version 4.5"
-
-CVE_STATUS[CVE-2016-2184] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-2185] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-2186] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-2187] = "fixed-version: Fixed from version 4.6rc5"
-
-CVE_STATUS[CVE-2016-2188] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2016-2383] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2016-2384] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2016-2543] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2544] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2545] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2546] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2547] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2548] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2549] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2550] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2016-2782] = "fixed-version: Fixed from version 4.5rc2"
-
-CVE_STATUS[CVE-2016-2847] = "fixed-version: Fixed from version 4.5rc1"
-
-# Skipping CVE-2016-2853, no affected_versions
-
-# Skipping CVE-2016-2854, no affected_versions
-
-CVE_STATUS[CVE-2016-3044] = "fixed-version: Fixed from version 4.5"
-
-CVE_STATUS[CVE-2016-3070] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2016-3134] = "fixed-version: Fixed from version 4.6rc2"
-
-CVE_STATUS[CVE-2016-3135] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3136] = "fixed-version: Fixed from version 4.6rc3"
-
-CVE_STATUS[CVE-2016-3137] = "fixed-version: Fixed from version 4.6rc3"
-
-CVE_STATUS[CVE-2016-3138] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3139] = "fixed-version: Fixed from version 3.17rc1"
-
-CVE_STATUS[CVE-2016-3140] = "fixed-version: Fixed from version 4.6rc3"
-
-CVE_STATUS[CVE-2016-3156] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3157] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3672] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3689] = "fixed-version: Fixed from version 4.6rc1"
-
-# Skipping CVE-2016-3695, no affected_versions
-
-# Skipping CVE-2016-3699, no affected_versions
-
-# Skipping CVE-2016-3707, no affected_versions
-
-CVE_STATUS[CVE-2016-3713] = "fixed-version: Fixed from version 4.7rc1"
-
-# CVE-2016-3775 has no known resolution
-
-# CVE-2016-3802 has no known resolution
-
-# CVE-2016-3803 has no known resolution
-
-CVE_STATUS[CVE-2016-3841] = "fixed-version: Fixed from version 4.4rc4"
-
-CVE_STATUS[CVE-2016-3857] = "fixed-version: Fixed from version 4.8rc2"
-
-CVE_STATUS[CVE-2016-3951] = "fixed-version: Fixed from version 4.5"
-
-CVE_STATUS[CVE-2016-3955] = "fixed-version: Fixed from version 4.6rc3"
-
-CVE_STATUS[CVE-2016-3961] = "fixed-version: Fixed from version 4.6rc5"
-
-CVE_STATUS[CVE-2016-4440] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4470] = "fixed-version: Fixed from version 4.7rc4"
-
-CVE_STATUS[CVE-2016-4482] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4485] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-4486] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-4557] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2016-4558] = "fixed-version: Fixed from version 4.6rc7"
-
-CVE_STATUS[CVE-2016-4565] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2016-4568] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2016-4569] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4578] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4580] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-4581] = "fixed-version: Fixed from version 4.6rc7"
-
-CVE_STATUS[CVE-2016-4794] = "fixed-version: Fixed from version 4.7rc4"
-
-CVE_STATUS[CVE-2016-4805] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-4913] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-4951] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4997] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4998] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-5195] = "fixed-version: Fixed from version 4.9rc2"
-
-CVE_STATUS[CVE-2016-5243] = "fixed-version: Fixed from version 4.7rc3"
-
-CVE_STATUS[CVE-2016-5244] = "fixed-version: Fixed from version 4.7rc3"
-
-# Skipping CVE-2016-5340, no affected_versions
-
-# Skipping CVE-2016-5342, no affected_versions
-
-# Skipping CVE-2016-5343, no affected_versions
-
-# Skipping CVE-2016-5344, no affected_versions
-
-CVE_STATUS[CVE-2016-5400] = "fixed-version: Fixed from version 4.7"
-
-CVE_STATUS[CVE-2016-5412] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2016-5696] = "fixed-version: Fixed from version 4.7"
-
-CVE_STATUS[CVE-2016-5728] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-5828] = "fixed-version: Fixed from version 4.7rc6"
-
-CVE_STATUS[CVE-2016-5829] = "fixed-version: Fixed from version 4.7rc5"
-
-# CVE-2016-5870 has no known resolution
-
-CVE_STATUS[CVE-2016-6130] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2016-6136] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2016-6156] = "fixed-version: Fixed from version 4.7rc7"
-
-CVE_STATUS[CVE-2016-6162] = "fixed-version: Fixed from version 4.7"
-
-CVE_STATUS[CVE-2016-6187] = "fixed-version: Fixed from version 4.7rc7"
-
-CVE_STATUS[CVE-2016-6197] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-6198] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-6213] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2016-6327] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-6480] = "fixed-version: Fixed from version 4.8rc3"
-
-CVE_STATUS[CVE-2016-6516] = "fixed-version: Fixed from version 4.8rc1"
-
-# Skipping CVE-2016-6753, no affected_versions
-
-CVE_STATUS[CVE-2016-6786] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2016-6787] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2016-6828] = "fixed-version: Fixed from version 4.8rc5"
-
-CVE_STATUS[CVE-2016-7039] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-7042] = "fixed-version: Fixed from version 4.9rc3"
-
-CVE_STATUS[CVE-2016-7097] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2016-7117] = "fixed-version: Fixed from version 4.6rc1"
-
-# Skipping CVE-2016-7118, no affected_versions
-
-CVE_STATUS[CVE-2016-7425] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2016-7910] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2016-7911] = "fixed-version: Fixed from version 4.7rc7"
-
-CVE_STATUS[CVE-2016-7912] = "fixed-version: Fixed from version 4.6rc5"
-
-CVE_STATUS[CVE-2016-7913] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-7914] = "fixed-version: Fixed from version 4.6rc4"
-
-CVE_STATUS[CVE-2016-7915] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-7916] = "fixed-version: Fixed from version 4.6rc7"
-
-CVE_STATUS[CVE-2016-7917] = "fixed-version: Fixed from version 4.5rc6"
-
-CVE_STATUS[CVE-2016-8399] = "fixed-version: Fixed from version 4.9"
-
-# Skipping CVE-2016-8401, no affected_versions
-
-# Skipping CVE-2016-8402, no affected_versions
-
-# Skipping CVE-2016-8403, no affected_versions
-
-# Skipping CVE-2016-8404, no affected_versions
-
-CVE_STATUS[CVE-2016-8405] = "fixed-version: Fixed from version 4.10rc6"
-
-# Skipping CVE-2016-8406, no affected_versions
-
-# Skipping CVE-2016-8407, no affected_versions
-
-CVE_STATUS[CVE-2016-8630] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-8632] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-8633] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-8636] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2016-8645] = "fixed-version: Fixed from version 4.9rc6"
-
-CVE_STATUS[CVE-2016-8646] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2016-8650] = "fixed-version: Fixed from version 4.9rc7"
-
-CVE_STATUS[CVE-2016-8655] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-8658] = "fixed-version: Fixed from version 4.8rc7"
-
-# CVE-2016-8660 has no known resolution
-
-CVE_STATUS[CVE-2016-8666] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-9083] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-9084] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-9120] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-9178] = "fixed-version: Fixed from version 4.8rc7"
-
-CVE_STATUS[CVE-2016-9191] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2016-9313] = "fixed-version: Fixed from version 4.9rc3"
-
-CVE_STATUS[CVE-2016-9555] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-9576] = "fixed-version: Fixed from version 4.9"
-
-CVE_STATUS[CVE-2016-9588] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-9604] = "fixed-version: Fixed from version 4.11rc8"
-
-# Skipping CVE-2016-9644, no affected_versions
-
-CVE_STATUS[CVE-2016-9685] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-9754] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-9755] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-9756] = "fixed-version: Fixed from version 4.9rc7"
-
-CVE_STATUS[CVE-2016-9777] = "fixed-version: Fixed from version 4.9rc7"
-
-CVE_STATUS[CVE-2016-9793] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-9794] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-9806] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-9919] = "fixed-version: Fixed from version 4.9rc8"
-
-# Skipping CVE-2017-0403, no affected_versions
-
-# Skipping CVE-2017-0404, no affected_versions
-
-# Skipping CVE-2017-0426, no affected_versions
-
-# Skipping CVE-2017-0427, no affected_versions
-
-# CVE-2017-0507 has no known resolution
-
-# CVE-2017-0508 has no known resolution
-
-# Skipping CVE-2017-0510, no affected_versions
-
-# Skipping CVE-2017-0528, no affected_versions
-
-# Skipping CVE-2017-0537, no affected_versions
-
-# CVE-2017-0564 has no known resolution
-
-CVE_STATUS[CVE-2017-0605] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-0627] = "fixed-version: Fixed from version 4.14rc1"
-
-# CVE-2017-0630 has no known resolution
-
-# CVE-2017-0749 has no known resolution
-
-CVE_STATUS[CVE-2017-0750] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2017-0786] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-0861] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2017-1000] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2017-1000111] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2017-1000112] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2017-1000251] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-1000252] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-1000253] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2017-1000255] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-1000363] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-1000364] = "fixed-version: Fixed from version 4.12rc6"
-
-CVE_STATUS[CVE-2017-1000365] = "fixed-version: Fixed from version 4.12rc7"
-
-CVE_STATUS[CVE-2017-1000370] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-1000371] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-1000379] = "fixed-version: Fixed from version 4.12rc6"
-
-CVE_STATUS[CVE-2017-1000380] = "fixed-version: Fixed from version 4.12rc5"
-
-CVE_STATUS[CVE-2017-1000405] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2017-1000407] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2017-1000410] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2017-10661] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-10662] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-10663] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-10810] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-10911] = "fixed-version: Fixed from version 4.12rc7"
-
-CVE_STATUS[CVE-2017-11089] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-11176] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-11472] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-11473] = "fixed-version: Fixed from version 4.13rc2"
-
-CVE_STATUS[CVE-2017-11600] = "fixed-version: Fixed from version 4.13"
-
-CVE_STATUS[CVE-2017-12134] = "fixed-version: Fixed from version 4.13rc6"
-
-CVE_STATUS[CVE-2017-12146] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-12153] = "fixed-version: Fixed from version 4.14rc2"
-
-CVE_STATUS[CVE-2017-12154] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-12168] = "fixed-version: Fixed from version 4.9rc6"
-
-CVE_STATUS[CVE-2017-12188] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-12190] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-12192] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-12193] = "fixed-version: Fixed from version 4.14rc7"
-
-CVE_STATUS[CVE-2017-12762] = "fixed-version: Fixed from version 4.13rc4"
-
-CVE_STATUS[CVE-2017-13080] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-13166] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-13167] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2017-13168] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2017-13215] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2017-13216] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2017-13220] = "fixed-version: Fixed from version 3.19rc3"
-
-# CVE-2017-13221 has no known resolution
-
-# CVE-2017-13222 has no known resolution
-
-CVE_STATUS[CVE-2017-13305] = "fixed-version: Fixed from version 4.12rc5"
-
-CVE_STATUS[CVE-2017-13686] = "fixed-version: Fixed from version 4.13rc7"
-
-# CVE-2017-13693 has no known resolution
-
-# CVE-2017-13694 has no known resolution
-
-CVE_STATUS[CVE-2017-13695] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2017-13715] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2017-14051] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-14106] = "fixed-version: Fixed from version 4.12rc3"
-
-CVE_STATUS[CVE-2017-14140] = "fixed-version: Fixed from version 4.13rc6"
-
-CVE_STATUS[CVE-2017-14156] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-14340] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-14489] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-14497] = "fixed-version: Fixed from version 4.13"
-
-CVE_STATUS[CVE-2017-14954] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-14991] = "fixed-version: Fixed from version 4.14rc2"
-
-CVE_STATUS[CVE-2017-15102] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2017-15115] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-15116] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2017-15121] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2017-15126] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-15127] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2017-15128] = "fixed-version: Fixed from version 4.14rc8"
-
-CVE_STATUS[CVE-2017-15129] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-15265] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-15274] = "fixed-version: Fixed from version 4.12rc5"
-
-CVE_STATUS[CVE-2017-15299] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-15306] = "fixed-version: Fixed from version 4.14rc7"
-
-CVE_STATUS[CVE-2017-15537] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-15649] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-15868] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2017-15951] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-16525] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-16526] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16527] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-16528] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-16529] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16530] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16531] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16532] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-16533] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-16534] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16535] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-16536] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16537] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16538] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-16643] = "fixed-version: Fixed from version 4.14rc7"
-
-CVE_STATUS[CVE-2017-16644] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-16645] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-16646] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16647] = "fixed-version: Fixed from version 4.14"
-
-CVE_STATUS[CVE-2017-16648] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16649] = "fixed-version: Fixed from version 4.14"
-
-CVE_STATUS[CVE-2017-16650] = "fixed-version: Fixed from version 4.14"
-
-CVE_STATUS[CVE-2017-16911] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-16912] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-16913] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-16914] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-16939] = "fixed-version: Fixed from version 4.14rc7"
-
-CVE_STATUS[CVE-2017-16994] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16995] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-16996] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17052] = "fixed-version: Fixed from version 4.13rc7"
-
-CVE_STATUS[CVE-2017-17053] = "fixed-version: Fixed from version 4.13rc7"
-
-CVE_STATUS[CVE-2017-17448] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17449] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17450] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17558] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17712] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17741] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17805] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17806] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17807] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2017-17852] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17853] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17854] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17855] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17856] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17857] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17862] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-17863] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17864] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17975] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2017-18017] = "fixed-version: Fixed from version 4.11rc7"
-
-CVE_STATUS[CVE-2017-18075] = "fixed-version: Fixed from version 4.15rc7"
-
-CVE_STATUS[CVE-2017-18079] = "fixed-version: Fixed from version 4.13rc1"
-
-# CVE-2017-18169 has no known resolution
-
-CVE_STATUS[CVE-2017-18174] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2017-18193] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18200] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-18202] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2017-18203] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-18204] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-18208] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2017-18216] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-18218] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18221] = "fixed-version: Fixed from version 4.12rc4"
-
-CVE_STATUS[CVE-2017-18222] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-18224] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-18232] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-18241] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18249] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-18255] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-18257] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-18261] = "fixed-version: Fixed from version 4.13rc6"
-
-CVE_STATUS[CVE-2017-18270] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-18344] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-18360] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-18379] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-18509] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-18549] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18550] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18551] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2017-18552] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-18595] = "fixed-version: Fixed from version 4.15rc6"
-
-CVE_STATUS[CVE-2017-2583] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-2584] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-2596] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-2618] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-2634] = "fixed-version: Fixed from version 2.6.25rc1"
-
-CVE_STATUS[CVE-2017-2636] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-2647] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2017-2671] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-5123] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-5546] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-5547] = "fixed-version: Fixed from version 4.10rc5"
-
-CVE_STATUS[CVE-2017-5548] = "fixed-version: Fixed from version 4.10rc5"
-
-CVE_STATUS[CVE-2017-5549] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-5550] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-5551] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-5576] = "fixed-version: Fixed from version 4.10rc6"
-
-CVE_STATUS[CVE-2017-5577] = "fixed-version: Fixed from version 4.10rc6"
-
-CVE_STATUS[CVE-2017-5669] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-5715] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2017-5753] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2017-5754] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-5897] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-5967] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-5970] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-5972] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2017-5986] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-6001] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-6074] = "fixed-version: Fixed from version 4.10"
-
-CVE_STATUS[CVE-2017-6214] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-6345] = "fixed-version: Fixed from version 4.10"
-
-CVE_STATUS[CVE-2017-6346] = "fixed-version: Fixed from version 4.10"
-
-CVE_STATUS[CVE-2017-6347] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-6348] = "fixed-version: Fixed from version 4.10"
-
-CVE_STATUS[CVE-2017-6353] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-6874] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-6951] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2017-7184] = "fixed-version: Fixed from version 4.11rc5"
-
-CVE_STATUS[CVE-2017-7187] = "fixed-version: Fixed from version 4.11rc5"
-
-CVE_STATUS[CVE-2017-7261] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-7273] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-7277] = "fixed-version: Fixed from version 4.11rc4"
-
-CVE_STATUS[CVE-2017-7294] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-7308] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-7346] = "fixed-version: Fixed from version 4.12rc5"
-
-# CVE-2017-7369 has no known resolution
-
-CVE_STATUS[CVE-2017-7374] = "fixed-version: Fixed from version 4.11rc4"
-
-CVE_STATUS[CVE-2017-7472] = "fixed-version: Fixed from version 4.11rc8"
-
-CVE_STATUS[CVE-2017-7477] = "fixed-version: Fixed from version 4.11"
-
-CVE_STATUS[CVE-2017-7482] = "fixed-version: Fixed from version 4.12rc7"
-
-CVE_STATUS[CVE-2017-7487] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-7495] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2017-7518] = "fixed-version: Fixed from version 4.12rc7"
-
-CVE_STATUS[CVE-2017-7533] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-7541] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-7542] = "fixed-version: Fixed from version 4.13rc2"
-
-CVE_STATUS[CVE-2017-7558] = "fixed-version: Fixed from version 4.13"
-
-CVE_STATUS[CVE-2017-7616] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-7618] = "fixed-version: Fixed from version 4.11rc8"
-
-CVE_STATUS[CVE-2017-7645] = "fixed-version: Fixed from version 4.11"
-
-CVE_STATUS[CVE-2017-7889] = "fixed-version: Fixed from version 4.11rc7"
-
-CVE_STATUS[CVE-2017-7895] = "fixed-version: Fixed from version 4.11"
-
-CVE_STATUS[CVE-2017-7979] = "fixed-version: Fixed from version 4.11rc8"
-
-CVE_STATUS[CVE-2017-8061] = "fixed-version: Fixed from version 4.11rc4"
-
-CVE_STATUS[CVE-2017-8062] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-8063] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8064] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8065] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8066] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8067] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8068] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-8069] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-8070] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-8071] = "fixed-version: Fixed from version 4.10rc7"
-
-CVE_STATUS[CVE-2017-8072] = "fixed-version: Fixed from version 4.10rc7"
-
-CVE_STATUS[CVE-2017-8106] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2017-8240] = "fixed-version: Fixed from version 3.19rc6"
-
-# CVE-2017-8242 has no known resolution
-
-# CVE-2017-8244 has no known resolution
-
-# CVE-2017-8245 has no known resolution
-
-# CVE-2017-8246 has no known resolution
-
-CVE_STATUS[CVE-2017-8797] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-8824] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2017-8831] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-8890] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-8924] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-8925] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-9059] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-9074] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-9075] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-9076] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-9077] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-9150] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-9211] = "fixed-version: Fixed from version 4.12rc3"
-
-CVE_STATUS[CVE-2017-9242] = "fixed-version: Fixed from version 4.12rc3"
-
-CVE_STATUS[CVE-2017-9605] = "fixed-version: Fixed from version 4.12rc5"
-
-CVE_STATUS[CVE-2017-9725] = "fixed-version: Fixed from version 4.3rc7"
-
-CVE_STATUS[CVE-2017-9984] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-9985] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-9986] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2018-1000004] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2018-1000026] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-1000028] = "fixed-version: Fixed from version 4.15"
-
-CVE_STATUS[CVE-2018-1000199] = "fixed-version: Fixed from version 4.16"
-
-CVE_STATUS[CVE-2018-1000200] = "fixed-version: Fixed from version 4.17rc5"
-
-CVE_STATUS[CVE-2018-1000204] = "fixed-version: Fixed from version 4.17rc7"
-
-CVE_STATUS[CVE-2018-10021] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-10074] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-10087] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2018-10124] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2018-10322] = "fixed-version: Fixed from version 4.17rc4"
-
-CVE_STATUS[CVE-2018-10323] = "fixed-version: Fixed from version 4.17rc4"
-
-CVE_STATUS[CVE-2018-1065] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2018-1066] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2018-10675] = "fixed-version: Fixed from version 4.13rc6"
-
-CVE_STATUS[CVE-2018-1068] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2018-10840] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-10853] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-1087] = "fixed-version: Fixed from version 4.16rc7"
-
-# CVE-2018-10872 has no known resolution
-
-CVE_STATUS[CVE-2018-10876] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10877] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10878] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10879] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10880] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10881] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10882] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10883] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10901] = "fixed-version: Fixed from version 2.6.36rc1"
-
-CVE_STATUS[CVE-2018-10902] = "fixed-version: Fixed from version 4.18rc6"
-
-CVE_STATUS[CVE-2018-1091] = "fixed-version: Fixed from version 4.14rc2"
-
-CVE_STATUS[CVE-2018-1092] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-1093] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-10938] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2018-1094] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-10940] = "fixed-version: Fixed from version 4.17rc3"
-
-CVE_STATUS[CVE-2018-1095] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-1108] = "fixed-version: Fixed from version 4.17rc2"
-
-CVE_STATUS[CVE-2018-1118] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-1120] = "fixed-version: Fixed from version 4.17rc6"
-
-# CVE-2018-1121 has no known resolution
-
-CVE_STATUS[CVE-2018-11232] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2018-1128] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-1129] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-1130] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-11412] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-11506] = "fixed-version: Fixed from version 4.17rc7"
-
-CVE_STATUS[CVE-2018-11508] = "fixed-version: Fixed from version 4.17rc5"
-
-# CVE-2018-11987 has no known resolution
-
-CVE_STATUS[CVE-2018-12126] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2018-12127] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2018-12130] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2018-12207] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2018-12232] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-12233] = "fixed-version: Fixed from version 4.18rc2"
-
-CVE_STATUS[CVE-2018-12633] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-12714] = "fixed-version: Fixed from version 4.18rc2"
-
-CVE_STATUS[CVE-2018-12896] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-12904] = "fixed-version: Fixed from version 4.18rc1"
-
-# CVE-2018-12928 has no known resolution
-
-# CVE-2018-12929 has no known resolution
-
-# CVE-2018-12930 has no known resolution
-
-# CVE-2018-12931 has no known resolution
-
-CVE_STATUS[CVE-2018-13053] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13093] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-13094] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-13095] = "fixed-version: Fixed from version 4.18rc3"
-
-CVE_STATUS[CVE-2018-13096] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13097] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13098] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13099] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13100] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13405] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-13406] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-14609] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14610] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14611] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14612] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14613] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14614] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14615] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14616] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14617] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14619] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2018-14625] = "fixed-version: Fixed from version 4.20rc6"
-
-CVE_STATUS[CVE-2018-14633] = "fixed-version: Fixed from version 4.19rc6"
-
-CVE_STATUS[CVE-2018-14634] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2018-14641] = "fixed-version: Fixed from version 4.19rc4"
-
-CVE_STATUS[CVE-2018-14646] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2018-14656] = "fixed-version: Fixed from version 4.19rc2"
-
-CVE_STATUS[CVE-2018-14678] = "fixed-version: Fixed from version 4.18rc8"
-
-CVE_STATUS[CVE-2018-14734] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-15471] = "fixed-version: Fixed from version 4.19rc7"
-
-CVE_STATUS[CVE-2018-15572] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-15594] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-16276] = "fixed-version: Fixed from version 4.18rc5"
-
-CVE_STATUS[CVE-2018-16597] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2018-16658] = "fixed-version: Fixed from version 4.19rc2"
-
-CVE_STATUS[CVE-2018-16862] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2018-16871] = "fixed-version: Fixed from version 4.20rc3"
-
-CVE_STATUS[CVE-2018-16880] = "fixed-version: Fixed from version 5.0rc5"
-
-CVE_STATUS[CVE-2018-16882] = "fixed-version: Fixed from version 4.20"
-
-CVE_STATUS[CVE-2018-16884] = "fixed-version: Fixed from version 5.0rc1"
-
-# CVE-2018-16885 has no known resolution
-
-CVE_STATUS[CVE-2018-17182] = "fixed-version: Fixed from version 4.19rc4"
-
-CVE_STATUS[CVE-2018-17972] = "fixed-version: Fixed from version 4.19rc7"
-
-# CVE-2018-17977 has no known resolution
-
-CVE_STATUS[CVE-2018-18021] = "fixed-version: Fixed from version 4.19rc7"
-
-CVE_STATUS[CVE-2018-18281] = "fixed-version: Fixed from version 4.19"
-
-CVE_STATUS[CVE-2018-18386] = "fixed-version: Fixed from version 4.15rc6"
-
-CVE_STATUS[CVE-2018-18397] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2018-18445] = "fixed-version: Fixed from version 4.19rc7"
-
-CVE_STATUS[CVE-2018-18559] = "fixed-version: Fixed from version 4.15rc2"
-
-# CVE-2018-18653 has no known resolution
-
-CVE_STATUS[CVE-2018-18690] = "fixed-version: Fixed from version 4.17rc4"
-
-CVE_STATUS[CVE-2018-18710] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2018-18955] = "fixed-version: Fixed from version 4.20rc2"
-
-CVE_STATUS[CVE-2018-19406] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2018-19407] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2018-19824] = "fixed-version: Fixed from version 4.20rc6"
-
-CVE_STATUS[CVE-2018-19854] = "fixed-version: Fixed from version 4.20rc3"
-
-CVE_STATUS[CVE-2018-19985] = "fixed-version: Fixed from version 4.20"
-
-CVE_STATUS[CVE-2018-20169] = "fixed-version: Fixed from version 4.20rc6"
-
-CVE_STATUS[CVE-2018-20449] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-20509] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2018-20510] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2018-20511] = "fixed-version: Fixed from version 4.19rc5"
-
-CVE_STATUS[CVE-2018-20669] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2018-20784] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2018-20836] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2018-20854] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2018-20855] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-20856] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-20961] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-20976] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-21008] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-25015] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2018-25020] = "fixed-version: Fixed from version 4.17rc7"
-
-# CVE-2018-3574 has no known resolution
-
-CVE_STATUS[CVE-2018-3620] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-3639] = "fixed-version: Fixed from version 4.17rc7"
-
-CVE_STATUS[CVE-2018-3646] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-3665] = "fixed-version: Fixed from version 3.7rc1"
-
-CVE_STATUS[CVE-2018-3693] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-5332] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2018-5333] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2018-5344] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2018-5390] = "fixed-version: Fixed from version 4.18rc7"
-
-CVE_STATUS[CVE-2018-5391] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-5703] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2018-5750] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-5803] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-5814] = "fixed-version: Fixed from version 4.17rc6"
-
-CVE_STATUS[CVE-2018-5848] = "fixed-version: Fixed from version 4.16rc1"
-
-# Skipping CVE-2018-5856, no affected_versions
-
-CVE_STATUS[CVE-2018-5873] = "fixed-version: Fixed from version 4.11rc8"
-
-CVE_STATUS[CVE-2018-5953] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-5995] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-6412] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2018-6554] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-6555] = "fixed-version: Fixed from version 4.17rc1"
-
-# CVE-2018-6559 has no known resolution
-
-CVE_STATUS[CVE-2018-6927] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2018-7191] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2018-7273] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-7480] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2018-7492] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2018-7566] = "fixed-version: Fixed from version 4.16rc2"
-
-CVE_STATUS[CVE-2018-7740] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-7754] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-7755] = "fixed-version: Fixed from version 4.19rc5"
-
-CVE_STATUS[CVE-2018-7757] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-7995] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2018-8043] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-8087] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-8781] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-8822] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-8897] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-9363] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-9385] = "fixed-version: Fixed from version 4.17rc3"
-
-CVE_STATUS[CVE-2018-9415] = "fixed-version: Fixed from version 4.17rc3"
-
-CVE_STATUS[CVE-2018-9422] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2018-9465] = "fixed-version: Fixed from version 4.15rc6"
-
-CVE_STATUS[CVE-2018-9516] = "fixed-version: Fixed from version 4.18rc5"
-
-CVE_STATUS[CVE-2018-9517] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2018-9518] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2018-9568] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2019-0136] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-0145] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-0146] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-0147] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-0148] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-0149] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-0154] = "fixed-version: Fixed from version 5.4rc8"
-
-CVE_STATUS[CVE-2019-0155] = "fixed-version: Fixed from version 5.4rc8"
-
-CVE_STATUS[CVE-2019-10124] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-10125] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-10126] = "fixed-version: Fixed from version 5.2rc6"
-
-# CVE-2019-10140 has no known resolution
-
-CVE_STATUS[CVE-2019-10142] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-10207] = "fixed-version: Fixed from version 5.3rc3"
-
-CVE_STATUS[CVE-2019-10220] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-10638] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-10639] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-11085] = "fixed-version: Fixed from version 5.0rc3"
-
-CVE_STATUS[CVE-2019-11091] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-11135] = "fixed-version: Fixed from version 5.4rc8"
-
-CVE_STATUS[CVE-2019-11190] = "fixed-version: Fixed from version 4.8rc5"
-
-CVE_STATUS[CVE-2019-11191] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-1125] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-11477] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-11478] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-11479] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-11486] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-11487] = "fixed-version: Fixed from version 5.1rc5"
-
-CVE_STATUS[CVE-2019-11599] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-11683] = "fixed-version: Fixed from version 5.1"
-
-CVE_STATUS[CVE-2019-11810] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-11811] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-11815] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-11833] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-11884] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-12378] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-12379] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-12380] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-12381] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-12382] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-12454] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-12455] = "fixed-version: Fixed from version 5.3rc1"
-
-# CVE-2019-12456 has no known resolution
-
-CVE_STATUS[CVE-2019-12614] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-12615] = "fixed-version: Fixed from version 5.2rc4"
-
-CVE_STATUS[CVE-2019-12817] = "fixed-version: Fixed from version 5.2rc7"
-
-CVE_STATUS[CVE-2019-12818] = "fixed-version: Fixed from version 5.0"
-
-CVE_STATUS[CVE-2019-12819] = "fixed-version: Fixed from version 5.0rc8"
-
-CVE_STATUS[CVE-2019-12881] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2019-12984] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-13233] = "fixed-version: Fixed from version 5.2rc4"
-
-CVE_STATUS[CVE-2019-13272] = "fixed-version: Fixed from version 5.2"
-
-CVE_STATUS[CVE-2019-13631] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-13648] = "fixed-version: Fixed from version 5.3rc2"
-
-CVE_STATUS[CVE-2019-14283] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-14284] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-14615] = "fixed-version: Fixed from version 5.5rc7"
-
-CVE_STATUS[CVE-2019-14763] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2019-14814] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-14815] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-14816] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-14821] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-14835] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-14895] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-14896] = "fixed-version: Fixed from version 5.5"
-
-CVE_STATUS[CVE-2019-14897] = "fixed-version: Fixed from version 5.5"
-
-# CVE-2019-14898 has no known resolution
-
-CVE_STATUS[CVE-2019-14901] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-15030] = "fixed-version: Fixed from version 5.3rc8"
-
-CVE_STATUS[CVE-2019-15031] = "fixed-version: Fixed from version 5.3rc8"
-
-CVE_STATUS[CVE-2019-15090] = "fixed-version: Fixed from version 5.2rc2"
-
-CVE_STATUS[CVE-2019-15098] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-15099] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-15117] = "fixed-version: Fixed from version 5.3rc5"
-
-CVE_STATUS[CVE-2019-15118] = "fixed-version: Fixed from version 5.3rc5"
-
-CVE_STATUS[CVE-2019-15211] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15212] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-15213] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15214] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-15215] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15216] = "fixed-version: Fixed from version 5.1"
-
-CVE_STATUS[CVE-2019-15217] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15218] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-15219] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-15220] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15221] = "fixed-version: Fixed from version 5.2"
-
-CVE_STATUS[CVE-2019-15222] = "fixed-version: Fixed from version 5.3rc3"
-
-CVE_STATUS[CVE-2019-15223] = "fixed-version: Fixed from version 5.2rc3"
-
-# CVE-2019-15239 has no known resolution
-
-# CVE-2019-15290 has no known resolution
-
-CVE_STATUS[CVE-2019-15291] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-15292] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-15504] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-15505] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-15538] = "fixed-version: Fixed from version 5.3rc6"
-
-CVE_STATUS[CVE-2019-15666] = "fixed-version: Fixed from version 5.1"
-
-# CVE-2019-15791 has no known resolution
-
-# CVE-2019-15792 has no known resolution
-
-# CVE-2019-15793 has no known resolution
-
-CVE_STATUS[CVE-2019-15794] = "fixed-version: Fixed from version 5.12"
-
-CVE_STATUS[CVE-2019-15807] = "fixed-version: Fixed from version 5.2rc3"
-
-# CVE-2019-15902 has no known resolution
-
-CVE_STATUS[CVE-2019-15916] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-15917] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-15918] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-15919] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-15920] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-15921] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-15922] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-15923] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-15924] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-15925] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15926] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15927] = "fixed-version: Fixed from version 5.0rc2"
-
-# CVE-2019-16089 has no known resolution
-
-CVE_STATUS[CVE-2019-16229] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-16230] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-16231] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-16232] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-16233] = "fixed-version: Fixed from version 5.4rc5"
-
-CVE_STATUS[CVE-2019-16234] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-16413] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-16714] = "fixed-version: Fixed from version 5.3rc7"
-
-CVE_STATUS[CVE-2019-16746] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-16921] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2019-16994] = "fixed-version: Fixed from version 5.0"
-
-CVE_STATUS[CVE-2019-16995] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-17052] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17053] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17054] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17055] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17056] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17075] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-17133] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-17351] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-17666] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-18198] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-18282] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-18660] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18675] = "fixed-version: Fixed from version 4.17rc5"
-
-# CVE-2019-18680 has no known resolution
-
-CVE_STATUS[CVE-2019-18683] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18786] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18805] = "fixed-version: Fixed from version 5.1rc7"
-
-CVE_STATUS[CVE-2019-18806] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-18807] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-18808] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18809] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18810] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-18811] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-18812] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-18813] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-18814] = "fixed-version: Fixed from version 5.7rc7"
-
-CVE_STATUS[CVE-2019-18885] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-19036] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19037] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-19039] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2019-19043] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19044] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19045] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19046] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19047] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19048] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19049] = "fixed-version: Fixed from version 5.4rc5"
-
-CVE_STATUS[CVE-2019-19050] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19051] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19052] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-19053] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19054] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19055] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-19056] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19057] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19058] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-19059] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-19060] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19061] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19062] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19063] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19064] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19065] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19066] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19067] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-19068] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19069] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19070] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19071] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19072] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19073] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19074] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19075] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-19076] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19077] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19078] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19079] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-19080] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19081] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19082] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19083] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-19227] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-19241] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19252] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19318] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19319] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-19332] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19338] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19377] = "fixed-version: Fixed from version 5.7rc1"
-
-# CVE-2019-19378 has no known resolution
-
-CVE_STATUS[CVE-2019-19447] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19448] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2019-19449] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2019-19462] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2019-19523] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19524] = "fixed-version: Fixed from version 5.4rc8"
-
-CVE_STATUS[CVE-2019-19525] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-19526] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-19527] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-19528] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19529] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-19530] = "fixed-version: Fixed from version 5.3rc5"
-
-CVE_STATUS[CVE-2019-19531] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-19532] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19533] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19534] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-19535] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-19536] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-19537] = "fixed-version: Fixed from version 5.3rc5"
-
-CVE_STATUS[CVE-2019-19543] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-19602] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19767] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19768] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2019-19769] = "fixed-version: Fixed from version 5.6rc5"
-
-CVE_STATUS[CVE-2019-19770] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2019-19807] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-19813] = "fixed-version: Fixed from version 5.2rc1"
-
-# CVE-2019-19814 has no known resolution
-
-CVE_STATUS[CVE-2019-19815] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-19816] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-19922] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19927] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-19947] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-19965] = "fixed-version: Fixed from version 5.5rc2"
-
-CVE_STATUS[CVE-2019-19966] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-1999] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-20054] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-20095] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-20096] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-2024] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2019-2025] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2019-20422] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-2054] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2019-20636] = "fixed-version: Fixed from version 5.5rc6"
-
-# CVE-2019-20794 has no known resolution
-
-CVE_STATUS[CVE-2019-20806] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-20810] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2019-20811] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-20812] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-20908] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-20934] = "fixed-version: Fixed from version 5.3rc2"
-
-CVE_STATUS[CVE-2019-2101] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-2181] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-2182] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2019-2213] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-2214] = "fixed-version: Fixed from version 5.3rc2"
-
-CVE_STATUS[CVE-2019-2215] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2019-25044] = "fixed-version: Fixed from version 5.2rc4"
-
-CVE_STATUS[CVE-2019-25045] = "fixed-version: Fixed from version 5.1"
-
-CVE_STATUS[CVE-2019-25160] = "fixed-version: Fixed from version 5.0"
-
-CVE_STATUS[CVE-2019-25162] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2019-3016] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2019-3459] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-3460] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-3701] = "fixed-version: Fixed from version 5.0rc3"
-
-CVE_STATUS[CVE-2019-3819] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-3837] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2019-3846] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-3874] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-3882] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-3887] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-3892] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-3896] = "fixed-version: Fixed from version 2.6.35rc1"
-
-CVE_STATUS[CVE-2019-3900] = "fixed-version: Fixed from version 5.2rc4"
-
-CVE_STATUS[CVE-2019-3901] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2019-5108] = "fixed-version: Fixed from version 5.3"
-
-# Skipping CVE-2019-5489, no affected_versions
-
-CVE_STATUS[CVE-2019-6133] = "fixed-version: Fixed from version 5.0rc2"
-
-CVE_STATUS[CVE-2019-6974] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-7221] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-7222] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-7308] = "fixed-version: Fixed from version 5.0rc3"
-
-CVE_STATUS[CVE-2019-8912] = "fixed-version: Fixed from version 5.0rc8"
-
-CVE_STATUS[CVE-2019-8956] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-8980] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9003] = "fixed-version: Fixed from version 5.0rc4"
-
-CVE_STATUS[CVE-2019-9162] = "fixed-version: Fixed from version 5.0rc7"
-
-CVE_STATUS[CVE-2019-9213] = "fixed-version: Fixed from version 5.0"
-
-CVE_STATUS[CVE-2019-9245] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2019-9444] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2019-9445] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9453] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-9454] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2019-9455] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2019-9456] = "fixed-version: Fixed from version 4.16rc6"
-
-CVE_STATUS[CVE-2019-9457] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2019-9458] = "fixed-version: Fixed from version 4.19rc7"
-
-CVE_STATUS[CVE-2019-9466] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9500] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9503] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9506] = "fixed-version: Fixed from version 5.2"
-
-CVE_STATUS[CVE-2019-9857] = "fixed-version: Fixed from version 5.1rc2"
-
-CVE_STATUS[CVE-2020-0009] = "fixed-version: Fixed from version 5.6rc3"
-
-CVE_STATUS[CVE-2020-0030] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2020-0041] = "fixed-version: Fixed from version 5.5rc2"
-
-CVE_STATUS[CVE-2020-0066] = "fixed-version: Fixed from version 4.3rc7"
-
-CVE_STATUS[CVE-2020-0067] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2020-0110] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2020-0255] = "fixed-version: Fixed from version 5.7rc4"
-
-CVE_STATUS[CVE-2020-0305] = "fixed-version: Fixed from version 5.5rc6"
-
-# CVE-2020-0347 has no known resolution
-
-CVE_STATUS[CVE-2020-0404] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2020-0423] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-0427] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2020-0429] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2020-0430] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2020-0431] = "fixed-version: Fixed from version 5.5rc6"
-
-CVE_STATUS[CVE-2020-0432] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2020-0433] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2020-0435] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2020-0444] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-0465] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-0466] = "fixed-version: Fixed from version 5.9rc2"
-
-CVE_STATUS[CVE-2020-0543] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10135] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10690] = "fixed-version: Fixed from version 5.5rc5"
-
-# CVE-2020-10708 has no known resolution
-
-CVE_STATUS[CVE-2020-10711] = "fixed-version: Fixed from version 5.7rc6"
-
-CVE_STATUS[CVE-2020-10720] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2020-10732] = "fixed-version: Fixed from version 5.7"
-
-CVE_STATUS[CVE-2020-10742] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2020-10751] = "fixed-version: Fixed from version 5.7rc4"
-
-CVE_STATUS[CVE-2020-10757] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10766] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10767] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10768] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10769] = "fixed-version: Fixed from version 5.0rc3"
-
-CVE_STATUS[CVE-2020-10773] = "fixed-version: Fixed from version 5.4rc6"
-
-# CVE-2020-10774 has no known resolution
-
-CVE_STATUS[CVE-2020-10781] = "fixed-version: Fixed from version 5.8rc6"
-
-CVE_STATUS[CVE-2020-10942] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-11494] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11565] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11608] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11609] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11668] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11669] = "fixed-version: Fixed from version 5.2rc1"
-
-# CVE-2020-11725 has no known resolution
-
-CVE_STATUS[CVE-2020-11884] = "fixed-version: Fixed from version 5.7rc4"
-
-# CVE-2020-11935 has no known resolution
-
-CVE_STATUS[CVE-2020-12114] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2020-12351] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-12352] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-12362] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-12363] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-12364] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-12464] = "fixed-version: Fixed from version 5.7rc3"
-
-CVE_STATUS[CVE-2020-12465] = "fixed-version: Fixed from version 5.6rc6"
-
-CVE_STATUS[CVE-2020-12652] = "fixed-version: Fixed from version 5.5rc7"
-
-CVE_STATUS[CVE-2020-12653] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2020-12654] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2020-12655] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-12656] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-12657] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-12659] = "fixed-version: Fixed from version 5.7rc2"
-
-CVE_STATUS[CVE-2020-12768] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-12769] = "fixed-version: Fixed from version 5.5rc6"
-
-CVE_STATUS[CVE-2020-12770] = "fixed-version: Fixed from version 5.7rc3"
-
-CVE_STATUS[CVE-2020-12771] = "fixed-version: Fixed from version 5.8rc2"
-
-CVE_STATUS[CVE-2020-12826] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-12888] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-12912] = "fixed-version: Fixed from version 5.10rc4"
-
-CVE_STATUS[CVE-2020-13143] = "fixed-version: Fixed from version 5.7rc6"
-
-CVE_STATUS[CVE-2020-13974] = "fixed-version: Fixed from version 5.8rc1"
-
-# CVE-2020-14304 has no known resolution
-
-CVE_STATUS[CVE-2020-14305] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2020-14314] = "fixed-version: Fixed from version 5.9rc2"
-
-CVE_STATUS[CVE-2020-14331] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-14351] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-14353] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2020-14356] = "fixed-version: Fixed from version 5.8rc5"
-
-CVE_STATUS[CVE-2020-14381] = "fixed-version: Fixed from version 5.6rc6"
-
-CVE_STATUS[CVE-2020-14385] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-14386] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-14390] = "fixed-version: Fixed from version 5.9rc6"
-
-CVE_STATUS[CVE-2020-14416] = "fixed-version: Fixed from version 5.5"
-
-CVE_STATUS[CVE-2020-15393] = "fixed-version: Fixed from version 5.8rc3"
-
-CVE_STATUS[CVE-2020-15436] = "fixed-version: Fixed from version 5.8rc2"
-
-CVE_STATUS[CVE-2020-15437] = "fixed-version: Fixed from version 5.8rc7"
-
-CVE_STATUS[CVE-2020-15780] = "fixed-version: Fixed from version 5.8rc3"
-
-# CVE-2020-15802 has no known resolution
-
-CVE_STATUS[CVE-2020-15852] = "fixed-version: Fixed from version 5.8rc6"
-
-CVE_STATUS[CVE-2020-16119] = "fixed-version: Fixed from version 5.15rc2"
-
-CVE_STATUS[CVE-2020-16120] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-16166] = "fixed-version: Fixed from version 5.8"
-
-CVE_STATUS[CVE-2020-1749] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2020-24394] = "fixed-version: Fixed from version 5.8rc4"
-
-CVE_STATUS[CVE-2020-24490] = "fixed-version: Fixed from version 5.8"
-
-# CVE-2020-24502 has no known resolution
-
-# CVE-2020-24503 has no known resolution
-
-CVE_STATUS[CVE-2020-24504] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2020-24586] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-24587] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-24588] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-25211] = "fixed-version: Fixed from version 5.9rc7"
-
-CVE_STATUS[CVE-2020-25212] = "fixed-version: Fixed from version 5.9rc1"
-
-# CVE-2020-25220 has no known resolution
-
-CVE_STATUS[CVE-2020-25221] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-25284] = "fixed-version: Fixed from version 5.9rc5"
-
-CVE_STATUS[CVE-2020-25285] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-25639] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2020-25641] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-25643] = "fixed-version: Fixed from version 5.9rc7"
-
-CVE_STATUS[CVE-2020-25645] = "fixed-version: Fixed from version 5.9rc7"
-
-CVE_STATUS[CVE-2020-25656] = "fixed-version: Fixed from version 5.10rc2"
-
-# CVE-2020-25661 has no known resolution
-
-# CVE-2020-25662 has no known resolution
-
-CVE_STATUS[CVE-2020-25668] = "fixed-version: Fixed from version 5.10rc3"
-
-CVE_STATUS[CVE-2020-25669] = "fixed-version: Fixed from version 5.10rc5"
-
-CVE_STATUS[CVE-2020-25670] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2020-25671] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2020-25672] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2020-25673] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2020-25704] = "fixed-version: Fixed from version 5.10rc3"
-
-CVE_STATUS[CVE-2020-25705] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-26088] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-26139] = "fixed-version: Fixed from version 5.13rc4"
-
-# CVE-2020-26140 has no known resolution
-
-CVE_STATUS[CVE-2020-26141] = "fixed-version: Fixed from version 5.13rc4"
-
-# CVE-2020-26142 has no known resolution
-
-# CVE-2020-26143 has no known resolution
-
-CVE_STATUS[CVE-2020-26145] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-26147] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-26541] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-26555] = "fixed-version: Fixed from version 5.13rc1"
-
-# CVE-2020-26556 has no known resolution
-
-# CVE-2020-26557 has no known resolution
-
-CVE_STATUS[CVE-2020-26558] = "fixed-version: Fixed from version 5.13rc1"
-
-# CVE-2020-26559 has no known resolution
-
-# CVE-2020-26560 has no known resolution
-
-CVE_STATUS[CVE-2020-27066] = "fixed-version: Fixed from version 5.6"
-
-CVE_STATUS[CVE-2020-27067] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2020-27068] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2020-27152] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27170] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2020-27171] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2020-27194] = "fixed-version: Fixed from version 5.9"
-
-CVE_STATUS[CVE-2020-2732] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-27418] = "fixed-version: Fixed from version 5.6rc5"
-
-CVE_STATUS[CVE-2020-27673] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27675] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27777] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27784] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27786] = "fixed-version: Fixed from version 5.7rc6"
-
-CVE_STATUS[CVE-2020-27815] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-27820] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2020-27825] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27830] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-27835] = "fixed-version: Fixed from version 5.10rc6"
-
-CVE_STATUS[CVE-2020-28097] = "fixed-version: Fixed from version 5.9rc6"
-
-CVE_STATUS[CVE-2020-28374] = "fixed-version: Fixed from version 5.11rc4"
-
-CVE_STATUS[CVE-2020-28588] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-28915] = "fixed-version: Fixed from version 5.9"
-
-CVE_STATUS[CVE-2020-28941] = "fixed-version: Fixed from version 5.10rc5"
-
-CVE_STATUS[CVE-2020-28974] = "fixed-version: Fixed from version 5.10rc3"
-
-CVE_STATUS[CVE-2020-29368] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-29369] = "fixed-version: Fixed from version 5.8rc7"
-
-CVE_STATUS[CVE-2020-29370] = "fixed-version: Fixed from version 5.6rc7"
-
-CVE_STATUS[CVE-2020-29371] = "fixed-version: Fixed from version 5.9rc2"
-
-CVE_STATUS[CVE-2020-29372] = "fixed-version: Fixed from version 5.7rc3"
-
-CVE_STATUS[CVE-2020-29373] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2020-29374] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-29534] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-29568] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-29569] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-29660] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-29661] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-35499] = "fixed-version: Fixed from version 5.11rc1"
-
-# CVE-2020-35501 has no known resolution
-
-CVE_STATUS[CVE-2020-35508] = "fixed-version: Fixed from version 5.10rc3"
-
-CVE_STATUS[CVE-2020-35513] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2020-35519] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-36158] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-36310] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-36311] = "fixed-version: Fixed from version 5.9rc5"
-
-CVE_STATUS[CVE-2020-36312] = "fixed-version: Fixed from version 5.9rc5"
-
-CVE_STATUS[CVE-2020-36313] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-36322] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-36385] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-36386] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-36387] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-36516] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2020-36557] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-36558] = "fixed-version: Fixed from version 5.6rc3"
-
-CVE_STATUS[CVE-2020-36691] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-36694] = "fixed-version: Fixed from version 5.10"
-
-CVE_STATUS[CVE-2020-36766] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-36775] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-36776] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36777] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36778] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36779] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36780] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36781] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36782] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36783] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36784] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36785] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36786] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36787] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-3702] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2020-4788] = "fixed-version: Fixed from version 5.10rc5"
-
-CVE_STATUS[CVE-2020-7053] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2020-8428] = "fixed-version: Fixed from version 5.5"
-
-CVE_STATUS[CVE-2020-8647] = "fixed-version: Fixed from version 5.6rc5"
-
-CVE_STATUS[CVE-2020-8648] = "fixed-version: Fixed from version 5.6rc3"
-
-CVE_STATUS[CVE-2020-8649] = "fixed-version: Fixed from version 5.6rc5"
-
-CVE_STATUS[CVE-2020-8694] = "fixed-version: Fixed from version 5.10rc4"
-
-# CVE-2020-8832 has no known resolution
-
-CVE_STATUS[CVE-2020-8834] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2020-8835] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-8992] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2020-9383] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-9391] = "fixed-version: Fixed from version 5.6rc3"
-
-CVE_STATUS[CVE-2021-0129] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-0342] = "fixed-version: Fixed from version 5.8rc1"
-
-# CVE-2021-0399 has no known resolution
-
-CVE_STATUS[CVE-2021-0447] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2021-0448] = "fixed-version: Fixed from version 5.9rc7"
-
-CVE_STATUS[CVE-2021-0512] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-0605] = "fixed-version: Fixed from version 5.8"
-
-# CVE-2021-0606 has no known resolution
-
-# CVE-2021-0695 has no known resolution
-
-CVE_STATUS[CVE-2021-0707] = "fixed-version: Fixed from version 5.11rc3"
-
-CVE_STATUS[CVE-2021-0920] = "fixed-version: Fixed from version 5.14rc4"
-
-# CVE-2021-0924 has no known resolution
-
-CVE_STATUS[CVE-2021-0929] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2021-0935] = "fixed-version: Fixed from version 4.16rc7"
-
-# CVE-2021-0936 has no known resolution
-
-CVE_STATUS[CVE-2021-0937] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-0938] = "fixed-version: Fixed from version 5.10rc4"
-
-CVE_STATUS[CVE-2021-0941] = "fixed-version: Fixed from version 5.12rc1"
-
-# CVE-2021-0961 has no known resolution
-
-CVE_STATUS[CVE-2021-1048] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2021-20177] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2021-20194] = "fixed-version: Fixed from version 5.10rc1"
-
-# CVE-2021-20219 has no known resolution
-
-CVE_STATUS[CVE-2021-20226] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2021-20239] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2021-20261] = "fixed-version: Fixed from version 4.5rc5"
-
-CVE_STATUS[CVE-2021-20265] = "fixed-version: Fixed from version 4.5rc3"
-
-CVE_STATUS[CVE-2021-20268] = "fixed-version: Fixed from version 5.11rc5"
-
-CVE_STATUS[CVE-2021-20292] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2021-20317] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2021-20320] = "fixed-version: Fixed from version 5.15rc3"
-
-CVE_STATUS[CVE-2021-20321] = "fixed-version: Fixed from version 5.15rc5"
-
-CVE_STATUS[CVE-2021-20322] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-21781] = "fixed-version: Fixed from version 5.11rc7"
-
-CVE_STATUS[CVE-2021-22543] = "fixed-version: Fixed from version 5.13"
-
-CVE_STATUS[CVE-2021-22555] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-22600] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-23133] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-23134] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-26401] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2021-26708] = "fixed-version: Fixed from version 5.11rc7"
-
-CVE_STATUS[CVE-2021-26930] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-26931] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-26932] = "fixed-version: Fixed from version 5.12rc1"
-
-# CVE-2021-26934 has no known resolution
-
-CVE_STATUS[CVE-2021-27363] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-27364] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-27365] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-28038] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-28039] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-28375] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-28660] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-28688] = "fixed-version: Fixed from version 5.12rc6"
-
-CVE_STATUS[CVE-2021-28691] = "fixed-version: Fixed from version 5.13rc6"
-
-CVE_STATUS[CVE-2021-28711] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28712] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28713] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28714] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28715] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28950] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-28951] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-28952] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-28964] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-28971] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-28972] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-29154] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2021-29155] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-29264] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-29265] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-29266] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-29646] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29647] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29648] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29649] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29650] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29657] = "fixed-version: Fixed from version 5.12rc6"
-
-CVE_STATUS[CVE-2021-30002] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-30178] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-31440] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-3178] = "fixed-version: Fixed from version 5.11rc5"
-
-CVE_STATUS[CVE-2021-31829] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-31916] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-32078] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-32399] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-32606] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-33033] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-33034] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-33061] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2021-33098] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-33135] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2021-33200] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-3347] = "fixed-version: Fixed from version 5.11rc6"
-
-CVE_STATUS[CVE-2021-3348] = "fixed-version: Fixed from version 5.11rc6"
-
-CVE_STATUS[CVE-2021-33624] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-33630] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2021-33631] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2021-33655] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2021-33656] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-33909] = "fixed-version: Fixed from version 5.14rc3"
-
-CVE_STATUS[CVE-2021-3411] = "fixed-version: Fixed from version 5.10"
-
-CVE_STATUS[CVE-2021-3428] = "fixed-version: Fixed from version 5.9rc2"
-
-CVE_STATUS[CVE-2021-3444] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-34556] = "fixed-version: Fixed from version 5.14rc4"
-
-CVE_STATUS[CVE-2021-34693] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-3483] = "fixed-version: Fixed from version 5.12rc6"
-
-CVE_STATUS[CVE-2021-34866] = "fixed-version: Fixed from version 5.14"
-
-CVE_STATUS[CVE-2021-3489] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-3490] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-3491] = "fixed-version: Fixed from version 5.13rc1"
-
-# CVE-2021-3492 has no known resolution
-
-CVE_STATUS[CVE-2021-3493] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2021-34981] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-3501] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-35039] = "fixed-version: Fixed from version 5.13"
-
-CVE_STATUS[CVE-2021-3506] = "fixed-version: Fixed from version 5.13rc1"
-
-# CVE-2021-3542 has no known resolution
-
-CVE_STATUS[CVE-2021-3543] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-35477] = "fixed-version: Fixed from version 5.14rc4"
-
-CVE_STATUS[CVE-2021-3564] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-3573] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-3587] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-3600] = "fixed-version: Fixed from version 5.11"
-
-CVE_STATUS[CVE-2021-3609] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-3612] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-3635] = "fixed-version: Fixed from version 5.5rc7"
-
-CVE_STATUS[CVE-2021-3640] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-3653] = "fixed-version: Fixed from version 5.14rc7"
-
-CVE_STATUS[CVE-2021-3655] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-3656] = "fixed-version: Fixed from version 5.14rc7"
-
-CVE_STATUS[CVE-2021-3659] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2021-3669] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-3679] = "fixed-version: Fixed from version 5.14rc3"
-
-# CVE-2021-3714 has no known resolution
-
-CVE_STATUS[CVE-2021-3715] = "fixed-version: Fixed from version 5.6"
-
-CVE_STATUS[CVE-2021-37159] = "fixed-version: Fixed from version 5.14rc3"
-
-CVE_STATUS[CVE-2021-3732] = "fixed-version: Fixed from version 5.14rc6"
-
-CVE_STATUS[CVE-2021-3736] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-3739] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-3743] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-3744] = "fixed-version: Fixed from version 5.15rc4"
-
-CVE_STATUS[CVE-2021-3752] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-3753] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-37576] = "fixed-version: Fixed from version 5.14rc3"
-
-CVE_STATUS[CVE-2021-3759] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-3760] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-3764] = "fixed-version: Fixed from version 5.15rc4"
-
-CVE_STATUS[CVE-2021-3772] = "fixed-version: Fixed from version 5.15"
-
-CVE_STATUS[CVE-2021-38160] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38166] = "fixed-version: Fixed from version 5.14rc6"
-
-CVE_STATUS[CVE-2021-38198] = "fixed-version: Fixed from version 5.13rc6"
-
-CVE_STATUS[CVE-2021-38199] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38200] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-38201] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38202] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38203] = "fixed-version: Fixed from version 5.14rc2"
-
-CVE_STATUS[CVE-2021-38204] = "fixed-version: Fixed from version 5.14rc3"
-
-CVE_STATUS[CVE-2021-38205] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38206] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-38207] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-38208] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-38209] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-38300] = "fixed-version: Fixed from version 5.15rc4"
-
-# CVE-2021-3847 has no known resolution
-
-# CVE-2021-3864 has no known resolution
-
-# CVE-2021-3892 has no known resolution
-
-CVE_STATUS[CVE-2021-3894] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-3896] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-3923] = "fixed-version: Fixed from version 5.16"
-
-CVE_STATUS[CVE-2021-39633] = "fixed-version: Fixed from version 5.14"
-
-CVE_STATUS[CVE-2021-39634] = "fixed-version: Fixed from version 5.9rc8"
-
-CVE_STATUS[CVE-2021-39636] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2021-39648] = "fixed-version: Fixed from version 5.11rc3"
-
-CVE_STATUS[CVE-2021-39656] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-39657] = "fixed-version: Fixed from version 5.11rc4"
-
-CVE_STATUS[CVE-2021-39685] = "fixed-version: Fixed from version 5.16rc5"
-
-CVE_STATUS[CVE-2021-39686] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-39698] = "fixed-version: Fixed from version 5.16rc5"
-
-CVE_STATUS[CVE-2021-39711] = "fixed-version: Fixed from version 4.18rc6"
-
-CVE_STATUS[CVE-2021-39713] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2021-39714] = "fixed-version: Fixed from version 4.12rc1"
-
-# CVE-2021-39800 has no known resolution
-
-# CVE-2021-39801 has no known resolution
-
-# CVE-2021-39802 has no known resolution
-
-CVE_STATUS[CVE-2021-4001] = "fixed-version: Fixed from version 5.16rc2"
-
-CVE_STATUS[CVE-2021-4002] = "fixed-version: Fixed from version 5.16rc3"
-
-CVE_STATUS[CVE-2021-4023] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-4028] = "fixed-version: Fixed from version 5.15rc4"
-
-CVE_STATUS[CVE-2021-4032] = "fixed-version: Fixed from version 5.15rc7"
-
-CVE_STATUS[CVE-2021-4037] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-40490] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-4083] = "fixed-version: Fixed from version 5.16rc4"
-
-CVE_STATUS[CVE-2021-4090] = "fixed-version: Fixed from version 5.16rc2"
-
-CVE_STATUS[CVE-2021-4093] = "fixed-version: Fixed from version 5.15rc7"
-
-CVE_STATUS[CVE-2021-4095] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-41073] = "fixed-version: Fixed from version 5.15rc2"
-
-CVE_STATUS[CVE-2021-4135] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-4148] = "fixed-version: Fixed from version 5.15"
-
-CVE_STATUS[CVE-2021-4149] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-4150] = "fixed-version: Fixed from version 5.15rc7"
-
-CVE_STATUS[CVE-2021-4154] = "fixed-version: Fixed from version 5.14rc2"
-
-CVE_STATUS[CVE-2021-4155] = "fixed-version: Fixed from version 5.16"
-
-CVE_STATUS[CVE-2021-4157] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-4159] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2021-41864] = "fixed-version: Fixed from version 5.15rc5"
-
-CVE_STATUS[CVE-2021-4197] = "fixed-version: Fixed from version 5.16"
-
-CVE_STATUS[CVE-2021-42008] = "fixed-version: Fixed from version 5.14rc7"
-
-CVE_STATUS[CVE-2021-4202] = "fixed-version: Fixed from version 5.16rc2"
-
-CVE_STATUS[CVE-2021-4203] = "fixed-version: Fixed from version 5.15rc4"
-
-CVE_STATUS[CVE-2021-4204] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-4218] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2021-42252] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-42327] = "fixed-version: Fixed from version 5.15"
-
-CVE_STATUS[CVE-2021-42739] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-43056] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-43057] = "fixed-version: Fixed from version 5.15rc3"
-
-CVE_STATUS[CVE-2021-43267] = "fixed-version: Fixed from version 5.15"
-
-CVE_STATUS[CVE-2021-43389] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-43975] = "fixed-version: Fixed from version 5.16rc2"
-
-CVE_STATUS[CVE-2021-43976] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-44733] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-44879] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-45095] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-45100] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-45402] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-45469] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-45480] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-45485] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-45486] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-45868] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-46283] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-46904] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2021-46905] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46906] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-46908] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46909] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46910] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46911] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46912] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46913] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46914] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46915] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46916] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46917] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46918] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46919] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46920] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46921] = "fixed-version: Fixed from version 5.12"
-
-CVE_STATUS[CVE-2021-46922] = "fixed-version: Fixed from version 5.12"
-
-CVE_STATUS[CVE-2021-46923] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46924] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46925] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46926] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-46927] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46928] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-46929] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46930] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46931] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46932] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46933] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46934] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46935] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46936] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46937] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46938] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46939] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46940] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46941] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46942] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46943] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46944] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46945] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46947] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46948] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46949] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46950] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46951] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46952] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46953] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46954] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46955] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46956] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46957] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46958] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46959] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46960] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46961] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46962] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46963] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46964] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46965] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46966] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46967] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46968] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46969] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46970] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46971] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46972] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46973] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46974] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46976] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46977] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46978] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46979] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46980] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46981] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46982] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46983] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46984] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46985] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46986] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46987] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46988] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46989] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46990] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46991] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46992] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46993] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46994] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46995] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46996] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46997] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46998] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46999] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47000] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47001] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47002] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47003] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47004] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47005] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47006] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47007] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47008] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47009] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47010] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47011] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47012] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47013] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47014] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47015] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47016] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47017] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47018] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47019] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47020] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47021] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47022] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47023] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47024] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47025] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47026] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47027] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47028] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47029] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47030] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47031] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47032] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47033] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47034] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47035] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47036] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47037] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47038] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47039] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47040] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47041] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47042] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47043] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47044] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47045] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47046] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47047] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47048] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47049] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47050] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47051] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47052] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47053] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47054] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47055] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47056] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47057] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47058] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47059] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47060] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47061] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47062] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47063] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47064] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47065] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47066] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47067] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47068] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47069] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47070] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47071] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47072] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47073] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47074] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47075] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47076] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47077] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47078] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47079] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47080] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47081] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47082] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47083] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47086] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47087] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47088] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47089] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47090] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47091] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47092] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47093] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47094] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47095] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47096] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47097] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47098] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47099] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47100] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47101] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47102] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47103] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47104] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47105] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47106] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47107] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47108] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47109] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-47110] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47111] = "fixed-version: Fixed from version 5.13rc6"
-
-CVE_STATUS[CVE-2021-47112] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47113] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47114] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47116] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47117] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47118] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47119] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47120] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47121] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47122] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47123] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47124] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47125] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47126] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47127] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47128] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47129] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47130] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47131] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47132] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47133] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47134] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47135] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47136] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47137] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47138] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47139] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47140] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47141] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47142] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47143] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47144] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47145] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47146] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47147] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47148] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47149] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47150] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47151] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47152] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47153] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47158] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47159] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47160] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47161] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47162] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47163] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47164] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47165] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47166] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47167] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47168] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47169] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47170] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47171] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47172] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47173] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47174] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47175] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47176] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47177] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47178] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47179] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47180] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2022-0001] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-0002] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-0168] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-0171] = "fixed-version: Fixed from version 5.18rc4"
-
-CVE_STATUS[CVE-2022-0185] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-0264] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2022-0286] = "fixed-version: Fixed from version 5.14rc2"
-
-CVE_STATUS[CVE-2022-0322] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2022-0330] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-0382] = "fixed-version: Fixed from version 5.16"
-
-# CVE-2022-0400 has no known resolution
-
-CVE_STATUS[CVE-2022-0433] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-0435] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-0480] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-0487] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-0492] = "fixed-version: Fixed from version 5.17rc3"
-
-CVE_STATUS[CVE-2022-0494] = "fixed-version: Fixed from version 5.17rc5"
-
-CVE_STATUS[CVE-2022-0500] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-0516] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-0617] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-0644] = "fixed-version: Fixed from version 5.15rc7"
-
-CVE_STATUS[CVE-2022-0646] = "fixed-version: Fixed from version 5.17rc5"
-
-CVE_STATUS[CVE-2022-0742] = "fixed-version: Fixed from version 5.17rc7"
-
-CVE_STATUS[CVE-2022-0812] = "fixed-version: Fixed from version 5.8rc6"
-
-CVE_STATUS[CVE-2022-0847] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-0850] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2022-0854] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-0995] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-0998] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-1011] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-1012] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1015] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1016] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1043] = "fixed-version: Fixed from version 5.14rc7"
-
-CVE_STATUS[CVE-2022-1048] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1055] = "fixed-version: Fixed from version 5.17rc3"
-
-# CVE-2022-1116 has no known resolution
-
-CVE_STATUS[CVE-2022-1158] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1184] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1195] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2022-1198] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-1199] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-1204] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1205] = "fixed-version: Fixed from version 5.18rc1"
-
-# CVE-2022-1247 has no known resolution
-
-CVE_STATUS[CVE-2022-1263] = "fixed-version: Fixed from version 5.18rc3"
-
-CVE_STATUS[CVE-2022-1280] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-1353] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-1419] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2022-1462] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-1508] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-1516] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1651] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1652] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1671] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1678] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2022-1679] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-1729] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2022-1734] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1786] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-1789] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2022-1836] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2022-1852] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1882] = "fixed-version: Fixed from version 5.19rc8"
-
-CVE_STATUS[CVE-2022-1943] = "fixed-version: Fixed from version 5.18rc7"
-
-CVE_STATUS[CVE-2022-1966] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1972] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1973] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1974] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1975] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1976] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1998] = "fixed-version: Fixed from version 5.17rc3"
-
-CVE_STATUS[CVE-2022-20008] = "fixed-version: Fixed from version 5.17rc5"
-
-CVE_STATUS[CVE-2022-20132] = "fixed-version: Fixed from version 5.16rc5"
-
-CVE_STATUS[CVE-2022-20141] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-20148] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2022-20153] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2022-20154] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2022-20158] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-20166] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2022-20368] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-20369] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-20409] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-20421] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-20422] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-20423] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-20424] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-20565] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2022-20566] = "fixed-version: Fixed from version 5.19"
-
-CVE_STATUS[CVE-2022-20567] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2022-20568] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-20572] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-2078] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-21123] = "fixed-version: Fixed from version 5.19rc3"
-
-CVE_STATUS[CVE-2022-21125] = "fixed-version: Fixed from version 5.19rc3"
-
-CVE_STATUS[CVE-2022-21166] = "fixed-version: Fixed from version 5.19rc3"
-
-CVE_STATUS[CVE-2022-21385] = "fixed-version: Fixed from version 4.20"
-
-CVE_STATUS[CVE-2022-21499] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-21505] = "fixed-version: Fixed from version 5.19rc8"
-
-CVE_STATUS[CVE-2022-2153] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-2196] = "fixed-version: Fixed from version 6.2rc1"
-
-# CVE-2022-2209 has no known resolution
-
-CVE_STATUS[CVE-2022-22942] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-23036] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23037] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23038] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23039] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23040] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23041] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23042] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-2308] = "fixed-version: Fixed from version 6.0"
-
-CVE_STATUS[CVE-2022-2318] = "fixed-version: Fixed from version 5.19rc5"
-
-CVE_STATUS[CVE-2022-23222] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-2327] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-2380] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-23816] = "fixed-version: Fixed from version 5.19rc7"
-
-# CVE-2022-23825 has no known resolution
-
-CVE_STATUS[CVE-2022-23960] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-24122] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-24448] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-24958] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-24959] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-2503] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-25258] = "fixed-version: Fixed from version 5.17rc4"
-
-# CVE-2022-25265 has no known resolution
-
-CVE_STATUS[CVE-2022-25375] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-25636] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-2585] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-2586] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-2588] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-2590] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2022-2602] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-26365] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-26373] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-2639] = "fixed-version: Fixed from version 5.18rc4"
-
-CVE_STATUS[CVE-2022-26490] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-2663] = "fixed-version: Fixed from version 6.0rc5"
-
-# CVE-2022-26878 has no known resolution
-
-CVE_STATUS[CVE-2022-26966] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-27223] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-27666] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-27672] = "fixed-version: Fixed from version 6.2"
-
-CVE_STATUS[CVE-2022-2785] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-27950] = "fixed-version: Fixed from version 5.17rc5"
-
-CVE_STATUS[CVE-2022-28356] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-28388] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-28389] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-28390] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-2873] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-28796] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-28893] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2022-2905] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-29156] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-2938] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-29581] = "fixed-version: Fixed from version 5.18rc4"
-
-CVE_STATUS[CVE-2022-29582] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2022-2959] = "fixed-version: Fixed from version 5.19rc1"
-
-# CVE-2022-2961 has no known resolution
-
-CVE_STATUS[CVE-2022-2964] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-2977] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-2978] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-29900] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-29901] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-2991] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-29968] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2022-3028] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2022-30594] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3061] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2022-3077] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3078] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3103] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2022-3104] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3105] = "fixed-version: Fixed from version 5.16"
-
-CVE_STATUS[CVE-2022-3106] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2022-3107] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-3108] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-3110] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3111] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3112] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3113] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3114] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3115] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3169] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3170] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-3176] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-3202] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-32250] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-32296] = "fixed-version: Fixed from version 5.18rc6"
-
-# CVE-2022-3238 has no known resolution
-
-CVE_STATUS[CVE-2022-3239] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-32981] = "fixed-version: Fixed from version 5.19rc2"
-
-CVE_STATUS[CVE-2022-3303] = "fixed-version: Fixed from version 6.0rc5"
-
-CVE_STATUS[CVE-2022-3344] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2022-33740] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33741] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33742] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33743] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33744] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33981] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2022-3424] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-3435] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-34494] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-34495] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-34918] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-3521] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3522] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3523] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3524] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3526] = "fixed-version: Fixed from version 5.18rc3"
-
-CVE_STATUS[CVE-2022-3531] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-3532] = "fixed-version: Fixed from version 6.2rc1"
-
-# CVE-2022-3533 has no known resolution
-
-CVE_STATUS[CVE-2022-3534] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-3535] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3541] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3542] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3543] = "fixed-version: Fixed from version 6.1rc1"
-
-# CVE-2022-3544 has no known resolution
-
-CVE_STATUS[CVE-2022-3545] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3564] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-3565] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3566] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3567] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3577] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3586] = "fixed-version: Fixed from version 6.0rc5"
-
-CVE_STATUS[CVE-2022-3594] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3595] = "fixed-version: Fixed from version 6.1rc1"
-
-# CVE-2022-3606 has no known resolution
-
-CVE_STATUS[CVE-2022-36123] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-3619] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-3621] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3623] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3624] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3625] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3628] = "fixed-version: Fixed from version 6.1rc5"
-
-CVE_STATUS[CVE-2022-36280] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-3629] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3630] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3633] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3635] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3636] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3640] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-36402] = "fixed-version: Fixed from version 6.5"
-
-# CVE-2022-3642 has no known resolution
-
-CVE_STATUS[CVE-2022-3643] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-3646] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3649] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-36879] = "fixed-version: Fixed from version 5.19rc8"
-
-CVE_STATUS[CVE-2022-36946] = "fixed-version: Fixed from version 5.19"
-
-CVE_STATUS[CVE-2022-3707] = "fixed-version: Fixed from version 6.2rc3"
-
-# CVE-2022-38096 has no known resolution
-
-CVE_STATUS[CVE-2022-38457] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2022-3903] = "fixed-version: Fixed from version 6.1rc2"
-
-CVE_STATUS[CVE-2022-3910] = "fixed-version: Fixed from version 6.0rc6"
-
-CVE_STATUS[CVE-2022-39188] = "fixed-version: Fixed from version 5.19rc8"
-
-CVE_STATUS[CVE-2022-39189] = "fixed-version: Fixed from version 5.19rc2"
-
-CVE_STATUS[CVE-2022-39190] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2022-3977] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-39842] = "fixed-version: Fixed from version 5.19rc4"
-
-CVE_STATUS[CVE-2022-40133] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2022-40307] = "fixed-version: Fixed from version 6.0rc5"
-
-CVE_STATUS[CVE-2022-40476] = "fixed-version: Fixed from version 5.19rc4"
-
-CVE_STATUS[CVE-2022-40768] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-4095] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-40982] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2022-41218] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-41222] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2022-4127] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-4128] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-4129] = "fixed-version: Fixed from version 6.1rc6"
-
-CVE_STATUS[CVE-2022-4139] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-41674] = "fixed-version: Fixed from version 6.1rc1"
-
-# CVE-2022-41848 has no known resolution
-
-CVE_STATUS[CVE-2022-41849] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-41850] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-41858] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2022-42328] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-42329] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-42432] = "fixed-version: Fixed from version 6.0rc7"
-
-CVE_STATUS[CVE-2022-4269] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2022-42703] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-42719] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-42720] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-42721] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-42722] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-42895] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-42896] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-43750] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-4378] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-4379] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-4382] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2022-43945] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-44032] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2022-44033] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2022-44034] = "fixed-version: Fixed from version 6.4rc1"
-
-# CVE-2022-4543 has no known resolution
-
-CVE_STATUS[CVE-2022-45869] = "fixed-version: Fixed from version 6.1rc7"
-
-# CVE-2022-45884 has no known resolution
-
-# CVE-2022-45885 has no known resolution
-
-CVE_STATUS[CVE-2022-45886] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2022-45887] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2022-45888] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-45919] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2022-45934] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-4662] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-4696] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-4744] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2022-47518] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-47519] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-47520] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-47521] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-47929] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2022-47938] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47939] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47940] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-47941] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47942] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47943] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47946] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2022-4842] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-48423] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-48424] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-48425] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2022-48502] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-48619] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-48626] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-48627] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-48628] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2022-48629] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-48630] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2023-0030] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2023-0045] = "fixed-version: Fixed from version 6.2rc3"
-
-CVE_STATUS[CVE-2023-0047] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2023-0122] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2023-0160] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-0179] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-0210] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2023-0240] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2023-0266] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2023-0386] = "fixed-version: Fixed from version 6.2rc6"
-
-CVE_STATUS[CVE-2023-0394] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2023-0458] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-0459] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-0461] = "fixed-version: Fixed from version 6.2rc3"
-
-CVE_STATUS[CVE-2023-0468] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-0469] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-0590] = "fixed-version: Fixed from version 6.1rc2"
-
-CVE_STATUS[CVE-2023-0597] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-0615] = "fixed-version: Fixed from version 6.1rc3"
-
-CVE_STATUS[CVE-2023-1032] = "fixed-version: Fixed from version 6.3rc2"
-
-CVE_STATUS[CVE-2023-1073] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-1074] = "fixed-version: Fixed from version 6.2rc6"
-
-CVE_STATUS[CVE-2023-1075] = "fixed-version: Fixed from version 6.2rc7"
-
-CVE_STATUS[CVE-2023-1076] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1077] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1078] = "fixed-version: Fixed from version 6.2rc8"
-
-CVE_STATUS[CVE-2023-1079] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1095] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-1118] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1192] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-1193] = "fixed-version: Fixed from version 6.3rc6"
-
-CVE_STATUS[CVE-2023-1194] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2023-1195] = "fixed-version: Fixed from version 6.1rc3"
-
-CVE_STATUS[CVE-2023-1206] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-1249] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2023-1252] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2023-1281] = "fixed-version: Fixed from version 6.2"
-
-CVE_STATUS[CVE-2023-1295] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2023-1380] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-1382] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-1390] = "fixed-version: Fixed from version 5.11rc4"
-
-# CVE-2023-1476 has no known resolution
-
-CVE_STATUS[CVE-2023-1513] = "fixed-version: Fixed from version 6.2"
-
-CVE_STATUS[CVE-2023-1582] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2023-1583] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-1611] = "fixed-version: Fixed from version 6.3rc5"
-
-CVE_STATUS[CVE-2023-1637] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2023-1652] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-1670] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-1829] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1838] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2023-1855] = "fixed-version: Fixed from version 6.3rc3"
-
-CVE_STATUS[CVE-2023-1859] = "fixed-version: Fixed from version 6.3rc7"
-
-CVE_STATUS[CVE-2023-1872] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2023-1989] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-1990] = "fixed-version: Fixed from version 6.3rc3"
-
-CVE_STATUS[CVE-2023-1998] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-2002] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-2006] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-2007] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-2008] = "fixed-version: Fixed from version 5.19rc4"
-
-CVE_STATUS[CVE-2023-2019] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-20569] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-20588] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-20593] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-20928] = "fixed-version: Fixed from version 6.0rc1"
-
-# CVE-2023-20937 has no known resolution
-
-CVE_STATUS[CVE-2023-20938] = "fixed-version: Fixed from version 5.18rc5"
-
-# CVE-2023-20941 has no known resolution
-
-CVE_STATUS[CVE-2023-21102] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2023-21106] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-2124] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-21255] = "fixed-version: Fixed from version 6.4rc4"
-
-CVE_STATUS[CVE-2023-21264] = "fixed-version: Fixed from version 6.4rc5"
-
-# CVE-2023-21400 has no known resolution
-
-CVE_STATUS[CVE-2023-2156] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-2162] = "fixed-version: Fixed from version 6.2rc6"
-
-CVE_STATUS[CVE-2023-2163] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-2166] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2023-2176] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-2177] = "fixed-version: Fixed from version 5.19"
-
-CVE_STATUS[CVE-2023-2194] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-2235] = "fixed-version: Fixed from version 6.3rc3"
-
-CVE_STATUS[CVE-2023-2236] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-2248] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-2269] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-22995] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-22996] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2023-22997] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-22998] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-22999] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-23000] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-23001] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-23002] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-23003] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2023-23004] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2023-23005] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-23006] = "fixed-version: Fixed from version 5.16rc8"
-
-# CVE-2023-23039 has no known resolution
-
-CVE_STATUS[CVE-2023-23454] = "fixed-version: Fixed from version 6.2rc3"
-
-CVE_STATUS[CVE-2023-23455] = "fixed-version: Fixed from version 6.2rc3"
-
-CVE_STATUS[CVE-2023-23559] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-23586] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2023-2430] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-2483] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-25012] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-2513] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-25775] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-2598] = "fixed-version: Fixed from version 6.4rc1"
-
-# CVE-2023-26242 has no known resolution
-
-# CVE-2023-2640 has no known resolution
-
-CVE_STATUS[CVE-2023-26544] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-26545] = "fixed-version: Fixed from version 6.2"
-
-CVE_STATUS[CVE-2023-26605] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-26606] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-26607] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2023-28327] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2023-28328] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-28410] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2023-28464] = "fixed-version: Fixed from version 6.3rc7"
-
-CVE_STATUS[CVE-2023-28466] = "fixed-version: Fixed from version 6.3rc2"
-
-CVE_STATUS[CVE-2023-2860] = "fixed-version: Fixed from version 6.0rc5"
-
-CVE_STATUS[CVE-2023-28746] = "cpe-stable-backport: Backported in 6.6.22"
-
-CVE_STATUS[CVE-2023-28772] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2023-28866] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-2898] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-2985] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-3006] = "fixed-version: Fixed from version 6.1rc1"
-
-# Skipping CVE-2023-3022, no affected_versions
-
-CVE_STATUS[CVE-2023-30456] = "fixed-version: Fixed from version 6.3rc3"
-
-CVE_STATUS[CVE-2023-30772] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-3090] = "fixed-version: Fixed from version 6.4rc2"
-
-CVE_STATUS[CVE-2023-3106] = "fixed-version: Fixed from version 4.8rc7"
-
-# Skipping CVE-2023-3108, no affected_versions
-
-# CVE-2023-31081 has no known resolution
-
-# CVE-2023-31082 has no known resolution
-
-CVE_STATUS[CVE-2023-31083] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-31084] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2023-31085] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-3111] = "fixed-version: Fixed from version 6.0rc2"
-
-CVE_STATUS[CVE-2023-3117] = "fixed-version: Fixed from version 6.4rc7"
-
-CVE_STATUS[CVE-2023-31248] = "fixed-version: Fixed from version 6.5rc2"
-
-CVE_STATUS[CVE-2023-3141] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-31436] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-3159] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2023-3161] = "fixed-version: Fixed from version 6.2rc7"
-
-CVE_STATUS[CVE-2023-3212] = "fixed-version: Fixed from version 6.4rc2"
-
-CVE_STATUS[CVE-2023-3220] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-32233] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32247] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32248] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32250] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32252] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32254] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32257] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32258] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32269] = "fixed-version: Fixed from version 6.2rc7"
-
-# CVE-2023-32629 has no known resolution
-
-CVE_STATUS[CVE-2023-3268] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-3269] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-3312] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-3317] = "fixed-version: Fixed from version 6.3rc6"
-
-CVE_STATUS[CVE-2023-33203] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-33250] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-33288] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-3338] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2023-3355] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-3357] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-3358] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-3359] = "fixed-version: Fixed from version 6.2rc7"
-
-CVE_STATUS[CVE-2023-3389] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-3390] = "fixed-version: Fixed from version 6.4rc7"
-
-CVE_STATUS[CVE-2023-33951] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-33952] = "fixed-version: Fixed from version 6.4rc1"
-
-# CVE-2023-3397 has no known resolution
-
-CVE_STATUS[CVE-2023-34255] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-34256] = "fixed-version: Fixed from version 6.4rc2"
-
-CVE_STATUS[CVE-2023-34319] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-34324] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-3439] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2023-35001] = "fixed-version: Fixed from version 6.5rc2"
-
-CVE_STATUS[CVE-2023-3567] = "fixed-version: Fixed from version 6.2rc7"
-
-# CVE-2023-35693 has no known resolution
-
-CVE_STATUS[CVE-2023-35788] = "fixed-version: Fixed from version 6.4rc5"
-
-CVE_STATUS[CVE-2023-35823] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-35824] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-35826] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-35827] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-35828] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-35829] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-3609] = "fixed-version: Fixed from version 6.4rc7"
-
-CVE_STATUS[CVE-2023-3610] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-3611] = "fixed-version: Fixed from version 6.5rc2"
-
-# CVE-2023-3640 has no known resolution
-
-CVE_STATUS[CVE-2023-37453] = "fixed-version: Fixed from version 6.6rc1"
-
-# CVE-2023-37454 has no known resolution
-
-CVE_STATUS[CVE-2023-3772] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-3773] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-3776] = "fixed-version: Fixed from version 6.5rc2"
-
-CVE_STATUS[CVE-2023-3777] = "fixed-version: Fixed from version 6.5rc3"
-
-CVE_STATUS[CVE-2023-3812] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2023-38409] = "fixed-version: Fixed from version 6.3rc7"
-
-CVE_STATUS[CVE-2023-38426] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2023-38427] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2023-38428] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2023-38429] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2023-38430] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2023-38431] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2023-38432] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-3863] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-3865] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-3866] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-3867] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-39189] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-39191] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-39192] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-39193] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-39194] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-39197] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-39198] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-4004] = "fixed-version: Fixed from version 6.5rc3"
-
-# CVE-2023-4010 has no known resolution
-
-CVE_STATUS[CVE-2023-4015] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-40283] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-40791] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-4128] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4132] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-4133] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-4134] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-4147] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-4155] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-4194] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4206] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4207] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4208] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4244] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-4273] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-42752] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-42753] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-42754] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-42755] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-42756] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-4385] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2023-4387] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2023-4389] = "fixed-version: Fixed from version 5.18rc3"
-
-CVE_STATUS[CVE-2023-4394] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2023-44466] = "fixed-version: Fixed from version 6.5rc2"
-
-CVE_STATUS[CVE-2023-4459] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2023-4563] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-4569] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-45862] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-45863] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-45871] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-45898] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-4610] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-4611] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-4622] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-4623] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-46343] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-46813] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-46838] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-46862] = "fixed-version: Fixed from version 6.6"
-
-CVE_STATUS[CVE-2023-47233] = "cpe-stable-backport: Backported in 6.6.24"
-
-CVE_STATUS[CVE-2023-4732] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2023-4881] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-4921] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-50431] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-5090] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-51042] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-51043] = "fixed-version: Fixed from version 6.5rc3"
-
-CVE_STATUS[CVE-2023-5158] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-51779] = "cpe-stable-backport: Backported in 6.6.9"
-
-CVE_STATUS[CVE-2023-5178] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-51780] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2023-51781] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2023-51782] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2023-5197] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52340] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-52429] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2023-52433] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52434] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2023-52435] = "cpe-stable-backport: Backported in 6.6.11"
-
-CVE_STATUS[CVE-2023-52436] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-52438] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-52439] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-52440] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52441] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-52442] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-52443] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52444] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52445] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52446] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52447] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52448] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52449] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52450] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52451] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52452] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52453] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52454] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52455] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52456] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52457] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52458] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52459] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52460] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2023-52461] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2023-52462] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52463] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52464] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52465] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52467] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52468] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52469] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52470] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52471] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2023-52472] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52473] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52474] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-52475] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52476] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52477] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52478] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52479] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52480] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52481] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52482] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52483] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52484] = "fixed-version: Fixed from version 6.6rc5"
-
-# CVE-2023-52485 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52486] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52487] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52488] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52489] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52490] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52491] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52492] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52493] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52494] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52495] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52497] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52498] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52499] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52500] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-52501] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-52502] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52503] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52504] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52505] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52506] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52507] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52508] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-52509] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52510] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52511] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52512] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52513] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52515] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52516] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52517] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52518] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52519] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52520] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52522] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52523] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52524] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52525] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52526] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52527] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52528] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52529] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52530] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52531] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52532] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52559] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52560] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52561] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52562] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52563] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52564] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52565] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52566] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52567] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52568] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52569] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-52570] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52571] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52572] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52573] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52574] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52575] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52576] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52577] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52578] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52580] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52581] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52582] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52583] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52584] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2023-52585 needs backporting (fixed from 6.8rc1)
-
-# CVE-2023-52586 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52587] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52588] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52589] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2023-52590 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52591] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52593] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52594] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52595] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52596] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52597] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52598] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52599] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52600] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52601] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52602] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52603] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52604] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52606] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52607] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52608] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52609] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52610] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52611] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52612] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52613] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52614] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52615] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52616] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52617] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52618] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52619] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52620] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-52621] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52622] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52623] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2023-52624 needs backporting (fixed from 6.8rc1)
-
-# CVE-2023-52625 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52626] = "fixed-version: only affects 6.7rc2 onwards"
-
-CVE_STATUS[CVE-2023-52627] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52628] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52629] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52630] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2023-52631] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2023-52632] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52633] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2023-52634 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52635] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52636] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2023-52637] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2023-52638] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2023-52639] = "cpe-stable-backport: Backported in 6.6.22"
-
-CVE_STATUS[CVE-2023-52640] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2023-52641] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2023-5345] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-5633] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-5717] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-5972] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-6039] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-6040] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2023-6111] = "cpe-stable-backport: Backported in 6.6.3"
-
-CVE_STATUS[CVE-2023-6121] = "cpe-stable-backport: Backported in 6.6.4"
-
-CVE_STATUS[CVE-2023-6176] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-6200] = "cpe-stable-backport: Backported in 6.6.9"
-
-# CVE-2023-6238 has no known resolution
-
-# CVE-2023-6240 has no known resolution
-
-CVE_STATUS[CVE-2023-6270] = "cpe-stable-backport: Backported in 6.6.23"
-
-CVE_STATUS[CVE-2023-6356] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-6531] = "cpe-stable-backport: Backported in 6.6.7"
-
-# CVE-2023-6535 has no known resolution
-
-CVE_STATUS[CVE-2023-6536] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-6546] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-6560] = "cpe-stable-backport: Backported in 6.6.5"
-
-CVE_STATUS[CVE-2023-6606] = "cpe-stable-backport: Backported in 6.6.9"
-
-CVE_STATUS[CVE-2023-6610] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-6622] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2023-6679] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2023-6817] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2023-6915] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-6931] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2023-6932] = "cpe-stable-backport: Backported in 6.6.5"
-
-CVE_STATUS[CVE-2023-7042] = "cpe-stable-backport: Backported in 6.6.23"
-
-CVE_STATUS[CVE-2023-7192] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2024-0193] = "cpe-stable-backport: Backported in 6.6.10"
-
-CVE_STATUS[CVE-2024-0340] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2024-0443] = "fixed-version: Fixed from version 6.4rc7"
-
-CVE_STATUS[CVE-2024-0562] = "fixed-version: Fixed from version 6.0rc3"
-
-# CVE-2024-0564 has no known resolution
-
-CVE_STATUS[CVE-2024-0565] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2024-0582] = "cpe-stable-backport: Backported in 6.6.5"
-
-CVE_STATUS[CVE-2024-0584] = "cpe-stable-backport: Backported in 6.6.5"
-
-CVE_STATUS[CVE-2024-0607] = "cpe-stable-backport: Backported in 6.6.3"
-
-CVE_STATUS[CVE-2024-0639] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2024-0641] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2024-0646] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2024-0775] = "fixed-version: Fixed from version 6.4rc2"
-
-CVE_STATUS[CVE-2024-0841] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-1085] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-1086] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-1151] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-1312] = "fixed-version: Fixed from version 6.5rc4"
-
-# CVE-2024-21803 has no known resolution
-
-# CVE-2024-2193 has no known resolution
-
-CVE_STATUS[CVE-2024-22099] = "cpe-stable-backport: Backported in 6.6.23"
-
-# CVE-2024-22386 has no known resolution
-
-CVE_STATUS[CVE-2024-22705] = "cpe-stable-backport: Backported in 6.6.10"
-
-CVE_STATUS[CVE-2024-23196] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2024-23307] = "cpe-stable-backport: Backported in 6.6.24"
-
-# CVE-2024-23848 has no known resolution
-
-CVE_STATUS[CVE-2024-23849] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-23850] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-23851] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-24855] = "fixed-version: Fixed from version 6.5rc2"
-
-# CVE-2024-24857 has no known resolution
-
-# CVE-2024-24858 has no known resolution
-
-# CVE-2024-24859 has no known resolution
-
-CVE_STATUS[CVE-2024-24860] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-24861] = "cpe-stable-backport: Backported in 6.6.24"
-
-# CVE-2024-24864 has no known resolution
-
-# CVE-2024-25739 has no known resolution
-
-# CVE-2024-25740 has no known resolution
-
-# CVE-2024-25741 has no known resolution
-
-CVE_STATUS[CVE-2024-25744] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2024-26581] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26582] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26583] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26584] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26585] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26586] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26587] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26588] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26589] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26590] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26591] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26592] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26593] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26594] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26595] = "cpe-stable-backport: Backported in 6.6.14"
-
-# CVE-2024-26596 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2024-26597] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26598] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26599] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26600] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26601] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26602] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26603] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26604] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26605] = "fixed-version: only affects 6.7 onwards"
-
-CVE_STATUS[CVE-2024-26606] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26607] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26608] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26610] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26611] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26612] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26614] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26615] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26616] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26617] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26618] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26619] = "fixed-version: only affects 6.7rc5 onwards"
-
-CVE_STATUS[CVE-2024-26620] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26621] = "fixed-version: only affects 6.7 onwards"
-
-CVE_STATUS[CVE-2024-26622] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26623] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26625] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26626] = "fixed-version: only affects 6.8rc1 onwards"
-
-CVE_STATUS[CVE-2024-26627] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26629] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26630] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26631] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26632] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26633] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26634] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26635] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26636] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26637] = "fixed-version: only affects 6.7 onwards"
-
-CVE_STATUS[CVE-2024-26638] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26639] = "fixed-version: only affects 6.8rc1 onwards"
-
-CVE_STATUS[CVE-2024-26640] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26641] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26642] = "cpe-stable-backport: Backported in 6.6.24"
-
-CVE_STATUS[CVE-2024-26643] = "cpe-stable-backport: Backported in 6.6.24"
-
-CVE_STATUS[CVE-2024-26644] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26645] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26646] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26647] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26648] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26649] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26650] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26651] = "cpe-stable-backport: Backported in 6.6.23"
-
-CVE_STATUS[CVE-2024-26652] = "cpe-stable-backport: Backported in 6.6.22"
-
-CVE_STATUS[CVE-2024-26653] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26654] = "cpe-stable-backport: Backported in 6.6.24"
-
-# CVE-2024-26655 needs backporting (fixed from 6.9rc2)
-
-CVE_STATUS[CVE-2024-26656] = "cpe-stable-backport: Backported in 6.6.24"
-
-CVE_STATUS[CVE-2024-26657] = "fixed-version: only affects 6.7rc1 onwards"
-
-# CVE-2024-26658 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2024-26659] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26660] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26661] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26662] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26663] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26664] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26665] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26666] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26667] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26668] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26669] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26670] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26671] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2024-26672 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2024-26673] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26674] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26675] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26676] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26677] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26678] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26679] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26680] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26681] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26682] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26683] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26684] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26685] = "cpe-stable-backport: Backported in 6.6.18"
-
-# CVE-2024-26686 needs backporting (fixed from 6.8rc4)
-
-CVE_STATUS[CVE-2024-26687] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26688] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26689] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26690] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26691] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26692] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26693] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26694] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26695] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26696] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26697] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26698] = "cpe-stable-backport: Backported in 6.6.18"
-
-# CVE-2024-26699 needs backporting (fixed from 6.8rc5)
-
-CVE_STATUS[CVE-2024-26700] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26702] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26703] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26704] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26705] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26706] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26707] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26708] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26709] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26710] = "fixed-version: only affects 6.8rc1 onwards"
-
-CVE_STATUS[CVE-2024-26711] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26712] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26713] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26714] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26715] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26716] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26717] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26718] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26719] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26720] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26721] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26722] = "fixed-version: only affects 6.7rc5 onwards"
-
-CVE_STATUS[CVE-2024-26723] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26724] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26725] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26726] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26727] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26728] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26729] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26730] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26731] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26732] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26733] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26734] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26735] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26736] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26737] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26738] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26739] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26740] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26741] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26742] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26743] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26744] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26745] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26746] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26747] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26748] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26749] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26750] = "fixed-version: only affects 6.8rc5 onwards"
-
-CVE_STATUS[CVE-2024-26751] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26752] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26753] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26754] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26755] = "fixed-version: only affects 6.7rc1 onwards"
-
-# CVE-2024-26756 needs backporting (fixed from 6.8rc6)
-
-# CVE-2024-26757 needs backporting (fixed from 6.8rc6)
-
-# CVE-2024-26758 needs backporting (fixed from 6.8rc6)
-
-CVE_STATUS[CVE-2024-26759] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26760] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26761] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26762] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26763] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26764] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26765] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26766] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26767] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26768] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26769] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26770] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26771] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26772] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26773] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26774] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26775] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26776] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26777] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26778] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26779] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26780] = "fixed-version: only affects 6.8rc4 onwards"
-
-CVE_STATUS[CVE-2024-26781] = "fixed-version: only affects 6.8rc6 onwards"
-
-CVE_STATUS[CVE-2024-26782] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26783] = "cpe-stable-backport: Backported in 6.6.22"
-
-# CVE-2024-26784 needs backporting (fixed from 6.8rc7)
-
-# CVE-2024-26785 needs backporting (fixed from 6.8rc7)
-
-CVE_STATUS[CVE-2024-26786] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26787] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26788] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26789] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26790] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26791] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26792] = "fixed-version: only affects 6.8rc4 onwards"
-
-CVE_STATUS[CVE-2024-26793] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26794] = "fixed-version: only affects 6.8rc6 onwards"
-
-CVE_STATUS[CVE-2024-26795] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26796] = "cpe-stable-backport: Backported in 6.6.21"
-
-# CVE-2024-26797 needs backporting (fixed from 6.8rc7)
-
-CVE_STATUS[CVE-2024-26798] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26799] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26800] = "fixed-version: only affects 6.8rc5 onwards"
-
-CVE_STATUS[CVE-2024-26801] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26802] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26803] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26804] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26805] = "cpe-stable-backport: Backported in 6.6.21"
-
-# CVE-2024-26806 needs backporting (fixed from 6.8rc7)
-
-CVE_STATUS[CVE-2024-26807] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26808] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26809] = "cpe-stable-backport: Backported in 6.6.23"
-
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_6.6.bb b/meta/recipes-kernel/linux/linux-yocto-rt_6.6.bb
deleted file mode 100644
index 46ee088d75..0000000000
--- a/meta/recipes-kernel/linux/linux-yocto-rt_6.6.bb
+++ /dev/null
@@ -1,48 +0,0 @@
-KBRANCH ?= "v6.6/standard/preempt-rt/base"
-
-require recipes-kernel/linux/linux-yocto.inc
-
-# CVE exclusions
-include recipes-kernel/linux/cve-exclusion_6.6.inc
-
-# Skip processing of this recipe if it is not explicitly specified as the
-# PREFERRED_PROVIDER for virtual/kernel. This avoids errors when trying
-# to build multiple virtual/kernel providers, e.g. as dependency of
-# core-image-rt-sdk, core-image-rt.
-python () {
-    if d.getVar("KERNEL_PACKAGE_NAME") == "kernel" and d.getVar("PREFERRED_PROVIDER_virtual/kernel") != "linux-yocto-rt":
-        raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it")
-}
-
-SRCREV_machine ?= "0f28e3f97d1e08e950d8ebbe42ec9515bd651e5b"
-SRCREV_meta ?= "078f986aa4c328285abd0181cc21724d832a3ae0"
-
-SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \
-           git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.6;destsuffix=${KMETA};protocol=https"
-
-LINUX_VERSION ?= "6.6.74"
-
-LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
-
-DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
-DEPENDS += "openssl-native util-linux-native"
-
-PV = "${LINUX_VERSION}+git"
-
-KMETA = "kernel-meta"
-KCONF_BSP_AUDIT_LEVEL = "1"
-
-LINUX_KERNEL_TYPE = "preempt-rt"
-
-COMPATIBLE_MACHINE = "^(qemux86|qemux86-64|qemuarm|qemuarmv5|qemuarm64|qemuppc|qemumips)$"
-
-KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb"
-
-# Functionality flags
-KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc"
-KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}"
-KERNEL_FEATURES:append:qemuall = " cfg/virtio.scc features/drm-bochs/drm-bochs.scc"
-KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc"
-KERNEL_FEATURES:append:qemux86-64 = " cfg/sound.scc cfg/paravirt_kvm.scc"
-KERNEL_FEATURES:append = "${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc", "", d)}"
-KERNEL_FEATURES:append = "${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/gpio/mockup.scc features/gpio/sim.scc", "", d)}"
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_6.6.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_6.6.bb
deleted file mode 100644
index 6ad4641ef4..0000000000
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_6.6.bb
+++ /dev/null
@@ -1,33 +0,0 @@
-KBRANCH ?= "v6.6/standard/tiny/base"
-
-LINUX_KERNEL_TYPE = "tiny"
-KCONFIG_MODE = "--allnoconfig"
-
-require recipes-kernel/linux/linux-yocto.inc
-
-# CVE exclusions
-include recipes-kernel/linux/cve-exclusion_6.6.inc
-
-LINUX_VERSION ?= "6.6.74"
-LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
-
-DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
-DEPENDS += "openssl-native util-linux-native"
-
-KMETA = "kernel-meta"
-KCONF_BSP_AUDIT_LEVEL = "2"
-
-SRCREV_machine ?= "88adfb046ab500d81fea869024b0675c618754d9"
-SRCREV_meta ?= "078f986aa4c328285abd0181cc21724d832a3ae0"
-
-PV = "${LINUX_VERSION}+git"
-
-SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \
-           git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.6;destsuffix=${KMETA};protocol=https"
-
-COMPATIBLE_MACHINE = "^(qemux86|qemux86-64|qemuarm64|qemuarm|qemuarmv5)$"
-
-# Functionality flags
-KERNEL_FEATURES = ""
-
-KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb"
diff --git a/meta/recipes-kernel/linux/linux-yocto_6.6.bb b/meta/recipes-kernel/linux/linux-yocto_6.6.bb
deleted file mode 100644
index 9f287f2789..0000000000
--- a/meta/recipes-kernel/linux/linux-yocto_6.6.bb
+++ /dev/null
@@ -1,74 +0,0 @@
-KBRANCH ?= "v6.6/standard/base"
-
-require recipes-kernel/linux/linux-yocto.inc
-
-# CVE exclusions
-include recipes-kernel/linux/cve-exclusion.inc
-include recipes-kernel/linux/cve-exclusion_6.6.inc
-
-# board specific branches
-KBRANCH:qemuarm  ?= "v6.6/standard/arm-versatile-926ejs"
-KBRANCH:qemuarm64 ?= "v6.6/standard/qemuarm64"
-KBRANCH:qemumips ?= "v6.6/standard/mti-malta32"
-KBRANCH:qemuppc  ?= "v6.6/standard/qemuppc"
-KBRANCH:qemuriscv64  ?= "v6.6/standard/base"
-KBRANCH:qemuriscv32  ?= "v6.6/standard/base"
-KBRANCH:qemux86  ?= "v6.6/standard/base"
-KBRANCH:qemux86-64 ?= "v6.6/standard/base"
-KBRANCH:qemuloongarch64  ?= "v6.6/standard/base"
-KBRANCH:qemumips64 ?= "v6.6/standard/mti-malta64"
-
-SRCREV_machine:qemuarm ?= "80e490532fddf18ff2565887b38ace8978e0e1bc"
-SRCREV_machine:qemuarm64 ?= "88adfb046ab500d81fea869024b0675c618754d9"
-SRCREV_machine:qemuloongarch64 ?= "88adfb046ab500d81fea869024b0675c618754d9"
-SRCREV_machine:qemumips ?= "1cd71fe6a69cc984c96f9942367bd350d13ffa93"
-SRCREV_machine:qemuppc ?= "88adfb046ab500d81fea869024b0675c618754d9"
-SRCREV_machine:qemuriscv64 ?= "88adfb046ab500d81fea869024b0675c618754d9"
-SRCREV_machine:qemuriscv32 ?= "88adfb046ab500d81fea869024b0675c618754d9"
-SRCREV_machine:qemux86 ?= "88adfb046ab500d81fea869024b0675c618754d9"
-SRCREV_machine:qemux86-64 ?= "88adfb046ab500d81fea869024b0675c618754d9"
-SRCREV_machine:qemumips64 ?= "2469f917cf13e4a2c100ddf2d347017f832ca44c"
-SRCREV_machine ?= "88adfb046ab500d81fea869024b0675c618754d9"
-SRCREV_meta ?= "078f986aa4c328285abd0181cc21724d832a3ae0"
-
-# set your preferred provider of linux-yocto to 'linux-yocto-upstream', and you'll
-# get the <version>/base branch, which is pure upstream -stable, and the same
-# meta SRCREV as the linux-yocto-standard builds. Select your version using the
-# normal PREFERRED_VERSION settings.
-BBCLASSEXTEND = "devupstream:target"
-SRCREV_machine:class-devupstream ?= "c2e4205116126ab79bfa17a5e8dd73698e3f7299"
-PN:class-devupstream = "linux-yocto-upstream"
-KBRANCH:class-devupstream = "v6.6/base"
-
-SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH};protocol=https \
-           git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.6;destsuffix=${KMETA};protocol=https"
-
-LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
-LINUX_VERSION ?= "6.6.74"
-
-PV = "${LINUX_VERSION}+git"
-
-KMETA = "kernel-meta"
-KCONF_BSP_AUDIT_LEVEL = "1"
-
-KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb"
-
-COMPATIBLE_MACHINE = "^(qemuarm|qemuarmv5|qemuarm64|qemux86|qemuppc|qemuppc64|qemumips|qemumips64|qemux86-64|qemuriscv64|qemuriscv32|qemuloongarch64)$"
-
-# Functionality flags
-KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc"
-KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}"
-KERNEL_FEATURES:append:qemuall = " cfg/virtio.scc features/drm-bochs/drm-bochs.scc cfg/net/mdio.scc"
-KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc"
-KERNEL_FEATURES:append:qemux86-64 = " cfg/sound.scc cfg/paravirt_kvm.scc"
-KERNEL_FEATURES:append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "", d)}"
-KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc features/nf_tables/nft_test.scc", "", d)}"
-KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/gpio/mockup.scc features/gpio/sim.scc", "", d)}"
-# libteam ptests from meta-oe needs it
-KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/net/team/team.scc", "", d)}"
-KERNEL_FEATURES:append:powerpc = " arch/powerpc/powerpc-debug.scc"
-KERNEL_FEATURES:append:powerpc64 = " arch/powerpc/powerpc-debug.scc"
-KERNEL_FEATURES:append:powerpc64le = " arch/powerpc/powerpc-debug.scc"
-
-INSANE_SKIP:kernel-vmlinux:qemuppc64 = "textrel"
-
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 2/5] kernel: remove unused 6.10 CVE exclusion file
  2025-02-09 23:56 [PATCH 0/5] kernel-yocto: consolidated pull request bruce.ashfield
  2025-02-09 23:56 ` [PATCH 1/5] kernel: drop 6.6 reference kernels bruce.ashfield
@ 2025-02-09 23:56 ` bruce.ashfield
  2025-02-09 23:56 ` [PATCH 3/5] linux-yocto/6.12: update to v6.12.12 bruce.ashfield
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 18+ messages in thread
From: bruce.ashfield @ 2025-02-09 23:56 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

When 6.10 was removed, this file was missed.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 .../linux/cve-exclusion_6.10.inc              | 6660 -----------------
 1 file changed, 6660 deletions(-)
 delete mode 100644 meta/recipes-kernel/linux/cve-exclusion_6.10.inc

diff --git a/meta/recipes-kernel/linux/cve-exclusion_6.10.inc b/meta/recipes-kernel/linux/cve-exclusion_6.10.inc
deleted file mode 100644
index 32a0701edf..0000000000
--- a/meta/recipes-kernel/linux/cve-exclusion_6.10.inc
+++ /dev/null
@@ -1,6660 +0,0 @@
-
-# Auto-generated CVE metadata, DO NOT EDIT BY HAND.
-# Generated at 2024-06-06 20:41:33.044442+00:00 for version 6.6.32
-
-#python check_kernel_cve_status_version() {
-#    this_version = "6.6.29"
-#    kernel_version = d.getVar("LINUX_VERSION")
-#    if kernel_version != this_version:
-#        bb.warn("Kernel CVE status needs updating: generated for %s but kernel is %s" % (this_version, kernel_version))
-#}
-#do_cve_check[prefuncs] += "check_kernel_cve_status_version"
-
-CVE_STATUS[CVE-2003-1604] = "fixed-version: Fixed from version 2.6.12rc2"
-
-CVE_STATUS[CVE-2004-0230] = "fixed-version: Fixed from version 3.6rc1"
-
-# CVE-2005-3660 has no known resolution
-
-CVE_STATUS[CVE-2006-3635] = "fixed-version: Fixed from version 2.6.26rc5"
-
-CVE_STATUS[CVE-2006-5331] = "fixed-version: Fixed from version 2.6.19rc3"
-
-CVE_STATUS[CVE-2006-6128] = "fixed-version: Fixed from version 2.6.19rc2"
-
-# CVE-2007-3719 has no known resolution
-
-CVE_STATUS[CVE-2007-4774] = "fixed-version: Fixed from version 2.6.12rc2"
-
-CVE_STATUS[CVE-2007-6761] = "fixed-version: Fixed from version 2.6.24rc6"
-
-CVE_STATUS[CVE-2007-6762] = "fixed-version: Fixed from version 2.6.20rc5"
-
-# CVE-2008-2544 has no known resolution
-
-# CVE-2008-4609 has no known resolution
-
-CVE_STATUS[CVE-2008-7316] = "fixed-version: Fixed from version 2.6.25rc1"
-
-CVE_STATUS[CVE-2009-2692] = "fixed-version: Fixed from version 2.6.31rc6"
-
-CVE_STATUS[CVE-2010-0008] = "fixed-version: Fixed from version 2.6.23rc9"
-
-CVE_STATUS[CVE-2010-3432] = "fixed-version: Fixed from version 2.6.36rc5"
-
-# CVE-2010-4563 has no known resolution
-
-CVE_STATUS[CVE-2010-4648] = "fixed-version: Fixed from version 2.6.37rc6"
-
-CVE_STATUS[CVE-2010-5313] = "fixed-version: Fixed from version 2.6.38rc1"
-
-# CVE-2010-5321 has no known resolution
-
-CVE_STATUS[CVE-2010-5328] = "fixed-version: Fixed from version 2.6.35rc1"
-
-CVE_STATUS[CVE-2010-5329] = "fixed-version: Fixed from version 2.6.39rc1"
-
-CVE_STATUS[CVE-2010-5331] = "fixed-version: Fixed from version 2.6.34rc7"
-
-CVE_STATUS[CVE-2010-5332] = "fixed-version: Fixed from version 2.6.37rc1"
-
-CVE_STATUS[CVE-2011-4098] = "fixed-version: Fixed from version 3.2rc1"
-
-CVE_STATUS[CVE-2011-4131] = "fixed-version: Fixed from version 3.3rc1"
-
-CVE_STATUS[CVE-2011-4915] = "fixed-version: Fixed from version 3.2rc1"
-
-# CVE-2011-4916 has no known resolution
-
-# CVE-2011-4917 has no known resolution
-
-CVE_STATUS[CVE-2011-5321] = "fixed-version: Fixed from version 3.2rc1"
-
-CVE_STATUS[CVE-2011-5327] = "fixed-version: Fixed from version 3.1rc1"
-
-CVE_STATUS[CVE-2012-0957] = "fixed-version: Fixed from version 3.7rc2"
-
-CVE_STATUS[CVE-2012-2119] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-2136] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-2137] = "fixed-version: Fixed from version 3.5rc2"
-
-CVE_STATUS[CVE-2012-2313] = "fixed-version: Fixed from version 3.4rc6"
-
-CVE_STATUS[CVE-2012-2319] = "fixed-version: Fixed from version 3.4rc6"
-
-CVE_STATUS[CVE-2012-2372] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2012-2375] = "fixed-version: Fixed from version 3.4rc1"
-
-CVE_STATUS[CVE-2012-2390] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-2669] = "fixed-version: Fixed from version 3.5rc4"
-
-CVE_STATUS[CVE-2012-2744] = "fixed-version: Fixed from version 2.6.34rc1"
-
-CVE_STATUS[CVE-2012-2745] = "fixed-version: Fixed from version 3.4rc3"
-
-CVE_STATUS[CVE-2012-3364] = "fixed-version: Fixed from version 3.5rc6"
-
-CVE_STATUS[CVE-2012-3375] = "fixed-version: Fixed from version 3.4rc5"
-
-CVE_STATUS[CVE-2012-3400] = "fixed-version: Fixed from version 3.5rc5"
-
-CVE_STATUS[CVE-2012-3412] = "fixed-version: Fixed from version 3.6rc2"
-
-CVE_STATUS[CVE-2012-3430] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-3510] = "fixed-version: Fixed from version 2.6.19rc4"
-
-CVE_STATUS[CVE-2012-3511] = "fixed-version: Fixed from version 3.5rc6"
-
-CVE_STATUS[CVE-2012-3520] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-3552] = "fixed-version: Fixed from version 3.0rc1"
-
-# Skipping CVE-2012-4220, no affected_versions
-
-# Skipping CVE-2012-4221, no affected_versions
-
-# Skipping CVE-2012-4222, no affected_versions
-
-CVE_STATUS[CVE-2012-4398] = "fixed-version: Fixed from version 3.4rc1"
-
-CVE_STATUS[CVE-2012-4444] = "fixed-version: Fixed from version 2.6.36rc4"
-
-CVE_STATUS[CVE-2012-4461] = "fixed-version: Fixed from version 3.7rc6"
-
-CVE_STATUS[CVE-2012-4467] = "fixed-version: Fixed from version 3.6rc5"
-
-CVE_STATUS[CVE-2012-4508] = "fixed-version: Fixed from version 3.7rc3"
-
-CVE_STATUS[CVE-2012-4530] = "fixed-version: Fixed from version 3.8rc1"
-
-# CVE-2012-4542 has no known resolution
-
-CVE_STATUS[CVE-2012-4565] = "fixed-version: Fixed from version 3.7rc4"
-
-CVE_STATUS[CVE-2012-5374] = "fixed-version: Fixed from version 3.8rc1"
-
-CVE_STATUS[CVE-2012-5375] = "fixed-version: Fixed from version 3.8rc1"
-
-CVE_STATUS[CVE-2012-5517] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-6536] = "fixed-version: Fixed from version 3.6rc7"
-
-CVE_STATUS[CVE-2012-6537] = "fixed-version: Fixed from version 3.6rc7"
-
-CVE_STATUS[CVE-2012-6538] = "fixed-version: Fixed from version 3.6rc7"
-
-CVE_STATUS[CVE-2012-6539] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6540] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6541] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6542] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6543] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6544] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6545] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6546] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2012-6547] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-6548] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-6549] = "fixed-version: Fixed from version 3.6rc1"
-
-CVE_STATUS[CVE-2012-6638] = "fixed-version: Fixed from version 3.3rc1"
-
-CVE_STATUS[CVE-2012-6647] = "fixed-version: Fixed from version 3.6rc2"
-
-CVE_STATUS[CVE-2012-6657] = "fixed-version: Fixed from version 3.6"
-
-CVE_STATUS[CVE-2012-6689] = "fixed-version: Fixed from version 3.6rc5"
-
-CVE_STATUS[CVE-2012-6701] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-6703] = "fixed-version: Fixed from version 3.7rc1"
-
-CVE_STATUS[CVE-2012-6704] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2012-6712] = "fixed-version: Fixed from version 3.4rc1"
-
-CVE_STATUS[CVE-2013-0160] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-0190] = "fixed-version: Fixed from version 3.8rc5"
-
-CVE_STATUS[CVE-2013-0216] = "fixed-version: Fixed from version 3.8rc7"
-
-CVE_STATUS[CVE-2013-0217] = "fixed-version: Fixed from version 3.8rc7"
-
-CVE_STATUS[CVE-2013-0228] = "fixed-version: Fixed from version 3.8"
-
-CVE_STATUS[CVE-2013-0231] = "fixed-version: Fixed from version 3.8rc7"
-
-CVE_STATUS[CVE-2013-0268] = "fixed-version: Fixed from version 3.8rc6"
-
-CVE_STATUS[CVE-2013-0290] = "fixed-version: Fixed from version 3.8"
-
-CVE_STATUS[CVE-2013-0309] = "fixed-version: Fixed from version 3.7rc1"
-
-CVE_STATUS[CVE-2013-0310] = "fixed-version: Fixed from version 3.5"
-
-CVE_STATUS[CVE-2013-0311] = "fixed-version: Fixed from version 3.7rc8"
-
-CVE_STATUS[CVE-2013-0313] = "fixed-version: Fixed from version 3.8rc5"
-
-CVE_STATUS[CVE-2013-0343] = "fixed-version: Fixed from version 3.11rc7"
-
-CVE_STATUS[CVE-2013-0349] = "fixed-version: Fixed from version 3.8rc6"
-
-CVE_STATUS[CVE-2013-0871] = "fixed-version: Fixed from version 3.8rc5"
-
-CVE_STATUS[CVE-2013-0913] = "fixed-version: Fixed from version 3.9rc4"
-
-CVE_STATUS[CVE-2013-0914] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1059] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-1763] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-1767] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-1772] = "fixed-version: Fixed from version 3.5rc1"
-
-CVE_STATUS[CVE-2013-1773] = "fixed-version: Fixed from version 3.3rc1"
-
-CVE_STATUS[CVE-2013-1774] = "fixed-version: Fixed from version 3.8rc5"
-
-CVE_STATUS[CVE-2013-1792] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1796] = "fixed-version: Fixed from version 3.9rc4"
-
-CVE_STATUS[CVE-2013-1797] = "fixed-version: Fixed from version 3.9rc4"
-
-CVE_STATUS[CVE-2013-1798] = "fixed-version: Fixed from version 3.9rc4"
-
-CVE_STATUS[CVE-2013-1819] = "fixed-version: Fixed from version 3.8rc6"
-
-CVE_STATUS[CVE-2013-1826] = "fixed-version: Fixed from version 3.6rc7"
-
-CVE_STATUS[CVE-2013-1827] = "fixed-version: Fixed from version 3.6rc3"
-
-CVE_STATUS[CVE-2013-1828] = "fixed-version: Fixed from version 3.9rc2"
-
-CVE_STATUS[CVE-2013-1848] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1858] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1860] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-1928] = "fixed-version: Fixed from version 3.7rc3"
-
-CVE_STATUS[CVE-2013-1929] = "fixed-version: Fixed from version 3.9rc6"
-
-# Skipping CVE-2013-1935, no affected_versions
-
-CVE_STATUS[CVE-2013-1943] = "fixed-version: Fixed from version 3.0rc1"
-
-CVE_STATUS[CVE-2013-1956] = "fixed-version: Fixed from version 3.9rc5"
-
-CVE_STATUS[CVE-2013-1957] = "fixed-version: Fixed from version 3.9rc5"
-
-CVE_STATUS[CVE-2013-1958] = "fixed-version: Fixed from version 3.9rc5"
-
-CVE_STATUS[CVE-2013-1959] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-1979] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2015] = "fixed-version: Fixed from version 3.8rc2"
-
-CVE_STATUS[CVE-2013-2017] = "fixed-version: Fixed from version 2.6.34"
-
-CVE_STATUS[CVE-2013-2058] = "fixed-version: Fixed from version 3.8rc4"
-
-CVE_STATUS[CVE-2013-2094] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2128] = "fixed-version: Fixed from version 2.6.34rc4"
-
-CVE_STATUS[CVE-2013-2140] = "fixed-version: Fixed from version 3.11rc3"
-
-CVE_STATUS[CVE-2013-2141] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2146] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2147] = "fixed-version: Fixed from version 3.12rc3"
-
-CVE_STATUS[CVE-2013-2148] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-2164] = "fixed-version: Fixed from version 3.11rc1"
-
-# Skipping CVE-2013-2188, no affected_versions
-
-CVE_STATUS[CVE-2013-2206] = "fixed-version: Fixed from version 3.9rc4"
-
-# Skipping CVE-2013-2224, no affected_versions
-
-CVE_STATUS[CVE-2013-2232] = "fixed-version: Fixed from version 3.10"
-
-CVE_STATUS[CVE-2013-2234] = "fixed-version: Fixed from version 3.10"
-
-CVE_STATUS[CVE-2013-2237] = "fixed-version: Fixed from version 3.9rc6"
-
-# Skipping CVE-2013-2239, no affected_versions
-
-CVE_STATUS[CVE-2013-2546] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-2547] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-2548] = "fixed-version: Fixed from version 3.9rc1"
-
-CVE_STATUS[CVE-2013-2596] = "fixed-version: Fixed from version 3.9rc8"
-
-CVE_STATUS[CVE-2013-2634] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-2635] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-2636] = "fixed-version: Fixed from version 3.9rc3"
-
-CVE_STATUS[CVE-2013-2850] = "fixed-version: Fixed from version 3.10rc4"
-
-CVE_STATUS[CVE-2013-2851] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-2852] = "fixed-version: Fixed from version 3.10rc6"
-
-CVE_STATUS[CVE-2013-2888] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2889] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2890] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2891] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2892] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2893] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2894] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2895] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2896] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2897] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-2898] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2899] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-2929] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-2930] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-3076] = "fixed-version: Fixed from version 3.9"
-
-CVE_STATUS[CVE-2013-3222] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3223] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3224] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3225] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3226] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3227] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3228] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3229] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3230] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3231] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3232] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3233] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3234] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3235] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3236] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3237] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3301] = "fixed-version: Fixed from version 3.9rc7"
-
-CVE_STATUS[CVE-2013-3302] = "fixed-version: Fixed from version 3.8rc3"
-
-CVE_STATUS[CVE-2013-4125] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4127] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4129] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4162] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4163] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2013-4205] = "fixed-version: Fixed from version 3.11rc5"
-
-CVE_STATUS[CVE-2013-4220] = "fixed-version: Fixed from version 3.10rc4"
-
-CVE_STATUS[CVE-2013-4247] = "fixed-version: Fixed from version 3.10rc5"
-
-CVE_STATUS[CVE-2013-4254] = "fixed-version: Fixed from version 3.11rc6"
-
-CVE_STATUS[CVE-2013-4270] = "fixed-version: Fixed from version 3.12rc4"
-
-CVE_STATUS[CVE-2013-4299] = "fixed-version: Fixed from version 3.12rc6"
-
-CVE_STATUS[CVE-2013-4300] = "fixed-version: Fixed from version 3.11"
-
-CVE_STATUS[CVE-2013-4312] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2013-4343] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-4345] = "fixed-version: Fixed from version 3.13rc2"
-
-CVE_STATUS[CVE-2013-4348] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-4350] = "fixed-version: Fixed from version 3.12rc2"
-
-CVE_STATUS[CVE-2013-4387] = "fixed-version: Fixed from version 3.12rc4"
-
-CVE_STATUS[CVE-2013-4470] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2013-4483] = "fixed-version: Fixed from version 3.10rc1"
-
-CVE_STATUS[CVE-2013-4511] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4512] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4513] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4514] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4515] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4516] = "fixed-version: Fixed from version 3.12"
-
-CVE_STATUS[CVE-2013-4563] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-4579] = "fixed-version: Fixed from version 3.13rc7"
-
-CVE_STATUS[CVE-2013-4587] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-4588] = "fixed-version: Fixed from version 2.6.33rc4"
-
-CVE_STATUS[CVE-2013-4591] = "fixed-version: Fixed from version 3.8rc1"
-
-CVE_STATUS[CVE-2013-4592] = "fixed-version: Fixed from version 3.7rc1"
-
-# Skipping CVE-2013-4737, no affected_versions
-
-# Skipping CVE-2013-4738, no affected_versions
-
-# Skipping CVE-2013-4739, no affected_versions
-
-CVE_STATUS[CVE-2013-5634] = "fixed-version: Fixed from version 3.10rc5"
-
-CVE_STATUS[CVE-2013-6282] = "fixed-version: Fixed from version 3.6rc6"
-
-CVE_STATUS[CVE-2013-6367] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-6368] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-6376] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-6378] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-6380] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-6381] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-6382] = "fixed-version: Fixed from version 3.13rc4"
-
-CVE_STATUS[CVE-2013-6383] = "fixed-version: Fixed from version 3.12"
-
-# Skipping CVE-2013-6392, no affected_versions
-
-CVE_STATUS[CVE-2013-6431] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2013-6432] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-6885] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2013-7026] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7027] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2013-7263] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7264] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7265] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7266] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7267] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7268] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7269] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7270] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7271] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7281] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7339] = "fixed-version: Fixed from version 3.13rc7"
-
-CVE_STATUS[CVE-2013-7348] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2013-7421] = "fixed-version: Fixed from version 3.19rc1"
-
-# CVE-2013-7445 has no known resolution
-
-CVE_STATUS[CVE-2013-7446] = "fixed-version: Fixed from version 4.4rc4"
-
-CVE_STATUS[CVE-2013-7470] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2014-0038] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2014-0049] = "fixed-version: Fixed from version 3.14rc5"
-
-CVE_STATUS[CVE-2014-0055] = "fixed-version: Fixed from version 3.14"
-
-CVE_STATUS[CVE-2014-0069] = "fixed-version: Fixed from version 3.14rc4"
-
-CVE_STATUS[CVE-2014-0077] = "fixed-version: Fixed from version 3.14"
-
-CVE_STATUS[CVE-2014-0100] = "fixed-version: Fixed from version 3.14rc7"
-
-CVE_STATUS[CVE-2014-0101] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-0102] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-0131] = "fixed-version: Fixed from version 3.14rc7"
-
-CVE_STATUS[CVE-2014-0155] = "fixed-version: Fixed from version 3.15rc2"
-
-CVE_STATUS[CVE-2014-0181] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2014-0196] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2014-0203] = "fixed-version: Fixed from version 2.6.33rc5"
-
-CVE_STATUS[CVE-2014-0205] = "fixed-version: Fixed from version 2.6.37rc1"
-
-CVE_STATUS[CVE-2014-0206] = "fixed-version: Fixed from version 3.16rc3"
-
-# Skipping CVE-2014-0972, no affected_versions
-
-CVE_STATUS[CVE-2014-1438] = "fixed-version: Fixed from version 3.13"
-
-CVE_STATUS[CVE-2014-1444] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2014-1445] = "fixed-version: Fixed from version 3.12rc7"
-
-CVE_STATUS[CVE-2014-1446] = "fixed-version: Fixed from version 3.13rc7"
-
-CVE_STATUS[CVE-2014-1690] = "fixed-version: Fixed from version 3.13rc8"
-
-CVE_STATUS[CVE-2014-1737] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2014-1738] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2014-1739] = "fixed-version: Fixed from version 3.15rc6"
-
-CVE_STATUS[CVE-2014-1874] = "fixed-version: Fixed from version 3.14rc2"
-
-CVE_STATUS[CVE-2014-2038] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2014-2039] = "fixed-version: Fixed from version 3.14rc3"
-
-CVE_STATUS[CVE-2014-2309] = "fixed-version: Fixed from version 3.14rc7"
-
-CVE_STATUS[CVE-2014-2523] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2014-2568] = "fixed-version: Fixed from version 3.14"
-
-CVE_STATUS[CVE-2014-2580] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-2672] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-2673] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-2678] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-2706] = "fixed-version: Fixed from version 3.14rc6"
-
-CVE_STATUS[CVE-2014-2739] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-2851] = "fixed-version: Fixed from version 3.15rc2"
-
-CVE_STATUS[CVE-2014-2889] = "fixed-version: Fixed from version 3.2rc7"
-
-CVE_STATUS[CVE-2014-3122] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-3144] = "fixed-version: Fixed from version 3.15rc2"
-
-CVE_STATUS[CVE-2014-3145] = "fixed-version: Fixed from version 3.15rc2"
-
-CVE_STATUS[CVE-2014-3153] = "fixed-version: Fixed from version 3.15"
-
-CVE_STATUS[CVE-2014-3180] = "fixed-version: Fixed from version 3.17rc4"
-
-CVE_STATUS[CVE-2014-3181] = "fixed-version: Fixed from version 3.17rc3"
-
-CVE_STATUS[CVE-2014-3182] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-3183] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-3184] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-3185] = "fixed-version: Fixed from version 3.17rc3"
-
-CVE_STATUS[CVE-2014-3186] = "fixed-version: Fixed from version 3.17rc3"
-
-# Skipping CVE-2014-3519, no affected_versions
-
-CVE_STATUS[CVE-2014-3534] = "fixed-version: Fixed from version 3.16rc7"
-
-CVE_STATUS[CVE-2014-3535] = "fixed-version: Fixed from version 2.6.36rc1"
-
-CVE_STATUS[CVE-2014-3601] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-3610] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-3611] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-3631] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-3645] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2014-3646] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-3647] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-3673] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-3687] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-3688] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-3690] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-3917] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-3940] = "fixed-version: Fixed from version 3.15"
-
-CVE_STATUS[CVE-2014-4014] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-4027] = "fixed-version: Fixed from version 3.14rc1"
-
-CVE_STATUS[CVE-2014-4157] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-4171] = "fixed-version: Fixed from version 3.16rc3"
-
-# Skipping CVE-2014-4322, no affected_versions
-
-# Skipping CVE-2014-4323, no affected_versions
-
-CVE_STATUS[CVE-2014-4508] = "fixed-version: Fixed from version 3.16rc3"
-
-CVE_STATUS[CVE-2014-4608] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-4611] = "fixed-version: Fixed from version 3.16rc3"
-
-CVE_STATUS[CVE-2014-4652] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4653] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4654] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4655] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4656] = "fixed-version: Fixed from version 3.16rc2"
-
-CVE_STATUS[CVE-2014-4667] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-4699] = "fixed-version: Fixed from version 3.16rc4"
-
-CVE_STATUS[CVE-2014-4943] = "fixed-version: Fixed from version 3.16rc6"
-
-CVE_STATUS[CVE-2014-5045] = "fixed-version: Fixed from version 3.16rc7"
-
-CVE_STATUS[CVE-2014-5077] = "fixed-version: Fixed from version 3.16"
-
-CVE_STATUS[CVE-2014-5206] = "fixed-version: Fixed from version 3.17rc1"
-
-CVE_STATUS[CVE-2014-5207] = "fixed-version: Fixed from version 3.17rc1"
-
-# Skipping CVE-2014-5332, no affected_versions
-
-CVE_STATUS[CVE-2014-5471] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-5472] = "fixed-version: Fixed from version 3.17rc2"
-
-CVE_STATUS[CVE-2014-6410] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-6416] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-6417] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-6418] = "fixed-version: Fixed from version 3.17rc5"
-
-CVE_STATUS[CVE-2014-7145] = "fixed-version: Fixed from version 3.17rc2"
-
-# Skipping CVE-2014-7207, no affected_versions
-
-CVE_STATUS[CVE-2014-7283] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-7284] = "fixed-version: Fixed from version 3.15rc7"
-
-CVE_STATUS[CVE-2014-7822] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-7825] = "fixed-version: Fixed from version 3.18rc3"
-
-CVE_STATUS[CVE-2014-7826] = "fixed-version: Fixed from version 3.18rc3"
-
-CVE_STATUS[CVE-2014-7841] = "fixed-version: Fixed from version 3.18rc5"
-
-CVE_STATUS[CVE-2014-7842] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-7843] = "fixed-version: Fixed from version 3.18rc5"
-
-CVE_STATUS[CVE-2014-7970] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-7975] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-8086] = "fixed-version: Fixed from version 3.18rc3"
-
-CVE_STATUS[CVE-2014-8133] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-8134] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-8159] = "fixed-version: Fixed from version 4.0rc7"
-
-CVE_STATUS[CVE-2014-8160] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-8171] = "fixed-version: Fixed from version 3.12rc1"
-
-CVE_STATUS[CVE-2014-8172] = "fixed-version: Fixed from version 3.13rc1"
-
-CVE_STATUS[CVE-2014-8173] = "fixed-version: Fixed from version 3.13rc5"
-
-# Skipping CVE-2014-8181, no affected_versions
-
-CVE_STATUS[CVE-2014-8369] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-8480] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-8481] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-8559] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-8709] = "fixed-version: Fixed from version 3.14rc3"
-
-CVE_STATUS[CVE-2014-8884] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2014-8989] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9090] = "fixed-version: Fixed from version 3.18rc6"
-
-CVE_STATUS[CVE-2014-9322] = "fixed-version: Fixed from version 3.18rc6"
-
-CVE_STATUS[CVE-2014-9419] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9420] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9428] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9529] = "fixed-version: Fixed from version 3.19rc4"
-
-CVE_STATUS[CVE-2014-9584] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9585] = "fixed-version: Fixed from version 3.19rc4"
-
-CVE_STATUS[CVE-2014-9644] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9683] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9710] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2014-9715] = "fixed-version: Fixed from version 3.15rc1"
-
-CVE_STATUS[CVE-2014-9717] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2014-9728] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9729] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9730] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2014-9731] = "fixed-version: Fixed from version 3.19rc3"
-
-# Skipping CVE-2014-9777, no affected_versions
-
-# Skipping CVE-2014-9778, no affected_versions
-
-# Skipping CVE-2014-9779, no affected_versions
-
-# Skipping CVE-2014-9780, no affected_versions
-
-# Skipping CVE-2014-9781, no affected_versions
-
-# Skipping CVE-2014-9782, no affected_versions
-
-# Skipping CVE-2014-9783, no affected_versions
-
-# Skipping CVE-2014-9784, no affected_versions
-
-# Skipping CVE-2014-9785, no affected_versions
-
-# Skipping CVE-2014-9786, no affected_versions
-
-# Skipping CVE-2014-9787, no affected_versions
-
-# Skipping CVE-2014-9788, no affected_versions
-
-# Skipping CVE-2014-9789, no affected_versions
-
-CVE_STATUS[CVE-2014-9803] = "fixed-version: Fixed from version 3.16rc1"
-
-# Skipping CVE-2014-9863, no affected_versions
-
-# Skipping CVE-2014-9864, no affected_versions
-
-# Skipping CVE-2014-9865, no affected_versions
-
-# Skipping CVE-2014-9866, no affected_versions
-
-# Skipping CVE-2014-9867, no affected_versions
-
-# Skipping CVE-2014-9868, no affected_versions
-
-# Skipping CVE-2014-9869, no affected_versions
-
-CVE_STATUS[CVE-2014-9870] = "fixed-version: Fixed from version 3.11rc1"
-
-# Skipping CVE-2014-9871, no affected_versions
-
-# Skipping CVE-2014-9872, no affected_versions
-
-# Skipping CVE-2014-9873, no affected_versions
-
-# Skipping CVE-2014-9874, no affected_versions
-
-# Skipping CVE-2014-9875, no affected_versions
-
-# Skipping CVE-2014-9876, no affected_versions
-
-# Skipping CVE-2014-9877, no affected_versions
-
-# Skipping CVE-2014-9878, no affected_versions
-
-# Skipping CVE-2014-9879, no affected_versions
-
-# Skipping CVE-2014-9880, no affected_versions
-
-# Skipping CVE-2014-9881, no affected_versions
-
-# Skipping CVE-2014-9882, no affected_versions
-
-# Skipping CVE-2014-9883, no affected_versions
-
-# Skipping CVE-2014-9884, no affected_versions
-
-# Skipping CVE-2014-9885, no affected_versions
-
-# Skipping CVE-2014-9886, no affected_versions
-
-# Skipping CVE-2014-9887, no affected_versions
-
-CVE_STATUS[CVE-2014-9888] = "fixed-version: Fixed from version 3.13rc1"
-
-# Skipping CVE-2014-9889, no affected_versions
-
-# Skipping CVE-2014-9890, no affected_versions
-
-# Skipping CVE-2014-9891, no affected_versions
-
-# Skipping CVE-2014-9892, no affected_versions
-
-# Skipping CVE-2014-9893, no affected_versions
-
-# Skipping CVE-2014-9894, no affected_versions
-
-CVE_STATUS[CVE-2014-9895] = "fixed-version: Fixed from version 3.11rc1"
-
-# Skipping CVE-2014-9896, no affected_versions
-
-# Skipping CVE-2014-9897, no affected_versions
-
-# Skipping CVE-2014-9898, no affected_versions
-
-# Skipping CVE-2014-9899, no affected_versions
-
-# Skipping CVE-2014-9900, no affected_versions
-
-CVE_STATUS[CVE-2014-9903] = "fixed-version: Fixed from version 3.14rc4"
-
-CVE_STATUS[CVE-2014-9904] = "fixed-version: Fixed from version 3.17rc1"
-
-CVE_STATUS[CVE-2014-9914] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2014-9922] = "fixed-version: Fixed from version 3.18rc2"
-
-CVE_STATUS[CVE-2014-9940] = "fixed-version: Fixed from version 3.19rc1"
-
-CVE_STATUS[CVE-2015-0239] = "fixed-version: Fixed from version 3.19rc6"
-
-CVE_STATUS[CVE-2015-0274] = "fixed-version: Fixed from version 3.15rc5"
-
-CVE_STATUS[CVE-2015-0275] = "fixed-version: Fixed from version 4.1rc1"
-
-# Skipping CVE-2015-0777, no affected_versions
-
-# Skipping CVE-2015-1328, no affected_versions
-
-CVE_STATUS[CVE-2015-1333] = "fixed-version: Fixed from version 4.2rc5"
-
-CVE_STATUS[CVE-2015-1339] = "fixed-version: Fixed from version 4.4rc5"
-
-CVE_STATUS[CVE-2015-1350] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2015-1420] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-1421] = "fixed-version: Fixed from version 3.19rc7"
-
-CVE_STATUS[CVE-2015-1465] = "fixed-version: Fixed from version 3.19rc7"
-
-CVE_STATUS[CVE-2015-1573] = "fixed-version: Fixed from version 3.19rc5"
-
-CVE_STATUS[CVE-2015-1593] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-1805] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2015-2041] = "fixed-version: Fixed from version 3.19rc7"
-
-CVE_STATUS[CVE-2015-2042] = "fixed-version: Fixed from version 3.19"
-
-CVE_STATUS[CVE-2015-2150] = "fixed-version: Fixed from version 4.0rc4"
-
-CVE_STATUS[CVE-2015-2666] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-2672] = "fixed-version: Fixed from version 4.0rc3"
-
-CVE_STATUS[CVE-2015-2686] = "fixed-version: Fixed from version 4.0rc6"
-
-CVE_STATUS[CVE-2015-2830] = "fixed-version: Fixed from version 4.0rc3"
-
-# CVE-2015-2877 has no known resolution
-
-CVE_STATUS[CVE-2015-2922] = "fixed-version: Fixed from version 4.0rc7"
-
-CVE_STATUS[CVE-2015-2925] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2015-3212] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2015-3214] = "fixed-version: Fixed from version 2.6.33rc8"
-
-CVE_STATUS[CVE-2015-3288] = "fixed-version: Fixed from version 4.2rc2"
-
-CVE_STATUS[CVE-2015-3290] = "fixed-version: Fixed from version 4.2rc3"
-
-CVE_STATUS[CVE-2015-3291] = "fixed-version: Fixed from version 4.2rc3"
-
-CVE_STATUS[CVE-2015-3331] = "fixed-version: Fixed from version 4.0rc5"
-
-# Skipping CVE-2015-3332, no affected_versions
-
-CVE_STATUS[CVE-2015-3339] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-3636] = "fixed-version: Fixed from version 4.1rc2"
-
-CVE_STATUS[CVE-2015-4001] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-4002] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-4003] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-4004] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2015-4036] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-4167] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-4170] = "fixed-version: Fixed from version 3.13rc5"
-
-CVE_STATUS[CVE-2015-4176] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-4177] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-4178] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-4692] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2015-4700] = "fixed-version: Fixed from version 4.1rc6"
-
-CVE_STATUS[CVE-2015-5156] = "fixed-version: Fixed from version 4.2rc7"
-
-CVE_STATUS[CVE-2015-5157] = "fixed-version: Fixed from version 4.2rc3"
-
-CVE_STATUS[CVE-2015-5257] = "fixed-version: Fixed from version 4.3rc3"
-
-CVE_STATUS[CVE-2015-5283] = "fixed-version: Fixed from version 4.3rc3"
-
-CVE_STATUS[CVE-2015-5307] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-5327] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-5364] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-5366] = "fixed-version: Fixed from version 4.1rc7"
-
-CVE_STATUS[CVE-2015-5697] = "fixed-version: Fixed from version 4.2rc6"
-
-CVE_STATUS[CVE-2015-5706] = "fixed-version: Fixed from version 4.1rc3"
-
-CVE_STATUS[CVE-2015-5707] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-6252] = "fixed-version: Fixed from version 4.2rc5"
-
-CVE_STATUS[CVE-2015-6526] = "fixed-version: Fixed from version 4.1rc1"
-
-# CVE-2015-6619 has no known resolution
-
-# CVE-2015-6646 has no known resolution
-
-CVE_STATUS[CVE-2015-6937] = "fixed-version: Fixed from version 4.3rc1"
-
-# Skipping CVE-2015-7312, no affected_versions
-
-CVE_STATUS[CVE-2015-7509] = "fixed-version: Fixed from version 3.7rc1"
-
-CVE_STATUS[CVE-2015-7513] = "fixed-version: Fixed from version 4.4rc7"
-
-CVE_STATUS[CVE-2015-7515] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-7550] = "fixed-version: Fixed from version 4.4rc8"
-
-# Skipping CVE-2015-7553, no affected_versions
-
-CVE_STATUS[CVE-2015-7566] = "fixed-version: Fixed from version 4.5rc2"
-
-CVE_STATUS[CVE-2015-7613] = "fixed-version: Fixed from version 4.3rc4"
-
-CVE_STATUS[CVE-2015-7799] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-7833] = "fixed-version: Fixed from version 4.6rc6"
-
-# Skipping CVE-2015-7837, no affected_versions
-
-CVE_STATUS[CVE-2015-7872] = "fixed-version: Fixed from version 4.3rc7"
-
-CVE_STATUS[CVE-2015-7884] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-7885] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-7990] = "fixed-version: Fixed from version 4.4rc4"
-
-# Skipping CVE-2015-8019, no affected_versions
-
-CVE_STATUS[CVE-2015-8104] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8215] = "fixed-version: Fixed from version 4.0rc3"
-
-CVE_STATUS[CVE-2015-8324] = "fixed-version: Fixed from version 2.6.34rc1"
-
-CVE_STATUS[CVE-2015-8374] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8539] = "fixed-version: Fixed from version 4.4rc3"
-
-CVE_STATUS[CVE-2015-8543] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8550] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8551] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8552] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8553] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8569] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8575] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8660] = "fixed-version: Fixed from version 4.4rc4"
-
-CVE_STATUS[CVE-2015-8709] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2015-8746] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2015-8767] = "fixed-version: Fixed from version 4.3rc4"
-
-CVE_STATUS[CVE-2015-8785] = "fixed-version: Fixed from version 4.4rc5"
-
-CVE_STATUS[CVE-2015-8787] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8812] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2015-8816] = "fixed-version: Fixed from version 4.4rc6"
-
-CVE_STATUS[CVE-2015-8830] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-8839] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2015-8844] = "fixed-version: Fixed from version 4.4rc3"
-
-CVE_STATUS[CVE-2015-8845] = "fixed-version: Fixed from version 4.4rc3"
-
-# Skipping CVE-2015-8937, no affected_versions
-
-# Skipping CVE-2015-8938, no affected_versions
-
-# Skipping CVE-2015-8939, no affected_versions
-
-# Skipping CVE-2015-8940, no affected_versions
-
-# Skipping CVE-2015-8941, no affected_versions
-
-# Skipping CVE-2015-8942, no affected_versions
-
-# Skipping CVE-2015-8943, no affected_versions
-
-# Skipping CVE-2015-8944, no affected_versions
-
-CVE_STATUS[CVE-2015-8950] = "fixed-version: Fixed from version 4.1rc2"
-
-CVE_STATUS[CVE-2015-8952] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2015-8953] = "fixed-version: Fixed from version 4.3"
-
-CVE_STATUS[CVE-2015-8955] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2015-8956] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2015-8961] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8962] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2015-8963] = "fixed-version: Fixed from version 4.4"
-
-CVE_STATUS[CVE-2015-8964] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2015-8966] = "fixed-version: Fixed from version 4.4rc8"
-
-CVE_STATUS[CVE-2015-8967] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2015-8970] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2015-9004] = "fixed-version: Fixed from version 3.19rc7"
-
-CVE_STATUS[CVE-2015-9016] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2015-9289] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2016-0617] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-0723] = "fixed-version: Fixed from version 4.5rc2"
-
-CVE_STATUS[CVE-2016-0728] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-0758] = "fixed-version: Fixed from version 4.6"
-
-# Skipping CVE-2016-0774, no affected_versions
-
-CVE_STATUS[CVE-2016-0821] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2016-0823] = "fixed-version: Fixed from version 4.0rc5"
-
-CVE_STATUS[CVE-2016-10044] = "fixed-version: Fixed from version 4.8rc7"
-
-CVE_STATUS[CVE-2016-10088] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10147] = "fixed-version: Fixed from version 4.9"
-
-CVE_STATUS[CVE-2016-10150] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-10153] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10154] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10200] = "fixed-version: Fixed from version 4.9rc7"
-
-CVE_STATUS[CVE-2016-10208] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10229] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-10318] = "fixed-version: Fixed from version 4.8rc6"
-
-CVE_STATUS[CVE-2016-10723] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2016-10741] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10764] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-10905] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2016-10906] = "fixed-version: Fixed from version 4.5rc6"
-
-CVE_STATUS[CVE-2016-10907] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2016-1237] = "fixed-version: Fixed from version 4.7rc5"
-
-CVE_STATUS[CVE-2016-1575] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-1576] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-1583] = "fixed-version: Fixed from version 4.7rc3"
-
-CVE_STATUS[CVE-2016-2053] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2016-2069] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2070] = "fixed-version: Fixed from version 4.4"
-
-CVE_STATUS[CVE-2016-2085] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2016-2117] = "fixed-version: Fixed from version 4.6rc5"
-
-CVE_STATUS[CVE-2016-2143] = "fixed-version: Fixed from version 4.5"
-
-CVE_STATUS[CVE-2016-2184] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-2185] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-2186] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-2187] = "fixed-version: Fixed from version 4.6rc5"
-
-CVE_STATUS[CVE-2016-2188] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2016-2383] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2016-2384] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2016-2543] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2544] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2545] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2546] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2547] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2548] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2549] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2016-2550] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2016-2782] = "fixed-version: Fixed from version 4.5rc2"
-
-CVE_STATUS[CVE-2016-2847] = "fixed-version: Fixed from version 4.5rc1"
-
-# Skipping CVE-2016-2853, no affected_versions
-
-# Skipping CVE-2016-2854, no affected_versions
-
-CVE_STATUS[CVE-2016-3044] = "fixed-version: Fixed from version 4.5"
-
-CVE_STATUS[CVE-2016-3070] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2016-3134] = "fixed-version: Fixed from version 4.6rc2"
-
-CVE_STATUS[CVE-2016-3135] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3136] = "fixed-version: Fixed from version 4.6rc3"
-
-CVE_STATUS[CVE-2016-3137] = "fixed-version: Fixed from version 4.6rc3"
-
-CVE_STATUS[CVE-2016-3138] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3139] = "fixed-version: Fixed from version 3.17rc1"
-
-CVE_STATUS[CVE-2016-3140] = "fixed-version: Fixed from version 4.6rc3"
-
-CVE_STATUS[CVE-2016-3156] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3157] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3672] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-3689] = "fixed-version: Fixed from version 4.6rc1"
-
-# Skipping CVE-2016-3695, no affected_versions
-
-# Skipping CVE-2016-3699, no affected_versions
-
-# Skipping CVE-2016-3707, no affected_versions
-
-CVE_STATUS[CVE-2016-3713] = "fixed-version: Fixed from version 4.7rc1"
-
-# CVE-2016-3775 has no known resolution
-
-# CVE-2016-3802 has no known resolution
-
-# CVE-2016-3803 has no known resolution
-
-CVE_STATUS[CVE-2016-3841] = "fixed-version: Fixed from version 4.4rc4"
-
-CVE_STATUS[CVE-2016-3857] = "fixed-version: Fixed from version 4.8rc2"
-
-CVE_STATUS[CVE-2016-3951] = "fixed-version: Fixed from version 4.5"
-
-CVE_STATUS[CVE-2016-3955] = "fixed-version: Fixed from version 4.6rc3"
-
-CVE_STATUS[CVE-2016-3961] = "fixed-version: Fixed from version 4.6rc5"
-
-CVE_STATUS[CVE-2016-4440] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4470] = "fixed-version: Fixed from version 4.7rc4"
-
-CVE_STATUS[CVE-2016-4482] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4485] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-4486] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-4557] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2016-4558] = "fixed-version: Fixed from version 4.6rc7"
-
-CVE_STATUS[CVE-2016-4565] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2016-4568] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2016-4569] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4578] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4580] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-4581] = "fixed-version: Fixed from version 4.6rc7"
-
-CVE_STATUS[CVE-2016-4794] = "fixed-version: Fixed from version 4.7rc4"
-
-CVE_STATUS[CVE-2016-4805] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-4913] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-4951] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4997] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-4998] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-5195] = "fixed-version: Fixed from version 4.9rc2"
-
-CVE_STATUS[CVE-2016-5243] = "fixed-version: Fixed from version 4.7rc3"
-
-CVE_STATUS[CVE-2016-5244] = "fixed-version: Fixed from version 4.7rc3"
-
-# Skipping CVE-2016-5340, no affected_versions
-
-# Skipping CVE-2016-5342, no affected_versions
-
-# Skipping CVE-2016-5343, no affected_versions
-
-# Skipping CVE-2016-5344, no affected_versions
-
-CVE_STATUS[CVE-2016-5400] = "fixed-version: Fixed from version 4.7"
-
-CVE_STATUS[CVE-2016-5412] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2016-5696] = "fixed-version: Fixed from version 4.7"
-
-CVE_STATUS[CVE-2016-5728] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-5828] = "fixed-version: Fixed from version 4.7rc6"
-
-CVE_STATUS[CVE-2016-5829] = "fixed-version: Fixed from version 4.7rc5"
-
-# CVE-2016-5870 has no known resolution
-
-CVE_STATUS[CVE-2016-6130] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2016-6136] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2016-6156] = "fixed-version: Fixed from version 4.7rc7"
-
-CVE_STATUS[CVE-2016-6162] = "fixed-version: Fixed from version 4.7"
-
-CVE_STATUS[CVE-2016-6187] = "fixed-version: Fixed from version 4.7rc7"
-
-CVE_STATUS[CVE-2016-6197] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-6198] = "fixed-version: Fixed from version 4.6"
-
-CVE_STATUS[CVE-2016-6213] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2016-6327] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-6480] = "fixed-version: Fixed from version 4.8rc3"
-
-CVE_STATUS[CVE-2016-6516] = "fixed-version: Fixed from version 4.8rc1"
-
-# Skipping CVE-2016-6753, no affected_versions
-
-CVE_STATUS[CVE-2016-6786] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2016-6787] = "fixed-version: Fixed from version 4.0rc1"
-
-CVE_STATUS[CVE-2016-6828] = "fixed-version: Fixed from version 4.8rc5"
-
-CVE_STATUS[CVE-2016-7039] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-7042] = "fixed-version: Fixed from version 4.9rc3"
-
-CVE_STATUS[CVE-2016-7097] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2016-7117] = "fixed-version: Fixed from version 4.6rc1"
-
-# Skipping CVE-2016-7118, no affected_versions
-
-CVE_STATUS[CVE-2016-7425] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2016-7910] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2016-7911] = "fixed-version: Fixed from version 4.7rc7"
-
-CVE_STATUS[CVE-2016-7912] = "fixed-version: Fixed from version 4.6rc5"
-
-CVE_STATUS[CVE-2016-7913] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-7914] = "fixed-version: Fixed from version 4.6rc4"
-
-CVE_STATUS[CVE-2016-7915] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-7916] = "fixed-version: Fixed from version 4.6rc7"
-
-CVE_STATUS[CVE-2016-7917] = "fixed-version: Fixed from version 4.5rc6"
-
-CVE_STATUS[CVE-2016-8399] = "fixed-version: Fixed from version 4.9"
-
-# Skipping CVE-2016-8401, no affected_versions
-
-# Skipping CVE-2016-8402, no affected_versions
-
-# Skipping CVE-2016-8403, no affected_versions
-
-# Skipping CVE-2016-8404, no affected_versions
-
-CVE_STATUS[CVE-2016-8405] = "fixed-version: Fixed from version 4.10rc6"
-
-# Skipping CVE-2016-8406, no affected_versions
-
-# Skipping CVE-2016-8407, no affected_versions
-
-CVE_STATUS[CVE-2016-8630] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-8632] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-8633] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-8636] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2016-8645] = "fixed-version: Fixed from version 4.9rc6"
-
-CVE_STATUS[CVE-2016-8646] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2016-8650] = "fixed-version: Fixed from version 4.9rc7"
-
-CVE_STATUS[CVE-2016-8655] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-8658] = "fixed-version: Fixed from version 4.8rc7"
-
-# CVE-2016-8660 has no known resolution
-
-CVE_STATUS[CVE-2016-8666] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-9083] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-9084] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-9120] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-9178] = "fixed-version: Fixed from version 4.8rc7"
-
-CVE_STATUS[CVE-2016-9191] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2016-9313] = "fixed-version: Fixed from version 4.9rc3"
-
-CVE_STATUS[CVE-2016-9555] = "fixed-version: Fixed from version 4.9rc4"
-
-CVE_STATUS[CVE-2016-9576] = "fixed-version: Fixed from version 4.9"
-
-CVE_STATUS[CVE-2016-9588] = "fixed-version: Fixed from version 4.10rc1"
-
-CVE_STATUS[CVE-2016-9604] = "fixed-version: Fixed from version 4.11rc8"
-
-# Skipping CVE-2016-9644, no affected_versions
-
-CVE_STATUS[CVE-2016-9685] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2016-9754] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-9755] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-9756] = "fixed-version: Fixed from version 4.9rc7"
-
-CVE_STATUS[CVE-2016-9777] = "fixed-version: Fixed from version 4.9rc7"
-
-CVE_STATUS[CVE-2016-9793] = "fixed-version: Fixed from version 4.9rc8"
-
-CVE_STATUS[CVE-2016-9794] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-9806] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2016-9919] = "fixed-version: Fixed from version 4.9rc8"
-
-# Skipping CVE-2017-0403, no affected_versions
-
-# Skipping CVE-2017-0404, no affected_versions
-
-# Skipping CVE-2017-0426, no affected_versions
-
-# Skipping CVE-2017-0427, no affected_versions
-
-# CVE-2017-0507 has no known resolution
-
-# CVE-2017-0508 has no known resolution
-
-# Skipping CVE-2017-0510, no affected_versions
-
-# Skipping CVE-2017-0528, no affected_versions
-
-# Skipping CVE-2017-0537, no affected_versions
-
-# CVE-2017-0564 has no known resolution
-
-CVE_STATUS[CVE-2017-0605] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-0627] = "fixed-version: Fixed from version 4.14rc1"
-
-# CVE-2017-0630 has no known resolution
-
-# CVE-2017-0749 has no known resolution
-
-CVE_STATUS[CVE-2017-0750] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2017-0786] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-0861] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2017-1000] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2017-1000111] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2017-1000112] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2017-1000251] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-1000252] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-1000253] = "fixed-version: Fixed from version 4.1rc1"
-
-CVE_STATUS[CVE-2017-1000255] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-1000363] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-1000364] = "fixed-version: Fixed from version 4.12rc6"
-
-CVE_STATUS[CVE-2017-1000365] = "fixed-version: Fixed from version 4.12rc7"
-
-CVE_STATUS[CVE-2017-1000370] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-1000371] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-1000379] = "fixed-version: Fixed from version 4.12rc6"
-
-CVE_STATUS[CVE-2017-1000380] = "fixed-version: Fixed from version 4.12rc5"
-
-CVE_STATUS[CVE-2017-1000405] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2017-1000407] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2017-1000410] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2017-10661] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-10662] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-10663] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-10810] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-10911] = "fixed-version: Fixed from version 4.12rc7"
-
-CVE_STATUS[CVE-2017-11089] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-11176] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-11472] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-11473] = "fixed-version: Fixed from version 4.13rc2"
-
-CVE_STATUS[CVE-2017-11600] = "fixed-version: Fixed from version 4.13"
-
-CVE_STATUS[CVE-2017-12134] = "fixed-version: Fixed from version 4.13rc6"
-
-CVE_STATUS[CVE-2017-12146] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-12153] = "fixed-version: Fixed from version 4.14rc2"
-
-CVE_STATUS[CVE-2017-12154] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-12168] = "fixed-version: Fixed from version 4.9rc6"
-
-CVE_STATUS[CVE-2017-12188] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-12190] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-12192] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-12193] = "fixed-version: Fixed from version 4.14rc7"
-
-CVE_STATUS[CVE-2017-12762] = "fixed-version: Fixed from version 4.13rc4"
-
-CVE_STATUS[CVE-2017-13080] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-13166] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-13167] = "fixed-version: Fixed from version 4.5rc4"
-
-CVE_STATUS[CVE-2017-13168] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2017-13215] = "fixed-version: Fixed from version 4.5rc1"
-
-CVE_STATUS[CVE-2017-13216] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2017-13220] = "fixed-version: Fixed from version 3.19rc3"
-
-# CVE-2017-13221 has no known resolution
-
-# CVE-2017-13222 has no known resolution
-
-CVE_STATUS[CVE-2017-13305] = "fixed-version: Fixed from version 4.12rc5"
-
-CVE_STATUS[CVE-2017-13686] = "fixed-version: Fixed from version 4.13rc7"
-
-# CVE-2017-13693 has no known resolution
-
-# CVE-2017-13694 has no known resolution
-
-CVE_STATUS[CVE-2017-13695] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2017-13715] = "fixed-version: Fixed from version 4.3rc1"
-
-CVE_STATUS[CVE-2017-14051] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-14106] = "fixed-version: Fixed from version 4.12rc3"
-
-CVE_STATUS[CVE-2017-14140] = "fixed-version: Fixed from version 4.13rc6"
-
-CVE_STATUS[CVE-2017-14156] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-14340] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-14489] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-14497] = "fixed-version: Fixed from version 4.13"
-
-CVE_STATUS[CVE-2017-14954] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-14991] = "fixed-version: Fixed from version 4.14rc2"
-
-CVE_STATUS[CVE-2017-15102] = "fixed-version: Fixed from version 4.9rc1"
-
-CVE_STATUS[CVE-2017-15115] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-15116] = "fixed-version: Fixed from version 4.2rc1"
-
-CVE_STATUS[CVE-2017-15121] = "fixed-version: Fixed from version 3.11rc1"
-
-CVE_STATUS[CVE-2017-15126] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-15127] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2017-15128] = "fixed-version: Fixed from version 4.14rc8"
-
-CVE_STATUS[CVE-2017-15129] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-15265] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-15274] = "fixed-version: Fixed from version 4.12rc5"
-
-CVE_STATUS[CVE-2017-15299] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-15306] = "fixed-version: Fixed from version 4.14rc7"
-
-CVE_STATUS[CVE-2017-15537] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-15649] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-15868] = "fixed-version: Fixed from version 3.19rc3"
-
-CVE_STATUS[CVE-2017-15951] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-16525] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-16526] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16527] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-16528] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2017-16529] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16530] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16531] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16532] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-16533] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-16534] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2017-16535] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-16536] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16537] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16538] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-16643] = "fixed-version: Fixed from version 4.14rc7"
-
-CVE_STATUS[CVE-2017-16644] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-16645] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2017-16646] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16647] = "fixed-version: Fixed from version 4.14"
-
-CVE_STATUS[CVE-2017-16648] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16649] = "fixed-version: Fixed from version 4.14"
-
-CVE_STATUS[CVE-2017-16650] = "fixed-version: Fixed from version 4.14"
-
-CVE_STATUS[CVE-2017-16911] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-16912] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-16913] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-16914] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-16939] = "fixed-version: Fixed from version 4.14rc7"
-
-CVE_STATUS[CVE-2017-16994] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-16995] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-16996] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17052] = "fixed-version: Fixed from version 4.13rc7"
-
-CVE_STATUS[CVE-2017-17053] = "fixed-version: Fixed from version 4.13rc7"
-
-CVE_STATUS[CVE-2017-17448] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17449] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17450] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17558] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17712] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17741] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17805] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17806] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-17807] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2017-17852] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17853] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17854] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17855] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17856] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17857] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17862] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-17863] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17864] = "fixed-version: Fixed from version 4.15rc5"
-
-CVE_STATUS[CVE-2017-17975] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2017-18017] = "fixed-version: Fixed from version 4.11rc7"
-
-CVE_STATUS[CVE-2017-18075] = "fixed-version: Fixed from version 4.15rc7"
-
-CVE_STATUS[CVE-2017-18079] = "fixed-version: Fixed from version 4.13rc1"
-
-# CVE-2017-18169 has no known resolution
-
-CVE_STATUS[CVE-2017-18174] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2017-18193] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18200] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-18202] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2017-18203] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-18204] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-18208] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2017-18216] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-18218] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18221] = "fixed-version: Fixed from version 4.12rc4"
-
-CVE_STATUS[CVE-2017-18222] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-18224] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2017-18232] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-18241] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18249] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-18255] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-18257] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-18261] = "fixed-version: Fixed from version 4.13rc6"
-
-CVE_STATUS[CVE-2017-18270] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-18344] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2017-18360] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-18379] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2017-18509] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-18549] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18550] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-18551] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2017-18552] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-18595] = "fixed-version: Fixed from version 4.15rc6"
-
-CVE_STATUS[CVE-2017-2583] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-2584] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-2596] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-2618] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-2634] = "fixed-version: Fixed from version 2.6.25rc1"
-
-CVE_STATUS[CVE-2017-2636] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-2647] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2017-2671] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-5123] = "fixed-version: Fixed from version 4.14rc5"
-
-CVE_STATUS[CVE-2017-5546] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-5547] = "fixed-version: Fixed from version 4.10rc5"
-
-CVE_STATUS[CVE-2017-5548] = "fixed-version: Fixed from version 4.10rc5"
-
-CVE_STATUS[CVE-2017-5549] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-5550] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-5551] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-5576] = "fixed-version: Fixed from version 4.10rc6"
-
-CVE_STATUS[CVE-2017-5577] = "fixed-version: Fixed from version 4.10rc6"
-
-CVE_STATUS[CVE-2017-5669] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-5715] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2017-5753] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2017-5754] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2017-5897] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-5967] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-5970] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-5972] = "fixed-version: Fixed from version 4.4rc1"
-
-CVE_STATUS[CVE-2017-5986] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-6001] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-6074] = "fixed-version: Fixed from version 4.10"
-
-CVE_STATUS[CVE-2017-6214] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-6345] = "fixed-version: Fixed from version 4.10"
-
-CVE_STATUS[CVE-2017-6346] = "fixed-version: Fixed from version 4.10"
-
-CVE_STATUS[CVE-2017-6347] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-6348] = "fixed-version: Fixed from version 4.10"
-
-CVE_STATUS[CVE-2017-6353] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-6874] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-6951] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2017-7184] = "fixed-version: Fixed from version 4.11rc5"
-
-CVE_STATUS[CVE-2017-7187] = "fixed-version: Fixed from version 4.11rc5"
-
-CVE_STATUS[CVE-2017-7261] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-7273] = "fixed-version: Fixed from version 4.10rc4"
-
-CVE_STATUS[CVE-2017-7277] = "fixed-version: Fixed from version 4.11rc4"
-
-CVE_STATUS[CVE-2017-7294] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-7308] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-7346] = "fixed-version: Fixed from version 4.12rc5"
-
-# CVE-2017-7369 has no known resolution
-
-CVE_STATUS[CVE-2017-7374] = "fixed-version: Fixed from version 4.11rc4"
-
-CVE_STATUS[CVE-2017-7472] = "fixed-version: Fixed from version 4.11rc8"
-
-CVE_STATUS[CVE-2017-7477] = "fixed-version: Fixed from version 4.11"
-
-CVE_STATUS[CVE-2017-7482] = "fixed-version: Fixed from version 4.12rc7"
-
-CVE_STATUS[CVE-2017-7487] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-7495] = "fixed-version: Fixed from version 4.7rc1"
-
-CVE_STATUS[CVE-2017-7518] = "fixed-version: Fixed from version 4.12rc7"
-
-CVE_STATUS[CVE-2017-7533] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-7541] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-7542] = "fixed-version: Fixed from version 4.13rc2"
-
-CVE_STATUS[CVE-2017-7558] = "fixed-version: Fixed from version 4.13"
-
-CVE_STATUS[CVE-2017-7616] = "fixed-version: Fixed from version 4.11rc6"
-
-CVE_STATUS[CVE-2017-7618] = "fixed-version: Fixed from version 4.11rc8"
-
-CVE_STATUS[CVE-2017-7645] = "fixed-version: Fixed from version 4.11"
-
-CVE_STATUS[CVE-2017-7889] = "fixed-version: Fixed from version 4.11rc7"
-
-CVE_STATUS[CVE-2017-7895] = "fixed-version: Fixed from version 4.11"
-
-CVE_STATUS[CVE-2017-7979] = "fixed-version: Fixed from version 4.11rc8"
-
-CVE_STATUS[CVE-2017-8061] = "fixed-version: Fixed from version 4.11rc4"
-
-CVE_STATUS[CVE-2017-8062] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-8063] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8064] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8065] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8066] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8067] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2017-8068] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-8069] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-8070] = "fixed-version: Fixed from version 4.10rc8"
-
-CVE_STATUS[CVE-2017-8071] = "fixed-version: Fixed from version 4.10rc7"
-
-CVE_STATUS[CVE-2017-8072] = "fixed-version: Fixed from version 4.10rc7"
-
-CVE_STATUS[CVE-2017-8106] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2017-8240] = "fixed-version: Fixed from version 3.19rc6"
-
-# CVE-2017-8242 has no known resolution
-
-# CVE-2017-8244 has no known resolution
-
-# CVE-2017-8245 has no known resolution
-
-# CVE-2017-8246 has no known resolution
-
-CVE_STATUS[CVE-2017-8797] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-8824] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2017-8831] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-8890] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-8924] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-8925] = "fixed-version: Fixed from version 4.11rc2"
-
-CVE_STATUS[CVE-2017-9059] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-9074] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-9075] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-9076] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-9077] = "fixed-version: Fixed from version 4.12rc2"
-
-CVE_STATUS[CVE-2017-9150] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2017-9211] = "fixed-version: Fixed from version 4.12rc3"
-
-CVE_STATUS[CVE-2017-9242] = "fixed-version: Fixed from version 4.12rc3"
-
-CVE_STATUS[CVE-2017-9605] = "fixed-version: Fixed from version 4.12rc5"
-
-CVE_STATUS[CVE-2017-9725] = "fixed-version: Fixed from version 4.3rc7"
-
-CVE_STATUS[CVE-2017-9984] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-9985] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2017-9986] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2018-1000004] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2018-1000026] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-1000028] = "fixed-version: Fixed from version 4.15"
-
-CVE_STATUS[CVE-2018-1000199] = "fixed-version: Fixed from version 4.16"
-
-CVE_STATUS[CVE-2018-1000200] = "fixed-version: Fixed from version 4.17rc5"
-
-CVE_STATUS[CVE-2018-1000204] = "fixed-version: Fixed from version 4.17rc7"
-
-CVE_STATUS[CVE-2018-10021] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-10074] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-10087] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2018-10124] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2018-10322] = "fixed-version: Fixed from version 4.17rc4"
-
-CVE_STATUS[CVE-2018-10323] = "fixed-version: Fixed from version 4.17rc4"
-
-CVE_STATUS[CVE-2018-1065] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2018-1066] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2018-10675] = "fixed-version: Fixed from version 4.13rc6"
-
-CVE_STATUS[CVE-2018-1068] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2018-10840] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-10853] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-1087] = "fixed-version: Fixed from version 4.16rc7"
-
-# CVE-2018-10872 has no known resolution
-
-CVE_STATUS[CVE-2018-10876] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10877] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10878] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10879] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10880] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10881] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10882] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10883] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-10901] = "fixed-version: Fixed from version 2.6.36rc1"
-
-CVE_STATUS[CVE-2018-10902] = "fixed-version: Fixed from version 4.18rc6"
-
-CVE_STATUS[CVE-2018-1091] = "fixed-version: Fixed from version 4.14rc2"
-
-CVE_STATUS[CVE-2018-1092] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-1093] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-10938] = "fixed-version: Fixed from version 4.13rc5"
-
-CVE_STATUS[CVE-2018-1094] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-10940] = "fixed-version: Fixed from version 4.17rc3"
-
-CVE_STATUS[CVE-2018-1095] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-1108] = "fixed-version: Fixed from version 4.17rc2"
-
-CVE_STATUS[CVE-2018-1118] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-1120] = "fixed-version: Fixed from version 4.17rc6"
-
-# CVE-2018-1121 has no known resolution
-
-CVE_STATUS[CVE-2018-11232] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2018-1128] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-1129] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-1130] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-11412] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-11506] = "fixed-version: Fixed from version 4.17rc7"
-
-CVE_STATUS[CVE-2018-11508] = "fixed-version: Fixed from version 4.17rc5"
-
-# CVE-2018-11987 has no known resolution
-
-CVE_STATUS[CVE-2018-12126] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2018-12127] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2018-12130] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2018-12207] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2018-12232] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-12233] = "fixed-version: Fixed from version 4.18rc2"
-
-CVE_STATUS[CVE-2018-12633] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-12714] = "fixed-version: Fixed from version 4.18rc2"
-
-CVE_STATUS[CVE-2018-12896] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-12904] = "fixed-version: Fixed from version 4.18rc1"
-
-# CVE-2018-12928 has no known resolution
-
-# CVE-2018-12929 has no known resolution
-
-# CVE-2018-12930 has no known resolution
-
-# CVE-2018-12931 has no known resolution
-
-CVE_STATUS[CVE-2018-13053] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13093] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-13094] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-13095] = "fixed-version: Fixed from version 4.18rc3"
-
-CVE_STATUS[CVE-2018-13096] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13097] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13098] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13099] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13100] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-13405] = "fixed-version: Fixed from version 4.18rc4"
-
-CVE_STATUS[CVE-2018-13406] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-14609] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14610] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14611] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14612] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14613] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14614] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14615] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14616] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14617] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-14619] = "fixed-version: Fixed from version 4.15rc4"
-
-CVE_STATUS[CVE-2018-14625] = "fixed-version: Fixed from version 4.20rc6"
-
-CVE_STATUS[CVE-2018-14633] = "fixed-version: Fixed from version 4.19rc6"
-
-CVE_STATUS[CVE-2018-14634] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2018-14641] = "fixed-version: Fixed from version 4.19rc4"
-
-CVE_STATUS[CVE-2018-14646] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2018-14656] = "fixed-version: Fixed from version 4.19rc2"
-
-CVE_STATUS[CVE-2018-14678] = "fixed-version: Fixed from version 4.18rc8"
-
-CVE_STATUS[CVE-2018-14734] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-15471] = "fixed-version: Fixed from version 4.19rc7"
-
-CVE_STATUS[CVE-2018-15572] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-15594] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-16276] = "fixed-version: Fixed from version 4.18rc5"
-
-CVE_STATUS[CVE-2018-16597] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2018-16658] = "fixed-version: Fixed from version 4.19rc2"
-
-CVE_STATUS[CVE-2018-16862] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2018-16871] = "fixed-version: Fixed from version 4.20rc3"
-
-CVE_STATUS[CVE-2018-16880] = "fixed-version: Fixed from version 5.0rc5"
-
-CVE_STATUS[CVE-2018-16882] = "fixed-version: Fixed from version 4.20"
-
-CVE_STATUS[CVE-2018-16884] = "fixed-version: Fixed from version 5.0rc1"
-
-# CVE-2018-16885 has no known resolution
-
-CVE_STATUS[CVE-2018-17182] = "fixed-version: Fixed from version 4.19rc4"
-
-CVE_STATUS[CVE-2018-17972] = "fixed-version: Fixed from version 4.19rc7"
-
-# CVE-2018-17977 has no known resolution
-
-CVE_STATUS[CVE-2018-18021] = "fixed-version: Fixed from version 4.19rc7"
-
-CVE_STATUS[CVE-2018-18281] = "fixed-version: Fixed from version 4.19"
-
-CVE_STATUS[CVE-2018-18386] = "fixed-version: Fixed from version 4.15rc6"
-
-CVE_STATUS[CVE-2018-18397] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2018-18445] = "fixed-version: Fixed from version 4.19rc7"
-
-CVE_STATUS[CVE-2018-18559] = "fixed-version: Fixed from version 4.15rc2"
-
-# CVE-2018-18653 has no known resolution
-
-CVE_STATUS[CVE-2018-18690] = "fixed-version: Fixed from version 4.17rc4"
-
-CVE_STATUS[CVE-2018-18710] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2018-18955] = "fixed-version: Fixed from version 4.20rc2"
-
-CVE_STATUS[CVE-2018-19406] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2018-19407] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2018-19824] = "fixed-version: Fixed from version 4.20rc6"
-
-CVE_STATUS[CVE-2018-19854] = "fixed-version: Fixed from version 4.20rc3"
-
-CVE_STATUS[CVE-2018-19985] = "fixed-version: Fixed from version 4.20"
-
-CVE_STATUS[CVE-2018-20169] = "fixed-version: Fixed from version 4.20rc6"
-
-CVE_STATUS[CVE-2018-20449] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-20509] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2018-20510] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2018-20511] = "fixed-version: Fixed from version 4.19rc5"
-
-CVE_STATUS[CVE-2018-20669] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2018-20784] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2018-20836] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2018-20854] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2018-20855] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-20856] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-20961] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-20976] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-21008] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2018-25015] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2018-25020] = "fixed-version: Fixed from version 4.17rc7"
-
-# CVE-2018-3574 has no known resolution
-
-CVE_STATUS[CVE-2018-3620] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-3639] = "fixed-version: Fixed from version 4.17rc7"
-
-CVE_STATUS[CVE-2018-3646] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-3665] = "fixed-version: Fixed from version 3.7rc1"
-
-CVE_STATUS[CVE-2018-3693] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-5332] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2018-5333] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2018-5344] = "fixed-version: Fixed from version 4.15rc8"
-
-CVE_STATUS[CVE-2018-5390] = "fixed-version: Fixed from version 4.18rc7"
-
-CVE_STATUS[CVE-2018-5391] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-5703] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2018-5750] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-5803] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-5814] = "fixed-version: Fixed from version 4.17rc6"
-
-CVE_STATUS[CVE-2018-5848] = "fixed-version: Fixed from version 4.16rc1"
-
-# Skipping CVE-2018-5856, no affected_versions
-
-CVE_STATUS[CVE-2018-5873] = "fixed-version: Fixed from version 4.11rc8"
-
-CVE_STATUS[CVE-2018-5953] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-5995] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-6412] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2018-6554] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2018-6555] = "fixed-version: Fixed from version 4.17rc1"
-
-# CVE-2018-6559 has no known resolution
-
-CVE_STATUS[CVE-2018-6927] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2018-7191] = "fixed-version: Fixed from version 4.14rc6"
-
-CVE_STATUS[CVE-2018-7273] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-7480] = "fixed-version: Fixed from version 4.11rc1"
-
-CVE_STATUS[CVE-2018-7492] = "fixed-version: Fixed from version 4.15rc3"
-
-CVE_STATUS[CVE-2018-7566] = "fixed-version: Fixed from version 4.16rc2"
-
-CVE_STATUS[CVE-2018-7740] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-7754] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2018-7755] = "fixed-version: Fixed from version 4.19rc5"
-
-CVE_STATUS[CVE-2018-7757] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-7995] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2018-8043] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-8087] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2018-8781] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-8822] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-8897] = "fixed-version: Fixed from version 4.16rc7"
-
-CVE_STATUS[CVE-2018-9363] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2018-9385] = "fixed-version: Fixed from version 4.17rc3"
-
-CVE_STATUS[CVE-2018-9415] = "fixed-version: Fixed from version 4.17rc3"
-
-CVE_STATUS[CVE-2018-9422] = "fixed-version: Fixed from version 4.6rc1"
-
-CVE_STATUS[CVE-2018-9465] = "fixed-version: Fixed from version 4.15rc6"
-
-CVE_STATUS[CVE-2018-9516] = "fixed-version: Fixed from version 4.18rc5"
-
-CVE_STATUS[CVE-2018-9517] = "fixed-version: Fixed from version 4.14rc1"
-
-CVE_STATUS[CVE-2018-9518] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2018-9568] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2019-0136] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-0145] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-0146] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-0147] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-0148] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-0149] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-0154] = "fixed-version: Fixed from version 5.4rc8"
-
-CVE_STATUS[CVE-2019-0155] = "fixed-version: Fixed from version 5.4rc8"
-
-CVE_STATUS[CVE-2019-10124] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-10125] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-10126] = "fixed-version: Fixed from version 5.2rc6"
-
-# CVE-2019-10140 has no known resolution
-
-CVE_STATUS[CVE-2019-10142] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-10207] = "fixed-version: Fixed from version 5.3rc3"
-
-CVE_STATUS[CVE-2019-10220] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-10638] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-10639] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-11085] = "fixed-version: Fixed from version 5.0rc3"
-
-CVE_STATUS[CVE-2019-11091] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-11135] = "fixed-version: Fixed from version 5.4rc8"
-
-CVE_STATUS[CVE-2019-11190] = "fixed-version: Fixed from version 4.8rc5"
-
-CVE_STATUS[CVE-2019-11191] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-1125] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-11477] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-11478] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-11479] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-11486] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-11487] = "fixed-version: Fixed from version 5.1rc5"
-
-CVE_STATUS[CVE-2019-11599] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-11683] = "fixed-version: Fixed from version 5.1"
-
-CVE_STATUS[CVE-2019-11810] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-11811] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-11815] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-11833] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-11884] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-12378] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-12379] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-12380] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-12381] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-12382] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-12454] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-12455] = "fixed-version: Fixed from version 5.3rc1"
-
-# CVE-2019-12456 has no known resolution
-
-CVE_STATUS[CVE-2019-12614] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-12615] = "fixed-version: Fixed from version 5.2rc4"
-
-CVE_STATUS[CVE-2019-12817] = "fixed-version: Fixed from version 5.2rc7"
-
-CVE_STATUS[CVE-2019-12818] = "fixed-version: Fixed from version 5.0"
-
-CVE_STATUS[CVE-2019-12819] = "fixed-version: Fixed from version 5.0rc8"
-
-CVE_STATUS[CVE-2019-12881] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2019-12984] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-13233] = "fixed-version: Fixed from version 5.2rc4"
-
-CVE_STATUS[CVE-2019-13272] = "fixed-version: Fixed from version 5.2"
-
-CVE_STATUS[CVE-2019-13631] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-13648] = "fixed-version: Fixed from version 5.3rc2"
-
-CVE_STATUS[CVE-2019-14283] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-14284] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-14615] = "fixed-version: Fixed from version 5.5rc7"
-
-CVE_STATUS[CVE-2019-14763] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2019-14814] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-14815] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-14816] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-14821] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-14835] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-14895] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-14896] = "fixed-version: Fixed from version 5.5"
-
-CVE_STATUS[CVE-2019-14897] = "fixed-version: Fixed from version 5.5"
-
-# CVE-2019-14898 has no known resolution
-
-CVE_STATUS[CVE-2019-14901] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-15030] = "fixed-version: Fixed from version 5.3rc8"
-
-CVE_STATUS[CVE-2019-15031] = "fixed-version: Fixed from version 5.3rc8"
-
-CVE_STATUS[CVE-2019-15090] = "fixed-version: Fixed from version 5.2rc2"
-
-CVE_STATUS[CVE-2019-15098] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-15099] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-15117] = "fixed-version: Fixed from version 5.3rc5"
-
-CVE_STATUS[CVE-2019-15118] = "fixed-version: Fixed from version 5.3rc5"
-
-CVE_STATUS[CVE-2019-15211] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15212] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-15213] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15214] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-15215] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15216] = "fixed-version: Fixed from version 5.1"
-
-CVE_STATUS[CVE-2019-15217] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15218] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-15219] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2019-15220] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15221] = "fixed-version: Fixed from version 5.2"
-
-CVE_STATUS[CVE-2019-15222] = "fixed-version: Fixed from version 5.3rc3"
-
-CVE_STATUS[CVE-2019-15223] = "fixed-version: Fixed from version 5.2rc3"
-
-# CVE-2019-15239 has no known resolution
-
-# CVE-2019-15290 has no known resolution
-
-CVE_STATUS[CVE-2019-15291] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-15292] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-15504] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-15505] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-15538] = "fixed-version: Fixed from version 5.3rc6"
-
-CVE_STATUS[CVE-2019-15666] = "fixed-version: Fixed from version 5.1"
-
-# CVE-2019-15791 has no known resolution
-
-# CVE-2019-15792 has no known resolution
-
-# CVE-2019-15793 has no known resolution
-
-CVE_STATUS[CVE-2019-15794] = "fixed-version: Fixed from version 5.12"
-
-CVE_STATUS[CVE-2019-15807] = "fixed-version: Fixed from version 5.2rc3"
-
-# CVE-2019-15902 has no known resolution
-
-CVE_STATUS[CVE-2019-15916] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-15917] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-15918] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-15919] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-15920] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-15921] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-15922] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-15923] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-15924] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-15925] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15926] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-15927] = "fixed-version: Fixed from version 5.0rc2"
-
-# CVE-2019-16089 has no known resolution
-
-CVE_STATUS[CVE-2019-16229] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-16230] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-16231] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-16232] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-16233] = "fixed-version: Fixed from version 5.4rc5"
-
-CVE_STATUS[CVE-2019-16234] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-16413] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-16714] = "fixed-version: Fixed from version 5.3rc7"
-
-CVE_STATUS[CVE-2019-16746] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-16921] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2019-16994] = "fixed-version: Fixed from version 5.0"
-
-CVE_STATUS[CVE-2019-16995] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-17052] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17053] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17054] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17055] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17056] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-17075] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-17133] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-17351] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-17666] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-18198] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-18282] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-18660] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18675] = "fixed-version: Fixed from version 4.17rc5"
-
-# CVE-2019-18680 has no known resolution
-
-CVE_STATUS[CVE-2019-18683] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18786] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18805] = "fixed-version: Fixed from version 5.1rc7"
-
-CVE_STATUS[CVE-2019-18806] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-18807] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-18808] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18809] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-18810] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-18811] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-18812] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-18813] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-18814] = "fixed-version: Fixed from version 5.7rc7"
-
-CVE_STATUS[CVE-2019-18885] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-19036] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19037] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-19039] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2019-19043] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19044] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19045] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19046] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19047] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19048] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19049] = "fixed-version: Fixed from version 5.4rc5"
-
-CVE_STATUS[CVE-2019-19050] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19051] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19052] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-19053] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19054] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19055] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-19056] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19057] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19058] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-19059] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-19060] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19061] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19062] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19063] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19064] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19065] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19066] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19067] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-19068] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19069] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19070] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19071] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19072] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19073] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19074] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19075] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-19076] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19077] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19078] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19079] = "fixed-version: Fixed from version 5.3"
-
-CVE_STATUS[CVE-2019-19080] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19081] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19082] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19083] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-19227] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-19241] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19252] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19318] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19319] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-19332] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19338] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19377] = "fixed-version: Fixed from version 5.7rc1"
-
-# CVE-2019-19378 has no known resolution
-
-CVE_STATUS[CVE-2019-19447] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19448] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2019-19449] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2019-19462] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2019-19523] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19524] = "fixed-version: Fixed from version 5.4rc8"
-
-CVE_STATUS[CVE-2019-19525] = "fixed-version: Fixed from version 5.4rc2"
-
-CVE_STATUS[CVE-2019-19526] = "fixed-version: Fixed from version 5.4rc4"
-
-CVE_STATUS[CVE-2019-19527] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-19528] = "fixed-version: Fixed from version 5.4rc3"
-
-CVE_STATUS[CVE-2019-19529] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-19530] = "fixed-version: Fixed from version 5.3rc5"
-
-CVE_STATUS[CVE-2019-19531] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-19532] = "fixed-version: Fixed from version 5.4rc6"
-
-CVE_STATUS[CVE-2019-19533] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19534] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-19535] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-19536] = "fixed-version: Fixed from version 5.3rc4"
-
-CVE_STATUS[CVE-2019-19537] = "fixed-version: Fixed from version 5.3rc5"
-
-CVE_STATUS[CVE-2019-19543] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-19602] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19767] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2019-19768] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2019-19769] = "fixed-version: Fixed from version 5.6rc5"
-
-CVE_STATUS[CVE-2019-19770] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2019-19807] = "fixed-version: Fixed from version 5.4rc7"
-
-CVE_STATUS[CVE-2019-19813] = "fixed-version: Fixed from version 5.2rc1"
-
-# CVE-2019-19814 has no known resolution
-
-CVE_STATUS[CVE-2019-19815] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2019-19816] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-19922] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-19927] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-19947] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-19965] = "fixed-version: Fixed from version 5.5rc2"
-
-CVE_STATUS[CVE-2019-19966] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-1999] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-20054] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-20095] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-20096] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-2024] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2019-2025] = "fixed-version: Fixed from version 4.20rc5"
-
-CVE_STATUS[CVE-2019-20422] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-2054] = "fixed-version: Fixed from version 4.8rc1"
-
-CVE_STATUS[CVE-2019-20636] = "fixed-version: Fixed from version 5.5rc6"
-
-# CVE-2019-20794 has no known resolution
-
-CVE_STATUS[CVE-2019-20806] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-20810] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2019-20811] = "fixed-version: Fixed from version 5.1rc3"
-
-CVE_STATUS[CVE-2019-20812] = "fixed-version: Fixed from version 5.5rc3"
-
-CVE_STATUS[CVE-2019-20908] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2019-20934] = "fixed-version: Fixed from version 5.3rc2"
-
-CVE_STATUS[CVE-2019-2101] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-2181] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-2182] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2019-2213] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-2214] = "fixed-version: Fixed from version 5.3rc2"
-
-CVE_STATUS[CVE-2019-2215] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2019-25044] = "fixed-version: Fixed from version 5.2rc4"
-
-CVE_STATUS[CVE-2019-25045] = "fixed-version: Fixed from version 5.1"
-
-CVE_STATUS[CVE-2019-25160] = "fixed-version: Fixed from version 5.0"
-
-CVE_STATUS[CVE-2019-25162] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2019-3016] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2019-3459] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-3460] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-3701] = "fixed-version: Fixed from version 5.0rc3"
-
-CVE_STATUS[CVE-2019-3819] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-3837] = "fixed-version: Fixed from version 3.18rc1"
-
-CVE_STATUS[CVE-2019-3846] = "fixed-version: Fixed from version 5.2rc6"
-
-CVE_STATUS[CVE-2019-3874] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-3882] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-3887] = "fixed-version: Fixed from version 5.1rc4"
-
-CVE_STATUS[CVE-2019-3892] = "fixed-version: Fixed from version 5.1rc6"
-
-CVE_STATUS[CVE-2019-3896] = "fixed-version: Fixed from version 2.6.35rc1"
-
-CVE_STATUS[CVE-2019-3900] = "fixed-version: Fixed from version 5.2rc4"
-
-CVE_STATUS[CVE-2019-3901] = "fixed-version: Fixed from version 4.6rc6"
-
-CVE_STATUS[CVE-2019-5108] = "fixed-version: Fixed from version 5.3"
-
-# Skipping CVE-2019-5489, no affected_versions
-
-CVE_STATUS[CVE-2019-6133] = "fixed-version: Fixed from version 5.0rc2"
-
-CVE_STATUS[CVE-2019-6974] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-7221] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-7222] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-7308] = "fixed-version: Fixed from version 5.0rc3"
-
-CVE_STATUS[CVE-2019-8912] = "fixed-version: Fixed from version 5.0rc8"
-
-CVE_STATUS[CVE-2019-8956] = "fixed-version: Fixed from version 5.0rc6"
-
-CVE_STATUS[CVE-2019-8980] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9003] = "fixed-version: Fixed from version 5.0rc4"
-
-CVE_STATUS[CVE-2019-9162] = "fixed-version: Fixed from version 5.0rc7"
-
-CVE_STATUS[CVE-2019-9213] = "fixed-version: Fixed from version 5.0"
-
-CVE_STATUS[CVE-2019-9245] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2019-9444] = "fixed-version: Fixed from version 4.15rc2"
-
-CVE_STATUS[CVE-2019-9445] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9453] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2019-9454] = "fixed-version: Fixed from version 4.15rc9"
-
-CVE_STATUS[CVE-2019-9455] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2019-9456] = "fixed-version: Fixed from version 4.16rc6"
-
-CVE_STATUS[CVE-2019-9457] = "fixed-version: Fixed from version 4.13rc1"
-
-CVE_STATUS[CVE-2019-9458] = "fixed-version: Fixed from version 4.19rc7"
-
-CVE_STATUS[CVE-2019-9466] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9500] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9503] = "fixed-version: Fixed from version 5.1rc1"
-
-CVE_STATUS[CVE-2019-9506] = "fixed-version: Fixed from version 5.2"
-
-CVE_STATUS[CVE-2019-9857] = "fixed-version: Fixed from version 5.1rc2"
-
-CVE_STATUS[CVE-2020-0009] = "fixed-version: Fixed from version 5.6rc3"
-
-CVE_STATUS[CVE-2020-0030] = "fixed-version: Fixed from version 4.16rc3"
-
-CVE_STATUS[CVE-2020-0041] = "fixed-version: Fixed from version 5.5rc2"
-
-CVE_STATUS[CVE-2020-0066] = "fixed-version: Fixed from version 4.3rc7"
-
-CVE_STATUS[CVE-2020-0067] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2020-0110] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2020-0255] = "fixed-version: Fixed from version 5.7rc4"
-
-CVE_STATUS[CVE-2020-0305] = "fixed-version: Fixed from version 5.5rc6"
-
-# CVE-2020-0347 has no known resolution
-
-CVE_STATUS[CVE-2020-0404] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2020-0423] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-0427] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2020-0429] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2020-0430] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2020-0431] = "fixed-version: Fixed from version 5.5rc6"
-
-CVE_STATUS[CVE-2020-0432] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2020-0433] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2020-0435] = "fixed-version: Fixed from version 4.19rc1"
-
-CVE_STATUS[CVE-2020-0444] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-0465] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-0466] = "fixed-version: Fixed from version 5.9rc2"
-
-CVE_STATUS[CVE-2020-0543] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10135] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10690] = "fixed-version: Fixed from version 5.5rc5"
-
-# CVE-2020-10708 has no known resolution
-
-CVE_STATUS[CVE-2020-10711] = "fixed-version: Fixed from version 5.7rc6"
-
-CVE_STATUS[CVE-2020-10720] = "fixed-version: Fixed from version 5.2rc3"
-
-CVE_STATUS[CVE-2020-10732] = "fixed-version: Fixed from version 5.7"
-
-CVE_STATUS[CVE-2020-10742] = "fixed-version: Fixed from version 3.16rc1"
-
-CVE_STATUS[CVE-2020-10751] = "fixed-version: Fixed from version 5.7rc4"
-
-CVE_STATUS[CVE-2020-10757] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10766] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10767] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10768] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-10769] = "fixed-version: Fixed from version 5.0rc3"
-
-CVE_STATUS[CVE-2020-10773] = "fixed-version: Fixed from version 5.4rc6"
-
-# CVE-2020-10774 has no known resolution
-
-CVE_STATUS[CVE-2020-10781] = "fixed-version: Fixed from version 5.8rc6"
-
-CVE_STATUS[CVE-2020-10942] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-11494] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11565] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11608] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11609] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11668] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-11669] = "fixed-version: Fixed from version 5.2rc1"
-
-# CVE-2020-11725 has no known resolution
-
-CVE_STATUS[CVE-2020-11884] = "fixed-version: Fixed from version 5.7rc4"
-
-# CVE-2020-11935 has no known resolution
-
-CVE_STATUS[CVE-2020-12114] = "fixed-version: Fixed from version 5.3rc1"
-
-CVE_STATUS[CVE-2020-12351] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-12352] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-12362] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-12363] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-12364] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-12464] = "fixed-version: Fixed from version 5.7rc3"
-
-CVE_STATUS[CVE-2020-12465] = "fixed-version: Fixed from version 5.6rc6"
-
-CVE_STATUS[CVE-2020-12652] = "fixed-version: Fixed from version 5.5rc7"
-
-CVE_STATUS[CVE-2020-12653] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2020-12654] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2020-12655] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-12656] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-12657] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-12659] = "fixed-version: Fixed from version 5.7rc2"
-
-CVE_STATUS[CVE-2020-12768] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-12769] = "fixed-version: Fixed from version 5.5rc6"
-
-CVE_STATUS[CVE-2020-12770] = "fixed-version: Fixed from version 5.7rc3"
-
-CVE_STATUS[CVE-2020-12771] = "fixed-version: Fixed from version 5.8rc2"
-
-CVE_STATUS[CVE-2020-12826] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-12888] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-12912] = "fixed-version: Fixed from version 5.10rc4"
-
-CVE_STATUS[CVE-2020-13143] = "fixed-version: Fixed from version 5.7rc6"
-
-CVE_STATUS[CVE-2020-13974] = "fixed-version: Fixed from version 5.8rc1"
-
-# CVE-2020-14304 has no known resolution
-
-CVE_STATUS[CVE-2020-14305] = "fixed-version: Fixed from version 4.12rc1"
-
-CVE_STATUS[CVE-2020-14314] = "fixed-version: Fixed from version 5.9rc2"
-
-CVE_STATUS[CVE-2020-14331] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-14351] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-14353] = "fixed-version: Fixed from version 4.14rc3"
-
-CVE_STATUS[CVE-2020-14356] = "fixed-version: Fixed from version 5.8rc5"
-
-CVE_STATUS[CVE-2020-14381] = "fixed-version: Fixed from version 5.6rc6"
-
-CVE_STATUS[CVE-2020-14385] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-14386] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-14390] = "fixed-version: Fixed from version 5.9rc6"
-
-CVE_STATUS[CVE-2020-14416] = "fixed-version: Fixed from version 5.5"
-
-CVE_STATUS[CVE-2020-15393] = "fixed-version: Fixed from version 5.8rc3"
-
-CVE_STATUS[CVE-2020-15436] = "fixed-version: Fixed from version 5.8rc2"
-
-CVE_STATUS[CVE-2020-15437] = "fixed-version: Fixed from version 5.8rc7"
-
-CVE_STATUS[CVE-2020-15780] = "fixed-version: Fixed from version 5.8rc3"
-
-# CVE-2020-15802 has no known resolution
-
-CVE_STATUS[CVE-2020-15852] = "fixed-version: Fixed from version 5.8rc6"
-
-CVE_STATUS[CVE-2020-16119] = "fixed-version: Fixed from version 5.15rc2"
-
-CVE_STATUS[CVE-2020-16120] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-16166] = "fixed-version: Fixed from version 5.8"
-
-CVE_STATUS[CVE-2020-1749] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2020-24394] = "fixed-version: Fixed from version 5.8rc4"
-
-CVE_STATUS[CVE-2020-24490] = "fixed-version: Fixed from version 5.8"
-
-# CVE-2020-24502 has no known resolution
-
-# CVE-2020-24503 has no known resolution
-
-CVE_STATUS[CVE-2020-24504] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2020-24586] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-24587] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-24588] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-25211] = "fixed-version: Fixed from version 5.9rc7"
-
-CVE_STATUS[CVE-2020-25212] = "fixed-version: Fixed from version 5.9rc1"
-
-# CVE-2020-25220 has no known resolution
-
-CVE_STATUS[CVE-2020-25221] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-25284] = "fixed-version: Fixed from version 5.9rc5"
-
-CVE_STATUS[CVE-2020-25285] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-25639] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2020-25641] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2020-25643] = "fixed-version: Fixed from version 5.9rc7"
-
-CVE_STATUS[CVE-2020-25645] = "fixed-version: Fixed from version 5.9rc7"
-
-CVE_STATUS[CVE-2020-25656] = "fixed-version: Fixed from version 5.10rc2"
-
-# CVE-2020-25661 has no known resolution
-
-# CVE-2020-25662 has no known resolution
-
-CVE_STATUS[CVE-2020-25668] = "fixed-version: Fixed from version 5.10rc3"
-
-CVE_STATUS[CVE-2020-25669] = "fixed-version: Fixed from version 5.10rc5"
-
-CVE_STATUS[CVE-2020-25670] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2020-25671] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2020-25672] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2020-25673] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2020-25704] = "fixed-version: Fixed from version 5.10rc3"
-
-CVE_STATUS[CVE-2020-25705] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-26088] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-26139] = "fixed-version: Fixed from version 5.13rc4"
-
-# CVE-2020-26140 has no known resolution
-
-CVE_STATUS[CVE-2020-26141] = "fixed-version: Fixed from version 5.13rc4"
-
-# CVE-2020-26142 has no known resolution
-
-# CVE-2020-26143 has no known resolution
-
-CVE_STATUS[CVE-2020-26145] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-26147] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2020-26541] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-26555] = "fixed-version: Fixed from version 5.13rc1"
-
-# CVE-2020-26556 has no known resolution
-
-# CVE-2020-26557 has no known resolution
-
-CVE_STATUS[CVE-2020-26558] = "fixed-version: Fixed from version 5.13rc1"
-
-# CVE-2020-26559 has no known resolution
-
-# CVE-2020-26560 has no known resolution
-
-CVE_STATUS[CVE-2020-27066] = "fixed-version: Fixed from version 5.6"
-
-CVE_STATUS[CVE-2020-27067] = "fixed-version: Fixed from version 4.14rc4"
-
-CVE_STATUS[CVE-2020-27068] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2020-27152] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27170] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2020-27171] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2020-27194] = "fixed-version: Fixed from version 5.9"
-
-CVE_STATUS[CVE-2020-2732] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-27418] = "fixed-version: Fixed from version 5.6rc5"
-
-CVE_STATUS[CVE-2020-27673] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27675] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27777] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27784] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27786] = "fixed-version: Fixed from version 5.7rc6"
-
-CVE_STATUS[CVE-2020-27815] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-27820] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2020-27825] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-27830] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-27835] = "fixed-version: Fixed from version 5.10rc6"
-
-CVE_STATUS[CVE-2020-28097] = "fixed-version: Fixed from version 5.9rc6"
-
-CVE_STATUS[CVE-2020-28374] = "fixed-version: Fixed from version 5.11rc4"
-
-CVE_STATUS[CVE-2020-28588] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-28915] = "fixed-version: Fixed from version 5.9"
-
-CVE_STATUS[CVE-2020-28941] = "fixed-version: Fixed from version 5.10rc5"
-
-CVE_STATUS[CVE-2020-28974] = "fixed-version: Fixed from version 5.10rc3"
-
-CVE_STATUS[CVE-2020-29368] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-29369] = "fixed-version: Fixed from version 5.8rc7"
-
-CVE_STATUS[CVE-2020-29370] = "fixed-version: Fixed from version 5.6rc7"
-
-CVE_STATUS[CVE-2020-29371] = "fixed-version: Fixed from version 5.9rc2"
-
-CVE_STATUS[CVE-2020-29372] = "fixed-version: Fixed from version 5.7rc3"
-
-CVE_STATUS[CVE-2020-29373] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2020-29374] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-29534] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-29568] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-29569] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-29660] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-29661] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-35499] = "fixed-version: Fixed from version 5.11rc1"
-
-# CVE-2020-35501 has no known resolution
-
-CVE_STATUS[CVE-2020-35508] = "fixed-version: Fixed from version 5.10rc3"
-
-CVE_STATUS[CVE-2020-35513] = "fixed-version: Fixed from version 4.17rc1"
-
-CVE_STATUS[CVE-2020-35519] = "fixed-version: Fixed from version 5.10rc7"
-
-CVE_STATUS[CVE-2020-36158] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-36310] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-36311] = "fixed-version: Fixed from version 5.9rc5"
-
-CVE_STATUS[CVE-2020-36312] = "fixed-version: Fixed from version 5.9rc5"
-
-CVE_STATUS[CVE-2020-36313] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-36322] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2020-36385] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2020-36386] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-36387] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-36516] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2020-36557] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-36558] = "fixed-version: Fixed from version 5.6rc3"
-
-CVE_STATUS[CVE-2020-36691] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2020-36694] = "fixed-version: Fixed from version 5.10"
-
-CVE_STATUS[CVE-2020-36766] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2020-36775] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-36776] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36777] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36778] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36779] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36780] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36781] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36782] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36783] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36784] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36785] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36786] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-36787] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2020-3702] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2020-4788] = "fixed-version: Fixed from version 5.10rc5"
-
-CVE_STATUS[CVE-2020-7053] = "fixed-version: Fixed from version 5.2rc1"
-
-CVE_STATUS[CVE-2020-8428] = "fixed-version: Fixed from version 5.5"
-
-CVE_STATUS[CVE-2020-8647] = "fixed-version: Fixed from version 5.6rc5"
-
-CVE_STATUS[CVE-2020-8648] = "fixed-version: Fixed from version 5.6rc3"
-
-CVE_STATUS[CVE-2020-8649] = "fixed-version: Fixed from version 5.6rc5"
-
-CVE_STATUS[CVE-2020-8694] = "fixed-version: Fixed from version 5.10rc4"
-
-# CVE-2020-8832 has no known resolution
-
-CVE_STATUS[CVE-2020-8834] = "fixed-version: Fixed from version 4.18rc1"
-
-CVE_STATUS[CVE-2020-8835] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2020-8992] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2020-9383] = "fixed-version: Fixed from version 5.6rc4"
-
-CVE_STATUS[CVE-2020-9391] = "fixed-version: Fixed from version 5.6rc3"
-
-CVE_STATUS[CVE-2021-0129] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-0342] = "fixed-version: Fixed from version 5.8rc1"
-
-# CVE-2021-0399 has no known resolution
-
-CVE_STATUS[CVE-2021-0447] = "fixed-version: Fixed from version 4.15rc1"
-
-CVE_STATUS[CVE-2021-0448] = "fixed-version: Fixed from version 5.9rc7"
-
-CVE_STATUS[CVE-2021-0512] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-0605] = "fixed-version: Fixed from version 5.8"
-
-# CVE-2021-0606 has no known resolution
-
-# CVE-2021-0695 has no known resolution
-
-CVE_STATUS[CVE-2021-0707] = "fixed-version: Fixed from version 5.11rc3"
-
-CVE_STATUS[CVE-2021-0920] = "fixed-version: Fixed from version 5.14rc4"
-
-# CVE-2021-0924 has no known resolution
-
-CVE_STATUS[CVE-2021-0929] = "fixed-version: Fixed from version 5.6rc1"
-
-CVE_STATUS[CVE-2021-0935] = "fixed-version: Fixed from version 4.16rc7"
-
-# CVE-2021-0936 has no known resolution
-
-CVE_STATUS[CVE-2021-0937] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-0938] = "fixed-version: Fixed from version 5.10rc4"
-
-CVE_STATUS[CVE-2021-0941] = "fixed-version: Fixed from version 5.12rc1"
-
-# CVE-2021-0961 has no known resolution
-
-CVE_STATUS[CVE-2021-1048] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2021-20177] = "fixed-version: Fixed from version 5.5rc1"
-
-CVE_STATUS[CVE-2021-20194] = "fixed-version: Fixed from version 5.10rc1"
-
-# CVE-2021-20219 has no known resolution
-
-CVE_STATUS[CVE-2021-20226] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2021-20239] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2021-20261] = "fixed-version: Fixed from version 4.5rc5"
-
-CVE_STATUS[CVE-2021-20265] = "fixed-version: Fixed from version 4.5rc3"
-
-CVE_STATUS[CVE-2021-20268] = "fixed-version: Fixed from version 5.11rc5"
-
-CVE_STATUS[CVE-2021-20292] = "fixed-version: Fixed from version 5.9rc1"
-
-CVE_STATUS[CVE-2021-20317] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2021-20320] = "fixed-version: Fixed from version 5.15rc3"
-
-CVE_STATUS[CVE-2021-20321] = "fixed-version: Fixed from version 5.15rc5"
-
-CVE_STATUS[CVE-2021-20322] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-21781] = "fixed-version: Fixed from version 5.11rc7"
-
-CVE_STATUS[CVE-2021-22543] = "fixed-version: Fixed from version 5.13"
-
-CVE_STATUS[CVE-2021-22555] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-22600] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-23133] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-23134] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-26401] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2021-26708] = "fixed-version: Fixed from version 5.11rc7"
-
-CVE_STATUS[CVE-2021-26930] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-26931] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-26932] = "fixed-version: Fixed from version 5.12rc1"
-
-# CVE-2021-26934 has no known resolution
-
-CVE_STATUS[CVE-2021-27363] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-27364] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-27365] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-28038] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-28039] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-28375] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-28660] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-28688] = "fixed-version: Fixed from version 5.12rc6"
-
-CVE_STATUS[CVE-2021-28691] = "fixed-version: Fixed from version 5.13rc6"
-
-CVE_STATUS[CVE-2021-28711] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28712] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28713] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28714] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28715] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-28950] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-28951] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-28952] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-28964] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-28971] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-28972] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-29154] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2021-29155] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-29264] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-29265] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-29266] = "fixed-version: Fixed from version 5.12rc4"
-
-CVE_STATUS[CVE-2021-29646] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29647] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29648] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29649] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29650] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-29657] = "fixed-version: Fixed from version 5.12rc6"
-
-CVE_STATUS[CVE-2021-30002] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-30178] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2021-31440] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-3178] = "fixed-version: Fixed from version 5.11rc5"
-
-CVE_STATUS[CVE-2021-31829] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-31916] = "fixed-version: Fixed from version 5.12rc5"
-
-CVE_STATUS[CVE-2021-32078] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-32399] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-32606] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-33033] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-33034] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-33061] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2021-33098] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-33135] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2021-33200] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-3347] = "fixed-version: Fixed from version 5.11rc6"
-
-CVE_STATUS[CVE-2021-3348] = "fixed-version: Fixed from version 5.11rc6"
-
-CVE_STATUS[CVE-2021-33624] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-33630] = "fixed-version: Fixed from version 5.4rc1"
-
-CVE_STATUS[CVE-2021-33631] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2021-33655] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2021-33656] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-33909] = "fixed-version: Fixed from version 5.14rc3"
-
-CVE_STATUS[CVE-2021-3411] = "fixed-version: Fixed from version 5.10"
-
-CVE_STATUS[CVE-2021-3428] = "fixed-version: Fixed from version 5.9rc2"
-
-CVE_STATUS[CVE-2021-3444] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-34556] = "fixed-version: Fixed from version 5.14rc4"
-
-CVE_STATUS[CVE-2021-34693] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-3483] = "fixed-version: Fixed from version 5.12rc6"
-
-CVE_STATUS[CVE-2021-34866] = "fixed-version: Fixed from version 5.14"
-
-CVE_STATUS[CVE-2021-3489] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-3490] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-3491] = "fixed-version: Fixed from version 5.13rc1"
-
-# CVE-2021-3492 has no known resolution
-
-CVE_STATUS[CVE-2021-3493] = "fixed-version: Fixed from version 5.11rc1"
-
-CVE_STATUS[CVE-2021-34981] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-3501] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-35039] = "fixed-version: Fixed from version 5.13"
-
-CVE_STATUS[CVE-2021-3506] = "fixed-version: Fixed from version 5.13rc1"
-
-# CVE-2021-3542 has no known resolution
-
-CVE_STATUS[CVE-2021-3543] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-35477] = "fixed-version: Fixed from version 5.14rc4"
-
-CVE_STATUS[CVE-2021-3564] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-3573] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-3587] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-3600] = "fixed-version: Fixed from version 5.11"
-
-CVE_STATUS[CVE-2021-3609] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-3612] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-3635] = "fixed-version: Fixed from version 5.5rc7"
-
-CVE_STATUS[CVE-2021-3640] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-3653] = "fixed-version: Fixed from version 5.14rc7"
-
-CVE_STATUS[CVE-2021-3655] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-3656] = "fixed-version: Fixed from version 5.14rc7"
-
-CVE_STATUS[CVE-2021-3659] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2021-3669] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-3679] = "fixed-version: Fixed from version 5.14rc3"
-
-# CVE-2021-3714 has no known resolution
-
-CVE_STATUS[CVE-2021-3715] = "fixed-version: Fixed from version 5.6"
-
-CVE_STATUS[CVE-2021-37159] = "fixed-version: Fixed from version 5.14rc3"
-
-CVE_STATUS[CVE-2021-3732] = "fixed-version: Fixed from version 5.14rc6"
-
-CVE_STATUS[CVE-2021-3736] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-3739] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-3743] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-3744] = "fixed-version: Fixed from version 5.15rc4"
-
-CVE_STATUS[CVE-2021-3752] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-3753] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-37576] = "fixed-version: Fixed from version 5.14rc3"
-
-CVE_STATUS[CVE-2021-3759] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-3760] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-3764] = "fixed-version: Fixed from version 5.15rc4"
-
-CVE_STATUS[CVE-2021-3772] = "fixed-version: Fixed from version 5.15"
-
-CVE_STATUS[CVE-2021-38160] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38166] = "fixed-version: Fixed from version 5.14rc6"
-
-CVE_STATUS[CVE-2021-38198] = "fixed-version: Fixed from version 5.13rc6"
-
-CVE_STATUS[CVE-2021-38199] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38200] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-38201] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38202] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38203] = "fixed-version: Fixed from version 5.14rc2"
-
-CVE_STATUS[CVE-2021-38204] = "fixed-version: Fixed from version 5.14rc3"
-
-CVE_STATUS[CVE-2021-38205] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-38206] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-38207] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-38208] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-38209] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-38300] = "fixed-version: Fixed from version 5.15rc4"
-
-# CVE-2021-3847 has no known resolution
-
-# CVE-2021-3864 has no known resolution
-
-# CVE-2021-3892 has no known resolution
-
-CVE_STATUS[CVE-2021-3894] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-3896] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-3923] = "fixed-version: Fixed from version 5.16"
-
-CVE_STATUS[CVE-2021-39633] = "fixed-version: Fixed from version 5.14"
-
-CVE_STATUS[CVE-2021-39634] = "fixed-version: Fixed from version 5.9rc8"
-
-CVE_STATUS[CVE-2021-39636] = "fixed-version: Fixed from version 4.16rc1"
-
-CVE_STATUS[CVE-2021-39648] = "fixed-version: Fixed from version 5.11rc3"
-
-CVE_STATUS[CVE-2021-39656] = "fixed-version: Fixed from version 5.12rc3"
-
-CVE_STATUS[CVE-2021-39657] = "fixed-version: Fixed from version 5.11rc4"
-
-CVE_STATUS[CVE-2021-39685] = "fixed-version: Fixed from version 5.16rc5"
-
-CVE_STATUS[CVE-2021-39686] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-39698] = "fixed-version: Fixed from version 5.16rc5"
-
-CVE_STATUS[CVE-2021-39711] = "fixed-version: Fixed from version 4.18rc6"
-
-CVE_STATUS[CVE-2021-39713] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2021-39714] = "fixed-version: Fixed from version 4.12rc1"
-
-# CVE-2021-39800 has no known resolution
-
-# CVE-2021-39801 has no known resolution
-
-# CVE-2021-39802 has no known resolution
-
-CVE_STATUS[CVE-2021-4001] = "fixed-version: Fixed from version 5.16rc2"
-
-CVE_STATUS[CVE-2021-4002] = "fixed-version: Fixed from version 5.16rc3"
-
-CVE_STATUS[CVE-2021-4023] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-4028] = "fixed-version: Fixed from version 5.15rc4"
-
-CVE_STATUS[CVE-2021-4032] = "fixed-version: Fixed from version 5.15rc7"
-
-CVE_STATUS[CVE-2021-4037] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2021-40490] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-4083] = "fixed-version: Fixed from version 5.16rc4"
-
-CVE_STATUS[CVE-2021-4090] = "fixed-version: Fixed from version 5.16rc2"
-
-CVE_STATUS[CVE-2021-4093] = "fixed-version: Fixed from version 5.15rc7"
-
-CVE_STATUS[CVE-2021-4095] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-41073] = "fixed-version: Fixed from version 5.15rc2"
-
-CVE_STATUS[CVE-2021-4135] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-4148] = "fixed-version: Fixed from version 5.15"
-
-CVE_STATUS[CVE-2021-4149] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-4150] = "fixed-version: Fixed from version 5.15rc7"
-
-CVE_STATUS[CVE-2021-4154] = "fixed-version: Fixed from version 5.14rc2"
-
-CVE_STATUS[CVE-2021-4155] = "fixed-version: Fixed from version 5.16"
-
-CVE_STATUS[CVE-2021-4157] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-4159] = "fixed-version: Fixed from version 5.7rc1"
-
-CVE_STATUS[CVE-2021-41864] = "fixed-version: Fixed from version 5.15rc5"
-
-CVE_STATUS[CVE-2021-4197] = "fixed-version: Fixed from version 5.16"
-
-CVE_STATUS[CVE-2021-42008] = "fixed-version: Fixed from version 5.14rc7"
-
-CVE_STATUS[CVE-2021-4202] = "fixed-version: Fixed from version 5.16rc2"
-
-CVE_STATUS[CVE-2021-4203] = "fixed-version: Fixed from version 5.15rc4"
-
-CVE_STATUS[CVE-2021-4204] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-4218] = "fixed-version: Fixed from version 5.8rc1"
-
-CVE_STATUS[CVE-2021-42252] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2021-42327] = "fixed-version: Fixed from version 5.15"
-
-CVE_STATUS[CVE-2021-42739] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-43056] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-43057] = "fixed-version: Fixed from version 5.15rc3"
-
-CVE_STATUS[CVE-2021-43267] = "fixed-version: Fixed from version 5.15"
-
-CVE_STATUS[CVE-2021-43389] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2021-43975] = "fixed-version: Fixed from version 5.16rc2"
-
-CVE_STATUS[CVE-2021-43976] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-44733] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-44879] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-45095] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-45100] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-45402] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-45469] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2021-45480] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2021-45485] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2021-45486] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-45868] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2021-46283] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-46904] = "fixed-version: Fixed from version 5.12rc7"
-
-CVE_STATUS[CVE-2021-46905] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46906] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-46908] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46909] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46910] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46911] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46912] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46913] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46914] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46915] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46916] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46917] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46918] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46919] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46920] = "fixed-version: Fixed from version 5.12rc8"
-
-CVE_STATUS[CVE-2021-46921] = "fixed-version: Fixed from version 5.12"
-
-CVE_STATUS[CVE-2021-46922] = "fixed-version: Fixed from version 5.12"
-
-CVE_STATUS[CVE-2021-46923] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46924] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46925] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46926] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-46927] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46928] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-46929] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46930] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46931] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46932] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46933] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46934] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46935] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46936] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46937] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2021-46938] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46939] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46940] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46941] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46942] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46943] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46944] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46945] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46947] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46948] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46949] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46950] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46951] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46952] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46953] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46954] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46955] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46956] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46957] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46958] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46959] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46960] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46961] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46962] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46963] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46964] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46965] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46966] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46967] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46968] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46969] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46970] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46971] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46972] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46973] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46974] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46976] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46977] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46978] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46979] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46980] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46981] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46982] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46983] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46984] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46985] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46986] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46987] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46988] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46989] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46990] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-46991] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46992] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46993] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46994] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46995] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46996] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46997] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46998] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-46999] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47000] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47001] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47002] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47003] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47004] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47005] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47006] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47007] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47008] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47009] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47010] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47011] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47012] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47013] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47014] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47015] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47016] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47017] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47018] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47019] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47020] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47021] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47022] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47023] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47024] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47025] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47026] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47027] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47028] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47029] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47030] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47031] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47032] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47033] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47034] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47035] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47036] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47037] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47038] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47039] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47040] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47041] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47042] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47043] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47044] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47045] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47046] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47047] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47048] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47049] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47050] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47051] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47052] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47053] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47054] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47055] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47056] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47057] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47058] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47059] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47060] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47061] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47062] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47063] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47064] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47065] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47066] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47067] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47068] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2021-47069] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47070] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47071] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47072] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47073] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47074] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47075] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47076] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47077] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47078] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47079] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47080] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47081] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47082] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47083] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47086] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47087] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47088] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47089] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47090] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47091] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47092] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47093] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47094] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47095] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47096] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47097] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47098] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47099] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47100] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47101] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47102] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47103] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47104] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47105] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47106] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47107] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47108] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2021-47109] = "fixed-version: Fixed from version 5.13rc7"
-
-CVE_STATUS[CVE-2021-47110] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47111] = "fixed-version: Fixed from version 5.13rc6"
-
-CVE_STATUS[CVE-2021-47112] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47113] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47114] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47116] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47117] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47118] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47119] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47120] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47121] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47122] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47123] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47124] = "fixed-version: Fixed from version 5.13rc2"
-
-CVE_STATUS[CVE-2021-47125] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47126] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47127] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47128] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47129] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47130] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47131] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47132] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47133] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47134] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47135] = "fixed-version: Fixed from version 5.13rc5"
-
-CVE_STATUS[CVE-2021-47136] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47137] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47138] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47139] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47140] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47141] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47142] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47143] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47144] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47145] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47146] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47147] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47148] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47149] = "fixed-version: Fixed from version 5.13rc3"
-
-CVE_STATUS[CVE-2021-47150] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47151] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47152] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47153] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47158] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47159] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47160] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47161] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47162] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47163] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47164] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47165] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47166] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47167] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47168] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47169] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47170] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47171] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47172] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47173] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47174] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47175] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47176] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47177] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47178] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47179] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2021-47180] = "fixed-version: Fixed from version 5.13rc4"
-
-CVE_STATUS[CVE-2022-0001] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-0002] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-0168] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-0171] = "fixed-version: Fixed from version 5.18rc4"
-
-CVE_STATUS[CVE-2022-0185] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-0264] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2022-0286] = "fixed-version: Fixed from version 5.14rc2"
-
-CVE_STATUS[CVE-2022-0322] = "fixed-version: Fixed from version 5.15rc6"
-
-CVE_STATUS[CVE-2022-0330] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-0382] = "fixed-version: Fixed from version 5.16"
-
-# CVE-2022-0400 has no known resolution
-
-CVE_STATUS[CVE-2022-0433] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-0435] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-0480] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-0487] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-0492] = "fixed-version: Fixed from version 5.17rc3"
-
-CVE_STATUS[CVE-2022-0494] = "fixed-version: Fixed from version 5.17rc5"
-
-CVE_STATUS[CVE-2022-0500] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-0516] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-0617] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-0644] = "fixed-version: Fixed from version 5.15rc7"
-
-CVE_STATUS[CVE-2022-0646] = "fixed-version: Fixed from version 5.17rc5"
-
-CVE_STATUS[CVE-2022-0742] = "fixed-version: Fixed from version 5.17rc7"
-
-CVE_STATUS[CVE-2022-0812] = "fixed-version: Fixed from version 5.8rc6"
-
-CVE_STATUS[CVE-2022-0847] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-0850] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2022-0854] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-0995] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-0998] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-1011] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-1012] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1015] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1016] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1043] = "fixed-version: Fixed from version 5.14rc7"
-
-CVE_STATUS[CVE-2022-1048] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1055] = "fixed-version: Fixed from version 5.17rc3"
-
-# CVE-2022-1116 has no known resolution
-
-CVE_STATUS[CVE-2022-1158] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1184] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1195] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2022-1198] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-1199] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-1204] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1205] = "fixed-version: Fixed from version 5.18rc1"
-
-# CVE-2022-1247 has no known resolution
-
-CVE_STATUS[CVE-2022-1263] = "fixed-version: Fixed from version 5.18rc3"
-
-CVE_STATUS[CVE-2022-1280] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-1353] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-1419] = "fixed-version: Fixed from version 5.6rc2"
-
-CVE_STATUS[CVE-2022-1462] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-1508] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-1516] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1651] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1652] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1671] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-1678] = "fixed-version: Fixed from version 4.20rc1"
-
-CVE_STATUS[CVE-2022-1679] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-1729] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2022-1734] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1786] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-1789] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2022-1836] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2022-1852] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1882] = "fixed-version: Fixed from version 5.19rc8"
-
-CVE_STATUS[CVE-2022-1943] = "fixed-version: Fixed from version 5.18rc7"
-
-CVE_STATUS[CVE-2022-1966] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1972] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1973] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1974] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1975] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2022-1976] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-1998] = "fixed-version: Fixed from version 5.17rc3"
-
-CVE_STATUS[CVE-2022-20008] = "fixed-version: Fixed from version 5.17rc5"
-
-CVE_STATUS[CVE-2022-20132] = "fixed-version: Fixed from version 5.16rc5"
-
-CVE_STATUS[CVE-2022-20141] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-20148] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2022-20153] = "fixed-version: Fixed from version 5.13rc1"
-
-CVE_STATUS[CVE-2022-20154] = "fixed-version: Fixed from version 5.16rc8"
-
-CVE_STATUS[CVE-2022-20158] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-20166] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2022-20368] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-20369] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-20409] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-20421] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-20422] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-20423] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-20424] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-20565] = "fixed-version: Fixed from version 5.9rc4"
-
-CVE_STATUS[CVE-2022-20566] = "fixed-version: Fixed from version 5.19"
-
-CVE_STATUS[CVE-2022-20567] = "fixed-version: Fixed from version 4.16rc5"
-
-CVE_STATUS[CVE-2022-20568] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-20572] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-2078] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-21123] = "fixed-version: Fixed from version 5.19rc3"
-
-CVE_STATUS[CVE-2022-21125] = "fixed-version: Fixed from version 5.19rc3"
-
-CVE_STATUS[CVE-2022-21166] = "fixed-version: Fixed from version 5.19rc3"
-
-CVE_STATUS[CVE-2022-21385] = "fixed-version: Fixed from version 4.20"
-
-CVE_STATUS[CVE-2022-21499] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-21505] = "fixed-version: Fixed from version 5.19rc8"
-
-CVE_STATUS[CVE-2022-2153] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-2196] = "fixed-version: Fixed from version 6.2rc1"
-
-# CVE-2022-2209 has no known resolution
-
-CVE_STATUS[CVE-2022-22942] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-23036] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23037] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23038] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23039] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23040] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23041] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-23042] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-2308] = "fixed-version: Fixed from version 6.0"
-
-CVE_STATUS[CVE-2022-2318] = "fixed-version: Fixed from version 5.19rc5"
-
-CVE_STATUS[CVE-2022-23222] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-2327] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-2380] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-23816] = "fixed-version: Fixed from version 5.19rc7"
-
-# CVE-2022-23825 has no known resolution
-
-CVE_STATUS[CVE-2022-23960] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-24122] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-24448] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-24958] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-24959] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-2503] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-25258] = "fixed-version: Fixed from version 5.17rc4"
-
-# CVE-2022-25265 has no known resolution
-
-CVE_STATUS[CVE-2022-25375] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-25636] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-2585] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-2586] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-2588] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-2590] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2022-2602] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-26365] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-26373] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-2639] = "fixed-version: Fixed from version 5.18rc4"
-
-CVE_STATUS[CVE-2022-26490] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-2663] = "fixed-version: Fixed from version 6.0rc5"
-
-# CVE-2022-26878 has no known resolution
-
-CVE_STATUS[CVE-2022-26966] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-27223] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-27666] = "fixed-version: Fixed from version 5.17rc8"
-
-CVE_STATUS[CVE-2022-27672] = "fixed-version: Fixed from version 6.2"
-
-CVE_STATUS[CVE-2022-2785] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-27950] = "fixed-version: Fixed from version 5.17rc5"
-
-CVE_STATUS[CVE-2022-28356] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-28388] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-28389] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-28390] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-2873] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-28796] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-28893] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2022-2905] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-29156] = "fixed-version: Fixed from version 5.17rc6"
-
-CVE_STATUS[CVE-2022-2938] = "fixed-version: Fixed from version 5.17rc2"
-
-CVE_STATUS[CVE-2022-29581] = "fixed-version: Fixed from version 5.18rc4"
-
-CVE_STATUS[CVE-2022-29582] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2022-2959] = "fixed-version: Fixed from version 5.19rc1"
-
-# CVE-2022-2961 has no known resolution
-
-CVE_STATUS[CVE-2022-2964] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-2977] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-2978] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-29900] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-29901] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-2991] = "fixed-version: Fixed from version 5.15rc1"
-
-CVE_STATUS[CVE-2022-29968] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2022-3028] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2022-30594] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3061] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2022-3077] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3078] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3103] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2022-3104] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3105] = "fixed-version: Fixed from version 5.16"
-
-CVE_STATUS[CVE-2022-3106] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2022-3107] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-3108] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-3110] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3111] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3112] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3113] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-3114] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3115] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3169] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3170] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-3176] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2022-3202] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-32250] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-32296] = "fixed-version: Fixed from version 5.18rc6"
-
-# CVE-2022-3238 has no known resolution
-
-CVE_STATUS[CVE-2022-3239] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-32981] = "fixed-version: Fixed from version 5.19rc2"
-
-CVE_STATUS[CVE-2022-3303] = "fixed-version: Fixed from version 6.0rc5"
-
-CVE_STATUS[CVE-2022-3344] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2022-33740] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33741] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33742] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33743] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33744] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-33981] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2022-3424] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-3435] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-34494] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-34495] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-34918] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-3521] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3522] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3523] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3524] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3526] = "fixed-version: Fixed from version 5.18rc3"
-
-CVE_STATUS[CVE-2022-3531] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-3532] = "fixed-version: Fixed from version 6.2rc1"
-
-# CVE-2022-3533 has no known resolution
-
-CVE_STATUS[CVE-2022-3534] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-3535] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3541] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3542] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3543] = "fixed-version: Fixed from version 6.1rc1"
-
-# CVE-2022-3544 has no known resolution
-
-CVE_STATUS[CVE-2022-3545] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3564] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-3565] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3566] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3567] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3577] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3586] = "fixed-version: Fixed from version 6.0rc5"
-
-CVE_STATUS[CVE-2022-3594] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3595] = "fixed-version: Fixed from version 6.1rc1"
-
-# CVE-2022-3606 has no known resolution
-
-CVE_STATUS[CVE-2022-36123] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-3619] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-3621] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3623] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3624] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3625] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3628] = "fixed-version: Fixed from version 6.1rc5"
-
-CVE_STATUS[CVE-2022-36280] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-3629] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3630] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3633] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3635] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-3636] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-3640] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-36402] = "fixed-version: Fixed from version 6.5"
-
-# CVE-2022-3642 has no known resolution
-
-CVE_STATUS[CVE-2022-3643] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-3646] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-3649] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-36879] = "fixed-version: Fixed from version 5.19rc8"
-
-CVE_STATUS[CVE-2022-36946] = "fixed-version: Fixed from version 5.19"
-
-CVE_STATUS[CVE-2022-3707] = "fixed-version: Fixed from version 6.2rc3"
-
-# CVE-2022-38096 has no known resolution
-
-CVE_STATUS[CVE-2022-38457] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2022-3903] = "fixed-version: Fixed from version 6.1rc2"
-
-CVE_STATUS[CVE-2022-3910] = "fixed-version: Fixed from version 6.0rc6"
-
-CVE_STATUS[CVE-2022-39188] = "fixed-version: Fixed from version 5.19rc8"
-
-CVE_STATUS[CVE-2022-39189] = "fixed-version: Fixed from version 5.19rc2"
-
-CVE_STATUS[CVE-2022-39190] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2022-3977] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-39842] = "fixed-version: Fixed from version 5.19rc4"
-
-CVE_STATUS[CVE-2022-40133] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2022-40307] = "fixed-version: Fixed from version 6.0rc5"
-
-CVE_STATUS[CVE-2022-40476] = "fixed-version: Fixed from version 5.19rc4"
-
-CVE_STATUS[CVE-2022-40768] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-4095] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-40982] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2022-41218] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-41222] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2022-4127] = "fixed-version: Fixed from version 5.19rc6"
-
-CVE_STATUS[CVE-2022-4128] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-4129] = "fixed-version: Fixed from version 6.1rc6"
-
-CVE_STATUS[CVE-2022-4139] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-41674] = "fixed-version: Fixed from version 6.1rc1"
-
-# CVE-2022-41848 has no known resolution
-
-CVE_STATUS[CVE-2022-41849] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-41850] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-41858] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2022-42328] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-42329] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-42432] = "fixed-version: Fixed from version 6.0rc7"
-
-CVE_STATUS[CVE-2022-4269] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2022-42703] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-42719] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-42720] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-42721] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-42722] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-42895] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-42896] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2022-43750] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-4378] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-4379] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-4382] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2022-43945] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2022-44032] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2022-44033] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2022-44034] = "fixed-version: Fixed from version 6.4rc1"
-
-# CVE-2022-4543 has no known resolution
-
-CVE_STATUS[CVE-2022-45869] = "fixed-version: Fixed from version 6.1rc7"
-
-# CVE-2022-45884 has no known resolution
-
-# CVE-2022-45885 has no known resolution
-
-CVE_STATUS[CVE-2022-45886] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2022-45887] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2022-45888] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-45919] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2022-45934] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2022-4662] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2022-4696] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2022-4744] = "fixed-version: Fixed from version 5.16rc7"
-
-CVE_STATUS[CVE-2022-47518] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-47519] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-47520] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-47521] = "fixed-version: Fixed from version 6.1rc8"
-
-CVE_STATUS[CVE-2022-47929] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2022-47938] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47939] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47940] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2022-47941] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47942] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47943] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2022-47946] = "fixed-version: Fixed from version 5.12rc2"
-
-CVE_STATUS[CVE-2022-4842] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-48423] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-48424] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-48425] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2022-48502] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2022-48619] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2022-48626] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2022-48627] = "fixed-version: Fixed from version 5.19rc7"
-
-CVE_STATUS[CVE-2022-48628] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2022-48629] = "fixed-version: Fixed from version 5.17"
-
-CVE_STATUS[CVE-2022-48630] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2023-0030] = "fixed-version: Fixed from version 5.0rc1"
-
-CVE_STATUS[CVE-2023-0045] = "fixed-version: Fixed from version 6.2rc3"
-
-CVE_STATUS[CVE-2023-0047] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2023-0122] = "fixed-version: Fixed from version 6.0rc4"
-
-CVE_STATUS[CVE-2023-0160] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-0179] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-0210] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2023-0240] = "fixed-version: Fixed from version 5.10rc1"
-
-CVE_STATUS[CVE-2023-0266] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2023-0386] = "fixed-version: Fixed from version 6.2rc6"
-
-CVE_STATUS[CVE-2023-0394] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2023-0458] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-0459] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-0461] = "fixed-version: Fixed from version 6.2rc3"
-
-CVE_STATUS[CVE-2023-0468] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-0469] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-0590] = "fixed-version: Fixed from version 6.1rc2"
-
-CVE_STATUS[CVE-2023-0597] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-0615] = "fixed-version: Fixed from version 6.1rc3"
-
-CVE_STATUS[CVE-2023-1032] = "fixed-version: Fixed from version 6.3rc2"
-
-CVE_STATUS[CVE-2023-1073] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-1074] = "fixed-version: Fixed from version 6.2rc6"
-
-CVE_STATUS[CVE-2023-1075] = "fixed-version: Fixed from version 6.2rc7"
-
-CVE_STATUS[CVE-2023-1076] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1077] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1078] = "fixed-version: Fixed from version 6.2rc8"
-
-CVE_STATUS[CVE-2023-1079] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1095] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-1118] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1192] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-1193] = "fixed-version: Fixed from version 6.3rc6"
-
-CVE_STATUS[CVE-2023-1194] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2023-1195] = "fixed-version: Fixed from version 6.1rc3"
-
-CVE_STATUS[CVE-2023-1206] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-1249] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2023-1252] = "fixed-version: Fixed from version 5.16rc1"
-
-CVE_STATUS[CVE-2023-1281] = "fixed-version: Fixed from version 6.2"
-
-CVE_STATUS[CVE-2023-1295] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2023-1380] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-1382] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-1390] = "fixed-version: Fixed from version 5.11rc4"
-
-# CVE-2023-1476 has no known resolution
-
-CVE_STATUS[CVE-2023-1513] = "fixed-version: Fixed from version 6.2"
-
-CVE_STATUS[CVE-2023-1582] = "fixed-version: Fixed from version 5.17rc4"
-
-CVE_STATUS[CVE-2023-1583] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-1611] = "fixed-version: Fixed from version 6.3rc5"
-
-CVE_STATUS[CVE-2023-1637] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2023-1652] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-1670] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-1829] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-1838] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2023-1855] = "fixed-version: Fixed from version 6.3rc3"
-
-CVE_STATUS[CVE-2023-1859] = "fixed-version: Fixed from version 6.3rc7"
-
-CVE_STATUS[CVE-2023-1872] = "fixed-version: Fixed from version 5.18rc2"
-
-CVE_STATUS[CVE-2023-1989] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-1990] = "fixed-version: Fixed from version 6.3rc3"
-
-CVE_STATUS[CVE-2023-1998] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-2002] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-2006] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-2007] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-2008] = "fixed-version: Fixed from version 5.19rc4"
-
-CVE_STATUS[CVE-2023-2019] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-20569] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-20588] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-20593] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-20928] = "fixed-version: Fixed from version 6.0rc1"
-
-# CVE-2023-20937 has no known resolution
-
-CVE_STATUS[CVE-2023-20938] = "fixed-version: Fixed from version 5.18rc5"
-
-# CVE-2023-20941 has no known resolution
-
-CVE_STATUS[CVE-2023-21102] = "fixed-version: Fixed from version 6.2rc4"
-
-CVE_STATUS[CVE-2023-21106] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-2124] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-21255] = "fixed-version: Fixed from version 6.4rc4"
-
-CVE_STATUS[CVE-2023-21264] = "fixed-version: Fixed from version 6.4rc5"
-
-# CVE-2023-21400 has no known resolution
-
-CVE_STATUS[CVE-2023-2156] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-2162] = "fixed-version: Fixed from version 6.2rc6"
-
-CVE_STATUS[CVE-2023-2163] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-2166] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2023-2176] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-2177] = "fixed-version: Fixed from version 5.19"
-
-CVE_STATUS[CVE-2023-2194] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-2235] = "fixed-version: Fixed from version 6.3rc3"
-
-CVE_STATUS[CVE-2023-2236] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-2248] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-2269] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-22995] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-22996] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2023-22997] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-22998] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-22999] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-23000] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-23001] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-23002] = "fixed-version: Fixed from version 5.17rc1"
-
-CVE_STATUS[CVE-2023-23003] = "fixed-version: Fixed from version 5.16rc6"
-
-CVE_STATUS[CVE-2023-23004] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2023-23005] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-23006] = "fixed-version: Fixed from version 5.16rc8"
-
-# CVE-2023-23039 has no known resolution
-
-CVE_STATUS[CVE-2023-23454] = "fixed-version: Fixed from version 6.2rc3"
-
-CVE_STATUS[CVE-2023-23455] = "fixed-version: Fixed from version 6.2rc3"
-
-CVE_STATUS[CVE-2023-23559] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-23586] = "fixed-version: Fixed from version 5.12rc1"
-
-CVE_STATUS[CVE-2023-2430] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-2483] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-25012] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-2513] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-25775] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-2598] = "fixed-version: Fixed from version 6.4rc1"
-
-# CVE-2023-26242 has no known resolution
-
-# CVE-2023-2640 has no known resolution
-
-CVE_STATUS[CVE-2023-26544] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-26545] = "fixed-version: Fixed from version 6.2"
-
-CVE_STATUS[CVE-2023-26605] = "fixed-version: Fixed from version 6.1rc7"
-
-CVE_STATUS[CVE-2023-26606] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-26607] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2023-28327] = "fixed-version: Fixed from version 6.1"
-
-CVE_STATUS[CVE-2023-28328] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-28410] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2023-28464] = "fixed-version: Fixed from version 6.3rc7"
-
-CVE_STATUS[CVE-2023-28466] = "fixed-version: Fixed from version 6.3rc2"
-
-CVE_STATUS[CVE-2023-2860] = "fixed-version: Fixed from version 6.0rc5"
-
-CVE_STATUS[CVE-2023-28746] = "cpe-stable-backport: Backported in 6.6.22"
-
-CVE_STATUS[CVE-2023-28772] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2023-28866] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-2898] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-2985] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-3006] = "fixed-version: Fixed from version 6.1rc1"
-
-# Skipping CVE-2023-3022, no affected_versions
-
-CVE_STATUS[CVE-2023-30456] = "fixed-version: Fixed from version 6.3rc3"
-
-CVE_STATUS[CVE-2023-30772] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-3090] = "fixed-version: Fixed from version 6.4rc2"
-
-CVE_STATUS[CVE-2023-3106] = "fixed-version: Fixed from version 4.8rc7"
-
-# Skipping CVE-2023-3108, no affected_versions
-
-# CVE-2023-31081 has no known resolution
-
-# CVE-2023-31082 has no known resolution
-
-CVE_STATUS[CVE-2023-31083] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-31084] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2023-31085] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-3111] = "fixed-version: Fixed from version 6.0rc2"
-
-CVE_STATUS[CVE-2023-3117] = "fixed-version: Fixed from version 6.4rc7"
-
-CVE_STATUS[CVE-2023-31248] = "fixed-version: Fixed from version 6.5rc2"
-
-CVE_STATUS[CVE-2023-3141] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-31436] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-3159] = "fixed-version: Fixed from version 5.18rc6"
-
-CVE_STATUS[CVE-2023-3161] = "fixed-version: Fixed from version 6.2rc7"
-
-CVE_STATUS[CVE-2023-3212] = "fixed-version: Fixed from version 6.4rc2"
-
-CVE_STATUS[CVE-2023-3220] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-32233] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32247] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32248] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32250] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32252] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32254] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32257] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32258] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-32269] = "fixed-version: Fixed from version 6.2rc7"
-
-# CVE-2023-32629 has no known resolution
-
-CVE_STATUS[CVE-2023-3268] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-3269] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-3312] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-3317] = "fixed-version: Fixed from version 6.3rc6"
-
-CVE_STATUS[CVE-2023-33203] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-33250] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-33288] = "fixed-version: Fixed from version 6.3rc4"
-
-CVE_STATUS[CVE-2023-3338] = "fixed-version: Fixed from version 6.1rc1"
-
-CVE_STATUS[CVE-2023-3355] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-3357] = "fixed-version: Fixed from version 6.2rc1"
-
-CVE_STATUS[CVE-2023-3358] = "fixed-version: Fixed from version 6.2rc5"
-
-CVE_STATUS[CVE-2023-3359] = "fixed-version: Fixed from version 6.2rc7"
-
-CVE_STATUS[CVE-2023-3389] = "fixed-version: Fixed from version 6.0rc1"
-
-CVE_STATUS[CVE-2023-3390] = "fixed-version: Fixed from version 6.4rc7"
-
-CVE_STATUS[CVE-2023-33951] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-33952] = "fixed-version: Fixed from version 6.4rc1"
-
-# CVE-2023-3397 has no known resolution
-
-CVE_STATUS[CVE-2023-34255] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-34256] = "fixed-version: Fixed from version 6.4rc2"
-
-CVE_STATUS[CVE-2023-34319] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-34324] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-3439] = "fixed-version: Fixed from version 5.18rc5"
-
-CVE_STATUS[CVE-2023-35001] = "fixed-version: Fixed from version 6.5rc2"
-
-CVE_STATUS[CVE-2023-3567] = "fixed-version: Fixed from version 6.2rc7"
-
-# CVE-2023-35693 has no known resolution
-
-CVE_STATUS[CVE-2023-35788] = "fixed-version: Fixed from version 6.4rc5"
-
-CVE_STATUS[CVE-2023-35823] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-35824] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-35826] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-35827] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-35828] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-35829] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-3609] = "fixed-version: Fixed from version 6.4rc7"
-
-CVE_STATUS[CVE-2023-3610] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-3611] = "fixed-version: Fixed from version 6.5rc2"
-
-# CVE-2023-3640 has no known resolution
-
-CVE_STATUS[CVE-2023-37453] = "fixed-version: Fixed from version 6.6rc1"
-
-# CVE-2023-37454 has no known resolution
-
-CVE_STATUS[CVE-2023-3772] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-3773] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-3776] = "fixed-version: Fixed from version 6.5rc2"
-
-CVE_STATUS[CVE-2023-3777] = "fixed-version: Fixed from version 6.5rc3"
-
-CVE_STATUS[CVE-2023-3812] = "fixed-version: Fixed from version 6.1rc4"
-
-CVE_STATUS[CVE-2023-38409] = "fixed-version: Fixed from version 6.3rc7"
-
-CVE_STATUS[CVE-2023-38426] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2023-38427] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2023-38428] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2023-38429] = "fixed-version: Fixed from version 6.4rc3"
-
-CVE_STATUS[CVE-2023-38430] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2023-38431] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2023-38432] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-3863] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-3865] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-3866] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-3867] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-39189] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-39191] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-39192] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-39193] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-39194] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-39197] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-39198] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-4004] = "fixed-version: Fixed from version 6.5rc3"
-
-# CVE-2023-4010 has no known resolution
-
-CVE_STATUS[CVE-2023-4015] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-40283] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-40791] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-4128] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4132] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-4133] = "fixed-version: Fixed from version 6.3"
-
-CVE_STATUS[CVE-2023-4134] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-4147] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-4155] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-4194] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4206] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4207] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4208] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-4244] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-4273] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-42752] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-42753] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-42754] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-42755] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-42756] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-4385] = "fixed-version: Fixed from version 5.19rc1"
-
-CVE_STATUS[CVE-2023-4387] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2023-4389] = "fixed-version: Fixed from version 5.18rc3"
-
-CVE_STATUS[CVE-2023-4394] = "fixed-version: Fixed from version 6.0rc3"
-
-CVE_STATUS[CVE-2023-44466] = "fixed-version: Fixed from version 6.5rc2"
-
-CVE_STATUS[CVE-2023-4459] = "fixed-version: Fixed from version 5.18"
-
-CVE_STATUS[CVE-2023-4563] = "fixed-version: Fixed from version 6.5rc6"
-
-CVE_STATUS[CVE-2023-4569] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-45862] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-45863] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-45871] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-45898] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-4610] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-4611] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-4622] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-4623] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-46343] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-46813] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-46838] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-46862] = "fixed-version: Fixed from version 6.6"
-
-CVE_STATUS[CVE-2023-47233] = "cpe-stable-backport: Backported in 6.6.24"
-
-CVE_STATUS[CVE-2023-4732] = "fixed-version: Fixed from version 5.14rc1"
-
-CVE_STATUS[CVE-2023-4881] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-4921] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-50431] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-5090] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-51042] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2023-51043] = "fixed-version: Fixed from version 6.5rc3"
-
-CVE_STATUS[CVE-2023-5158] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-51779] = "cpe-stable-backport: Backported in 6.6.9"
-
-CVE_STATUS[CVE-2023-5178] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-51780] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2023-51781] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2023-51782] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2023-5197] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52340] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2023-52429] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2023-52433] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52434] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2023-52435] = "cpe-stable-backport: Backported in 6.6.11"
-
-CVE_STATUS[CVE-2023-52436] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-52438] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-52439] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-52440] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52441] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-52442] = "fixed-version: Fixed from version 6.5rc4"
-
-CVE_STATUS[CVE-2023-52443] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52444] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52445] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52446] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52447] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52448] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52449] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52450] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52451] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52452] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52453] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52454] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52455] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52456] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52457] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52458] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52459] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52460] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2023-52461] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2023-52462] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52463] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52464] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52465] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52467] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52468] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52469] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52470] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52471] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2023-52472] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52473] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52474] = "fixed-version: Fixed from version 6.4rc1"
-
-CVE_STATUS[CVE-2023-52475] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52476] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52477] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52478] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52479] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52480] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52481] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52482] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52483] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52484] = "fixed-version: Fixed from version 6.6rc5"
-
-# CVE-2023-52485 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52486] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52487] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52488] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52489] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52490] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52491] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52492] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52493] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52494] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52495] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52497] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52498] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52499] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52500] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-52501] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-52502] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52503] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52504] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52505] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52506] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52507] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52508] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-52509] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52510] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52511] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52512] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-52513] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52515] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52516] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52517] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52518] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52519] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52520] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52522] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52523] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52524] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52525] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52526] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52527] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52528] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52529] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52530] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52531] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52532] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52559] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2023-52560] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52561] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52562] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52563] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52564] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52565] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52566] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52567] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52568] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52569] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-52570] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52571] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-52572] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52573] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52574] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52575] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52576] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52577] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52578] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52580] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52581] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52582] = "fixed-version: Fixed from version 6.6rc3"
-
-CVE_STATUS[CVE-2023-52583] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52584] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2023-52585 needs backporting (fixed from 6.8rc1)
-
-# CVE-2023-52586 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52587] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52588] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52589] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2023-52590 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52591] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52593] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52594] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52595] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52596] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52597] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52598] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52599] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52600] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52601] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52602] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52603] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52604] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52606] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52607] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52608] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52609] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52610] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52611] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52612] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52613] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-52614] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52615] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52616] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52617] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52618] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52619] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52620] = "fixed-version: Fixed from version 6.4"
-
-CVE_STATUS[CVE-2023-52621] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52622] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52623] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2023-52624 needs backporting (fixed from 6.8rc1)
-
-# CVE-2023-52625 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52626] = "fixed-version: only affects 6.7rc2 onwards"
-
-CVE_STATUS[CVE-2023-52627] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2023-52628] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52629] = "fixed-version: Fixed from version 6.6rc1"
-
-CVE_STATUS[CVE-2023-52630] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2023-52631] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2023-52632] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52633] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2023-52634 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2023-52635] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2023-52636] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2023-52637] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2023-52638] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2023-52639] = "cpe-stable-backport: Backported in 6.6.22"
-
-CVE_STATUS[CVE-2023-52640] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2023-52641] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2023-5345] = "fixed-version: Fixed from version 6.6rc4"
-
-CVE_STATUS[CVE-2023-5633] = "fixed-version: Fixed from version 6.6rc6"
-
-CVE_STATUS[CVE-2023-5717] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-5972] = "fixed-version: Fixed from version 6.6rc7"
-
-CVE_STATUS[CVE-2023-6039] = "fixed-version: Fixed from version 6.5rc5"
-
-CVE_STATUS[CVE-2023-6040] = "fixed-version: Fixed from version 5.18rc1"
-
-CVE_STATUS[CVE-2023-6111] = "cpe-stable-backport: Backported in 6.6.3"
-
-CVE_STATUS[CVE-2023-6121] = "cpe-stable-backport: Backported in 6.6.4"
-
-CVE_STATUS[CVE-2023-6176] = "fixed-version: Fixed from version 6.6rc2"
-
-CVE_STATUS[CVE-2023-6200] = "cpe-stable-backport: Backported in 6.6.9"
-
-# CVE-2023-6238 has no known resolution
-
-# CVE-2023-6240 has no known resolution
-
-CVE_STATUS[CVE-2023-6270] = "cpe-stable-backport: Backported in 6.6.23"
-
-CVE_STATUS[CVE-2023-6356] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-6531] = "cpe-stable-backport: Backported in 6.6.7"
-
-# CVE-2023-6535 has no known resolution
-
-CVE_STATUS[CVE-2023-6536] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2023-6546] = "fixed-version: Fixed from version 6.5rc7"
-
-CVE_STATUS[CVE-2023-6560] = "cpe-stable-backport: Backported in 6.6.5"
-
-CVE_STATUS[CVE-2023-6606] = "cpe-stable-backport: Backported in 6.6.9"
-
-CVE_STATUS[CVE-2023-6610] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-6622] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2023-6679] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2023-6817] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2023-6915] = "cpe-stable-backport: Backported in 6.6.13"
-
-CVE_STATUS[CVE-2023-6931] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2023-6932] = "cpe-stable-backport: Backported in 6.6.5"
-
-CVE_STATUS[CVE-2023-7042] = "cpe-stable-backport: Backported in 6.6.23"
-
-CVE_STATUS[CVE-2023-7192] = "fixed-version: Fixed from version 6.3rc1"
-
-CVE_STATUS[CVE-2024-0193] = "cpe-stable-backport: Backported in 6.6.10"
-
-CVE_STATUS[CVE-2024-0340] = "fixed-version: Fixed from version 6.4rc6"
-
-CVE_STATUS[CVE-2024-0443] = "fixed-version: Fixed from version 6.4rc7"
-
-CVE_STATUS[CVE-2024-0562] = "fixed-version: Fixed from version 6.0rc3"
-
-# CVE-2024-0564 has no known resolution
-
-CVE_STATUS[CVE-2024-0565] = "cpe-stable-backport: Backported in 6.6.8"
-
-CVE_STATUS[CVE-2024-0582] = "cpe-stable-backport: Backported in 6.6.5"
-
-CVE_STATUS[CVE-2024-0584] = "cpe-stable-backport: Backported in 6.6.5"
-
-CVE_STATUS[CVE-2024-0607] = "cpe-stable-backport: Backported in 6.6.3"
-
-CVE_STATUS[CVE-2024-0639] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2024-0641] = "fixed-version: Fixed from version 6.6rc5"
-
-CVE_STATUS[CVE-2024-0646] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2024-0775] = "fixed-version: Fixed from version 6.4rc2"
-
-CVE_STATUS[CVE-2024-0841] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-1085] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-1086] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-1151] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-1312] = "fixed-version: Fixed from version 6.5rc4"
-
-# CVE-2024-21803 has no known resolution
-
-# CVE-2024-2193 has no known resolution
-
-CVE_STATUS[CVE-2024-22099] = "cpe-stable-backport: Backported in 6.6.23"
-
-# CVE-2024-22386 has no known resolution
-
-CVE_STATUS[CVE-2024-22705] = "cpe-stable-backport: Backported in 6.6.10"
-
-CVE_STATUS[CVE-2024-23196] = "fixed-version: Fixed from version 6.5rc1"
-
-CVE_STATUS[CVE-2024-23307] = "cpe-stable-backport: Backported in 6.6.24"
-
-# CVE-2024-23848 has no known resolution
-
-CVE_STATUS[CVE-2024-23849] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-23850] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-23851] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-24855] = "fixed-version: Fixed from version 6.5rc2"
-
-# CVE-2024-24857 has no known resolution
-
-# CVE-2024-24858 has no known resolution
-
-# CVE-2024-24859 has no known resolution
-
-CVE_STATUS[CVE-2024-24860] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-24861] = "cpe-stable-backport: Backported in 6.6.24"
-
-# CVE-2024-24864 has no known resolution
-
-# CVE-2024-25739 has no known resolution
-
-# CVE-2024-25740 has no known resolution
-
-# CVE-2024-25741 has no known resolution
-
-CVE_STATUS[CVE-2024-25744] = "cpe-stable-backport: Backported in 6.6.7"
-
-CVE_STATUS[CVE-2024-26581] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26582] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26583] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26584] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26585] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26586] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26587] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26588] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26589] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26590] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26591] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26592] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26593] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26594] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26595] = "cpe-stable-backport: Backported in 6.6.14"
-
-# CVE-2024-26596 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2024-26597] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26598] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26599] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26600] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26601] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26602] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26603] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26604] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26605] = "fixed-version: only affects 6.7 onwards"
-
-CVE_STATUS[CVE-2024-26606] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26607] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26608] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26610] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26611] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26612] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26614] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26615] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26616] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26617] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26618] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26619] = "fixed-version: only affects 6.7rc5 onwards"
-
-CVE_STATUS[CVE-2024-26620] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26621] = "fixed-version: only affects 6.7 onwards"
-
-CVE_STATUS[CVE-2024-26622] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26623] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26625] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26626] = "fixed-version: only affects 6.8rc1 onwards"
-
-CVE_STATUS[CVE-2024-26627] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26629] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26630] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26631] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26632] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26633] = "cpe-stable-backport: Backported in 6.6.14"
-
-CVE_STATUS[CVE-2024-26634] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26635] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26636] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26637] = "fixed-version: only affects 6.7 onwards"
-
-CVE_STATUS[CVE-2024-26638] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26639] = "fixed-version: only affects 6.8rc1 onwards"
-
-CVE_STATUS[CVE-2024-26640] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26641] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26642] = "cpe-stable-backport: Backported in 6.6.24"
-
-CVE_STATUS[CVE-2024-26643] = "cpe-stable-backport: Backported in 6.6.24"
-
-CVE_STATUS[CVE-2024-26644] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26645] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26646] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26647] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26648] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26649] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26650] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26651] = "cpe-stable-backport: Backported in 6.6.23"
-
-CVE_STATUS[CVE-2024-26652] = "cpe-stable-backport: Backported in 6.6.22"
-
-CVE_STATUS[CVE-2024-26653] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26654] = "cpe-stable-backport: Backported in 6.6.24"
-
-# CVE-2024-26655 needs backporting (fixed from 6.9rc2)
-
-CVE_STATUS[CVE-2024-26656] = "cpe-stable-backport: Backported in 6.6.24"
-
-CVE_STATUS[CVE-2024-26657] = "fixed-version: only affects 6.7rc1 onwards"
-
-# CVE-2024-26658 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2024-26659] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26660] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26661] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26662] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26663] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26664] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26665] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26666] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26667] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26668] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26669] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26670] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26671] = "cpe-stable-backport: Backported in 6.6.16"
-
-# CVE-2024-26672 needs backporting (fixed from 6.8rc1)
-
-CVE_STATUS[CVE-2024-26673] = "cpe-stable-backport: Backported in 6.6.16"
-
-CVE_STATUS[CVE-2024-26674] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26675] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26676] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26677] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26678] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26679] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26680] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26681] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26682] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26683] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26684] = "cpe-stable-backport: Backported in 6.6.17"
-
-CVE_STATUS[CVE-2024-26685] = "cpe-stable-backport: Backported in 6.6.18"
-
-# CVE-2024-26686 needs backporting (fixed from 6.8rc4)
-
-CVE_STATUS[CVE-2024-26687] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26688] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26689] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26690] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26691] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26692] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26693] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26694] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26695] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26696] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26697] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26698] = "cpe-stable-backport: Backported in 6.6.18"
-
-# CVE-2024-26699 needs backporting (fixed from 6.8rc5)
-
-CVE_STATUS[CVE-2024-26700] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26702] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26703] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26704] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26705] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26706] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26707] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26708] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26709] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26710] = "fixed-version: only affects 6.8rc1 onwards"
-
-CVE_STATUS[CVE-2024-26711] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26712] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26713] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26714] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26715] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26716] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26717] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26718] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26719] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26720] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26721] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26722] = "fixed-version: only affects 6.7rc5 onwards"
-
-CVE_STATUS[CVE-2024-26723] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26724] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26725] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26726] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26727] = "cpe-stable-backport: Backported in 6.6.18"
-
-CVE_STATUS[CVE-2024-26728] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26729] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26730] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26731] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26732] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26733] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26734] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26735] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26736] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26737] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26738] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26739] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26740] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26741] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26742] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26743] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26744] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26745] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26746] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26747] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26748] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26749] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26750] = "fixed-version: only affects 6.8rc5 onwards"
-
-CVE_STATUS[CVE-2024-26751] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26752] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26753] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26754] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26755] = "fixed-version: only affects 6.7rc1 onwards"
-
-# CVE-2024-26756 needs backporting (fixed from 6.8rc6)
-
-# CVE-2024-26757 needs backporting (fixed from 6.8rc6)
-
-# CVE-2024-26758 needs backporting (fixed from 6.8rc6)
-
-CVE_STATUS[CVE-2024-26759] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26760] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26761] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26762] = "fixed-version: only affects 6.7rc1 onwards"
-
-CVE_STATUS[CVE-2024-26763] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26764] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26765] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26766] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26767] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26768] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26769] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26770] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26771] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26772] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26773] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26774] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26775] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26776] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26777] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26778] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26779] = "cpe-stable-backport: Backported in 6.6.19"
-
-CVE_STATUS[CVE-2024-26780] = "fixed-version: only affects 6.8rc4 onwards"
-
-CVE_STATUS[CVE-2024-26781] = "fixed-version: only affects 6.8rc6 onwards"
-
-CVE_STATUS[CVE-2024-26782] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26783] = "cpe-stable-backport: Backported in 6.6.22"
-
-# CVE-2024-26784 needs backporting (fixed from 6.8rc7)
-
-# CVE-2024-26785 needs backporting (fixed from 6.8rc7)
-
-CVE_STATUS[CVE-2024-26786] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26787] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26788] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26789] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26790] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26791] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26792] = "fixed-version: only affects 6.8rc4 onwards"
-
-CVE_STATUS[CVE-2024-26793] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26794] = "fixed-version: only affects 6.8rc6 onwards"
-
-CVE_STATUS[CVE-2024-26795] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26796] = "cpe-stable-backport: Backported in 6.6.21"
-
-# CVE-2024-26797 needs backporting (fixed from 6.8rc7)
-
-CVE_STATUS[CVE-2024-26798] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26799] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26800] = "fixed-version: only affects 6.8rc5 onwards"
-
-CVE_STATUS[CVE-2024-26801] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26802] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26803] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26804] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26805] = "cpe-stable-backport: Backported in 6.6.21"
-
-# CVE-2024-26806 needs backporting (fixed from 6.8rc7)
-
-CVE_STATUS[CVE-2024-26807] = "cpe-stable-backport: Backported in 6.6.21"
-
-CVE_STATUS[CVE-2024-26808] = "cpe-stable-backport: Backported in 6.6.15"
-
-CVE_STATUS[CVE-2024-26809] = "cpe-stable-backport: Backported in 6.6.23"
-
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 3/5] linux-yocto/6.12: update to v6.12.12
  2025-02-09 23:56 [PATCH 0/5] kernel-yocto: consolidated pull request bruce.ashfield
  2025-02-09 23:56 ` [PATCH 1/5] kernel: drop 6.6 reference kernels bruce.ashfield
  2025-02-09 23:56 ` [PATCH 2/5] kernel: remove unused 6.10 CVE exclusion file bruce.ashfield
@ 2025-02-09 23:56 ` bruce.ashfield
  2025-02-09 23:56 ` [PATCH 4/5] poky-alt: switch preferred kernel to 6.12 bruce.ashfield
  2025-02-09 23:56 ` [PATCH 5/5] yocto-bsp: drop linux-yocto 6.6 bbappend bruce.ashfield
  4 siblings, 0 replies; 18+ messages in thread
From: bruce.ashfield @ 2025-02-09 23:56 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

Updating linux-yocto/6.12 to the latest korg -stable release that comprises
the following commits:

    d914acc16b59 Linux 6.12.12
    01a7e3a43ee2 drm/v3d: Assign job pointer to NULL before signaling the fence
    efd96fbe23fa io_uring/rsrc: require cloned buffers to share accounting contexts
    5d114fa2b650 Input: xpad - add support for wooting two he (arm)
    41359d0d2e1b Input: xpad - add support for Nacon Evol-X Xbox One Controller
    ccc95d7e2765 Input: xpad - improve name of 8BitDo controller 2dc8:3106
    27ae0bdcb073 Input: xpad - add QH Electronics VID/PID
    a183a11cd688 Input: xpad - add unofficial Xbox 360 wireless receiver clone
    fae6f9589de3 Input: atkbd - map F23 key to support default copilot shortcut
    5c92458f72e3 Input: xpad - add support for Nacon Pro Compact
    5f5e6cbc4f5e HID: wacom: Initialize brightness of LED trigger
    5e1bde45daba wifi: rtl8xxxu: add more missing rtl8192cu USB IDs
    fad7b5641068 ALSA: usb-audio: Add delay quirk for USB Audio Device
    bb50dc2aa49d Revert "usb: gadget: u_serial: Disable ep before setting port to null to fix the crash caused by port being null"
    f371471708c7 USB: serial: quatech2: fix null-ptr-deref in qt2_process_read_urb()
    01d1ebdab9cc scsi: storvsc: Ratelimit warning logs to prevent VM denial of service
    a20fcaa230f7 vfio/platform: check the bounds of read/write syscalls
    780ab8329672 cachestat: fix page cache statistics permission checking
    276df5deb88c Revert "HID: multitouch: Add support for lenovo Y9000P Touchpad"
    997f6ec4208b net: sched: fix ets qdisc OOB Indexing
    efe8db3ecaa4 smb: client: handle lack of EA support in smb2_query_path_info()
    639b40424d17 libfs: Use d_children list to iterate simple_offset directories
    e73e46c96b9b libfs: Replace simple_offset end-of-directory detection
    9e9e710f68ba Revert "libfs: fix infinite directory reads for offset dir"
    bfb98a55cf5e Revert "libfs: Add simple_offset_empty()"
    1c3cf02db810 libfs: Return ENOSPC when the directory offset range is exhausted
    4516febe3253 gfs2: Truncate address space when flipping GFS2_DIF_JDATA flag
    556ee8e94410 mm: zswap: move allocations during CPU init outside the lock
    8d29ff5d5030 mm: zswap: properly synchronize freeing resources during CPU hotunplug
    f5712784c988 ASoC: samsung: Add missing depends on I2C
    d15dfc4e57cf hwmon: (drivetemp) Set scsi command timeout to 10s
    418bd70d1aca irqchip/sunxi-nmi: Add missing SKIP_WAKE flag
    0485a718f3df drm/connector: hdmi: Validate supported_formats matches ycbcr_420_allowed
    d756b869bf47 ALSA: hda/realtek: Fix volume adjustment issue on Lenovo ThinkBook 16P Gen5
    52502780b235 of/unittest: Add test that of_address_to_resource() fails on non-translatable address
    c9d6afb4f9c3 drm/amd/display: Initialize denominator defaults to 1
    4b46fc30b37e drm/amd/display: Use HW lock mgr for PSR1
    a743dc255b9f scsi: iscsi: Fix redundant response for ISCSI_UEVENT_GET_HOST_STATS request
    91e698058e91 ASoC: cs42l43: Add codec force suspend/resume ops
    81aa72e17cca seccomp: Stub for !CONFIG_SECCOMP
    678c6e80babb ASoC: samsung: Add missing selects for MFD_WM8994
    5da8a2c5f369 ASoC: codecs: es8316: Fix HW rate calculation for 48Mhz MCLK
    153ac259c27f ASoC: wm8994: Add depends on MFD core
    807165b1ec1c tools/power/x86/intel-speed-select: Prefix header search path with sysroot
    e97df805b938 drm/tilcdc: Set preferred depth
    7160a4379dcc arch/arm64/configs: remove CONFIG_SM_DISPCC_8650
    6d8ac5ebe6e8 aufs6: core
    587abc1b64c4 aufs6: standalone
    1af41d30ef42 aufs6: mmap
    6ee2464d2e9d aufs6: base
    103b676505f7 aufs6: kbuild
    67281562943f qemux86: add configuration symbol to select values
    73f315ca0823 sched/isolation: really align nohz_full with rcu_nocbs
    1e4e7f8ab622 clear_warn_once: add a clear_warn_once= boot parameter
    918e7a825e8b clear_warn_once: bind a timer to written reset value
    f533f87c3758 clear_warn_once: expand debugfs to include read support
    f149ca27cba9 tools: Remove some options from CLANG_CROSS_FLAGS
    e633abe9c44e libbpf: Fix build warning on ref_ctr_off
    ec0916a4cfc1 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel.
    03721ceb5626 perf: x86-32: explicitly include <errno.h>
    4c36c5295bb0 perf: mips64: Convert __u64 to unsigned long long
    b0200449610d perf: fix bench numa compilation
    aff0940b2212 perf: add SLANG_INC for slang.h
    ef912018d28c perf: add sgidefs.h to for mips builds
    d8860f858b87 perf: change --root to --prefix for python install
    dc38a0eee6e5 perf: add 'libperl not found' warning
    6ed51f8786da perf: force include of <stdbool.h>
    c538d4c4ac65 fat: Replace prandom_u32() with get_random_u32()
    63d94846f0c5 fat: don't use obsolete random32 call in namei_vfat
    7816667451ef FAT: Added FAT_NO_83NAME
    f81dbd60f0d5 FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option
    771cdefba44b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option
    a24784fd8f88 yaffs2: update to v6.12 folio changes
    d0a48fd46db8 yaffs2: adapt to v6.10 i_time changes
    d097e4d4115a yaffs: fix mtime/itime field access
    4411e0d49fe3 yaffs2: update VFS ctime operations to 6.6+
    1b6619086e8b yaffs2: v6.5 fixups
    25b261ee3c54 yaffs2: Fix miscalculation of devname buffer length
    5c07936a5d1c yaffs2: convert user_namespace to mnt_idmap
    55986a1284b3 yaffs2: replace bdevname call with sprintf
    6f5508f8db8f yaffs2: convert read_page -> readfolio
    fd179a5df5d5 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL
    c9a620dacdd1 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name
    78588208ed17 yaffs2: v5.12+ build fixups (not runtime tested)
    8d2dddba272c yaffs: include blkdev.h
    8c1ca9ef9712 yaffs: Fix build failure by handling inode i_version with proper atomic API
    27005cbac2ed yaffs2: v5.6 build fixups
    668211c9f9b7 yaffs2: fix memory leak when /proc/yaffs is read
    285f911dcc1c yaffs: add strict check when call yaffs_internal_read_super
    ffc2ed489ccf yaffs: repair yaffs_get_mtd_device
    6dce4b70a5e3 yaffs: Fix build failure by handling inode i_version with proper atomic API
    19f283abc5d1 yaffs2: fix memory leak in mount/umount
    04e84672b571 yaffs: Avoid setting any ACL releated xattr
    4f221d6a32e2 Yaffs:check oob size before auto selecting Yaffs1
    81f36004e56b fs: yaffs2: replace CURRENT_TIME by other appropriate apis
    26d7a3dd0054 yaffs2: adjust to proper location of MS_RDONLY
    a7016eac4540 yaffs2: import git revision b4ce1bb (jan, 2020)
    feb240bbb91e initramfs: allow an optional wrapper script around initramfs generation
    874746eaa341 drivers: gpu: drm: msm: registers: improve reproducibility
    1d42508faee8 tools: use basename to identify file in gen-mach-types
    4b055eca593d iwlwifi: select MAC80211_LEDS conditionally
    97e20e275ac0 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119)
    6dec58319165 defconfigs: drop obselete options
    a416ccb5b6c9 linux-yocto: Handle /bin/awk issues
    7efe8a1e5158 uvesafb: provide option to specify timeout for task completion
    78d10ae07eca uvesafb: print error message when task timeout occurs
    80473b7eb8ca compiler.h: Undef before redefining __attribute_const__
    ddeff2f1a9a7 vmware: include jiffies.h
    3dcdda8912b4 Resolve jiffies wrapping about arp
    3b1507db6735 nfs: Allow default io size to be configured.
    c2fedad05f77 check console device file on fs when booting
    208d6fbada3f mount_root: clarify error messages for when no rootfs found
    dbe9454c8ea0 mconf: fix output of cflags and libraries
    7c7b224f5cce menuconfig,mconf-cfg: Allow specification of ncurses location
    b6c189c81397 modpost: mask trivial warnings
    a5cc21325ba9 kbuild: exclude meta directory from distclean processing
    361ec143c23f powerpc: serialize image targets
    605e6ccb304c arm: serialize build targets
    e94b04fcb7d2 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition
    44cc7f69a0a0 cpu/amd: inhibit SMP check for qemux86
    a08cb65331e6 x86_64_defconfig: Fix warnings
    8ad332ef777b mips: make current_cpu_data preempt safe
    754f05ddce3f mips: vdso: fix 'jalr $t9' crash in vdso code
    325ff78ff44d mips: Kconfig: add QEMUMIPS64 option
    99ae0eadcf11 4kc cache tlb hazard: tlbp cache coherency
    c6894c66a534 malta uhci quirks: make allowance for slow 4k(e)c
    8b52c01f3294 arm64: defconfig: remove CONFIG_IPQ_APSS_5018
    16c7629f035e drm/fb-helper: move zeroing code to drm_fb_helper_fill_var
    6b60c874cbb0 arm64: defconfig: cleanup config options
    8e44673ecd89 vexpress: Pass LOADADDR to Makefile
    f34e6805aad5 arm: ARM EABI socketcall
    94dec9b88de4 ARM: LPAE: Invalidate the TLB for module addresses during translation fault

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 .../linux/linux-yocto-rt_6.12.bb              |  6 ++--
 .../linux/linux-yocto-tiny_6.12.bb            |  6 ++--
 meta/recipes-kernel/linux/linux-yocto_6.12.bb | 28 +++++++++----------
 3 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_6.12.bb b/meta/recipes-kernel/linux/linux-yocto-rt_6.12.bb
index ea669781b4..a3499a5118 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_6.12.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_6.12.bb
@@ -14,13 +14,13 @@ python () {
         raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it")
 }
 
-SRCREV_machine ?= "b92676dff0434653b4f321a626b894be5e4908d0"
-SRCREV_meta ?= "cbe89aee4d05e11b15a928dfbc216fbdbdf062d2"
+SRCREV_machine ?= "7db548fdce28b2d08c92e2c95ae59d9631df9240"
+SRCREV_meta ?= "75501dd73b672b229f8b619b5993cc7eaf09ce69"
 
 SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \
            git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.12;destsuffix=${KMETA};protocol=https"
 
-LINUX_VERSION ?= "6.12.11"
+LINUX_VERSION ?= "6.12.12"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_6.12.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_6.12.bb
index fba11bdbae..8625338b4a 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_6.12.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_6.12.bb
@@ -8,7 +8,7 @@ require recipes-kernel/linux/linux-yocto.inc
 # CVE exclusions
 include recipes-kernel/linux/cve-exclusion_6.12.inc
 
-LINUX_VERSION ?= "6.12.11"
+LINUX_VERSION ?= "6.12.12"
 LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
 
 DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
@@ -17,8 +17,8 @@ DEPENDS += "openssl-native util-linux-native"
 KMETA = "kernel-meta"
 KCONF_BSP_AUDIT_LEVEL = "2"
 
-SRCREV_machine ?= "807165b1ec1c73b5c1c30e9dd376e9b568e354bd"
-SRCREV_meta ?= "cbe89aee4d05e11b15a928dfbc216fbdbdf062d2"
+SRCREV_machine ?= "c0783a952f13edb776d48fd922e9f32b72a38eb0"
+SRCREV_meta ?= "75501dd73b672b229f8b619b5993cc7eaf09ce69"
 
 PV = "${LINUX_VERSION}+git"
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_6.12.bb b/meta/recipes-kernel/linux/linux-yocto_6.12.bb
index 723ffa6ec2..022aa1fda2 100644
--- a/meta/recipes-kernel/linux/linux-yocto_6.12.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_6.12.bb
@@ -18,25 +18,25 @@ KBRANCH:qemux86.104 ?= "v6.12/standard/base"
 KBRANCH:qemuloongarch64  ?= "v6.12/standard/base"
 KBRANCH:qemumips64 ?= "v6.12/standard/mti-malta64"
 
-SRCREV_machine:qemuarm ?= "97de3b6e2772d8f694107c1ee3a89fba543f81e9"
-SRCREV_machine:qemuarm64 ?= "807165b1ec1c73b5c1c30e9dd376e9b568e354bd"
-SRCREV_machine:qemuloongarch64 ?= "807165b1ec1c73b5c1c30e9dd376e9b568e354bd"
-SRCREV_machine:qemumips ?= "4a649d3eec0ace22715f0b6a032cd5cd09c288f0"
-SRCREV_machine:qemuppc ?= "807165b1ec1c73b5c1c30e9dd376e9b568e354bd"
-SRCREV_machine:qemuriscv64 ?= "807165b1ec1c73b5c1c30e9dd376e9b568e354bd"
-SRCREV_machine:qemuriscv32 ?= "807165b1ec1c73b5c1c30e9dd376e9b568e354bd"
-SRCREV_machine:qemux86 ?= "807165b1ec1c73b5c1c30e9dd376e9b568e354bd"
-SRCREV_machine:qemux86-64 ?= "807165b1ec1c73b5c1c30e9dd376e9b568e354bd"
-SRCREV_machine:qemumips64 ?= "ca06e8a2e78be9c42c22cb6da65a852acb3c0049"
-SRCREV_machine ?= "807165b1ec1c73b5c1c30e9dd376e9b568e354bd"
-SRCREV_meta ?= "cbe89aee4d05e11b15a928dfbc216fbdbdf062d2"
+SRCREV_machine:qemuarm ?= "54de9d68cb5f13c7229c1a4a3d733042a450a2d5"
+SRCREV_machine:qemuarm64 ?= "c0783a952f13edb776d48fd922e9f32b72a38eb0"
+SRCREV_machine:qemuloongarch64 ?= "c0783a952f13edb776d48fd922e9f32b72a38eb0"
+SRCREV_machine:qemumips ?= "26293c8635512cec43c94c9b9c40efa39a021341"
+SRCREV_machine:qemuppc ?= "c0783a952f13edb776d48fd922e9f32b72a38eb0"
+SRCREV_machine:qemuriscv64 ?= "c0783a952f13edb776d48fd922e9f32b72a38eb0"
+SRCREV_machine:qemuriscv32 ?= "c0783a952f13edb776d48fd922e9f32b72a38eb0"
+SRCREV_machine:qemux86 ?= "c0783a952f13edb776d48fd922e9f32b72a38eb0"
+SRCREV_machine:qemux86-64 ?= "c0783a952f13edb776d48fd922e9f32b72a38eb0"
+SRCREV_machine:qemumips64 ?= "fbd5391a051877d18b4ec30d172bd2d4cb266276"
+SRCREV_machine ?= "c0783a952f13edb776d48fd922e9f32b72a38eb0"
+SRCREV_meta ?= "75501dd73b672b229f8b619b5993cc7eaf09ce69"
 
 # set your preferred provider of linux-yocto to 'linux-yocto-upstream', and you'll
 # get the <version>/base branch, which is pure upstream -stable, and the same
 # meta SRCREV as the linux-yocto-standard builds. Select your version using the
 # normal PREFERRED_VERSION settings.
 BBCLASSEXTEND = "devupstream:target"
-SRCREV_machine:class-devupstream ?= "62b2447ec6cf3f8ce4b768cacd7b787a04f54a14"
+SRCREV_machine:class-devupstream ?= "d914acc16b5910bf9b46e2e8b441569bfe180d1b"
 PN:class-devupstream = "linux-yocto-upstream"
 KBRANCH:class-devupstream = "v6.12/base"
 
@@ -44,7 +44,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRA
            git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.12;destsuffix=${KMETA};protocol=https"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
-LINUX_VERSION ?= "6.12.11"
+LINUX_VERSION ?= "6.12.12"
 
 PV = "${LINUX_VERSION}+git"
 
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 4/5] poky-alt: switch preferred kernel to 6.12
  2025-02-09 23:56 [PATCH 0/5] kernel-yocto: consolidated pull request bruce.ashfield
                   ` (2 preceding siblings ...)
  2025-02-09 23:56 ` [PATCH 3/5] linux-yocto/6.12: update to v6.12.12 bruce.ashfield
@ 2025-02-09 23:56 ` bruce.ashfield
  2025-02-10  0:03   ` Patchtest results for " patchtest
  2025-02-10  0:32   ` [OE-core] " Yoann Congal
  2025-02-09 23:56 ` [PATCH 5/5] yocto-bsp: drop linux-yocto 6.6 bbappend bruce.ashfield
  4 siblings, 2 replies; 18+ messages in thread
From: bruce.ashfield @ 2025-02-09 23:56 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

6.6 is being removed from the upcoming LTS release, so we
adjust the alt config to use the 6.12 reference.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 meta-poky/conf/distro/include/poky-distro-alt-test-config.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc b/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
index 3e10251e8b..a24d5e15ab 100644
--- a/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
+++ b/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
@@ -2,7 +2,7 @@
 DISTRO_FEATURES:append = " pam usrmerge"
 
 # Use our alternate kernel version
-PREFERRED_VERSION_linux-yocto = "6.6%"
+PREFERRED_VERSION_linux-yocto = "6.1%"
 
 # Ensure the kernel nfs server is enabled
 KERNEL_FEATURES:append:pn-linux-yocto = " features/nfsd/nfsd-enable.scc"
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 5/5] yocto-bsp: drop linux-yocto 6.6 bbappend
  2025-02-09 23:56 [PATCH 0/5] kernel-yocto: consolidated pull request bruce.ashfield
                   ` (3 preceding siblings ...)
  2025-02-09 23:56 ` [PATCH 4/5] poky-alt: switch preferred kernel to 6.12 bruce.ashfield
@ 2025-02-09 23:56 ` bruce.ashfield
  2025-02-10  0:03   ` Patchtest results for " patchtest
  4 siblings, 1 reply; 18+ messages in thread
From: bruce.ashfield @ 2025-02-09 23:56 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

From: Bruce Ashfield <bruce.ashfield@gmail.com>

6.6 has been dropped from OE core master in preparation for the
LTS release, so we drop our reference BSP bbappend as well.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
---
 .../linux/linux-yocto_6.6.bbappend            | 21 -------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 meta-yocto-bsp/recipes-kernel/linux/linux-yocto_6.6.bbappend

diff --git a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_6.6.bbappend b/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_6.6.bbappend
deleted file mode 100644
index 3f33ec991d..0000000000
--- a/meta-yocto-bsp/recipes-kernel/linux/linux-yocto_6.6.bbappend
+++ /dev/null
@@ -1,21 +0,0 @@
-COMPATIBLE_MACHINE:genericarm64 = "genericarm64"
-COMPATIBLE_MACHINE:genericx86 = "genericx86"
-COMPATIBLE_MACHINE:genericx86-64 = "genericx86-64"
-COMPATIBLE_MACHINE:beaglebone-yocto = "beaglebone-yocto"
-
-KBRANCH:genericx86  = "v6.6/standard/base"
-KBRANCH:genericx86-64  = "v6.6/standard/base"
-KBRANCH:beaglebone-yocto = "v6.6/standard/beaglebone"
-
-KMACHINE:genericarm64 ?= "genericarm64"
-KMACHINE:genericx86 ?= "common-pc"
-KMACHINE:genericx86-64 ?= "common-pc-64"
-KMACHINE:beaglebone-yocto ?= "beaglebone"
-
-SRCREV_machine:genericx86 ?= "06644f0d7193d7ec39d7fe41939a21953e7a0c65"
-SRCREV_machine:genericx86-64 ?= "06644f0d7193d7ec39d7fe41939a21953e7a0c65"
-SRCREV_machine:beaglebone-yocto ?= "06644f0d7193d7ec39d7fe41939a21953e7a0c65"
-
-LINUX_VERSION:genericx86 = "6.6.21"
-LINUX_VERSION:genericx86-64 = "6.6.21"
-LINUX_VERSION:beaglebone-yocto = "6.6.21"
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Patchtest results for [PATCH 4/5] poky-alt: switch preferred kernel to 6.12
  2025-02-09 23:56 ` [PATCH 4/5] poky-alt: switch preferred kernel to 6.12 bruce.ashfield
@ 2025-02-10  0:03   ` patchtest
  2025-02-10  0:32   ` [OE-core] " Yoann Congal
  1 sibling, 0 replies; 18+ messages in thread
From: patchtest @ 2025-02-10  0:03 UTC (permalink / raw)
  To: bruce.ashfield; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 3216 bytes --]

Thank you for your submission. Patchtest identified one
or more issues with the patch. Please see the log below for
more information:

---
Testing patch /home/patchtest/share/mboxes/4-5-poky-alt-switch-preferred-kernel-to-6.12.patch

FAIL: test target mailing list: Series sent to the wrong mailing list or some patches from the series correspond to different mailing lists (test_mbox.TestMbox.test_target_mailing_list)

PASS: test Signed-off-by presence (test_mbox.TestMbox.test_signed_off_by_presence)
PASS: test author valid (test_mbox.TestMbox.test_author_valid)
PASS: test commit message presence (test_mbox.TestMbox.test_commit_message_presence)
PASS: test commit message user tags (test_mbox.TestMbox.test_commit_message_user_tags)
PASS: test max line length (test_metadata.TestMetadata.test_max_line_length)
PASS: test mbox format (test_mbox.TestMbox.test_mbox_format)
PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade)
PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format)
PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length)

SKIP: pretest pylint: No python related patches, skipping test (test_python_pylint.PyLint.pretest_pylint)
SKIP: pretest src uri left files: No modified recipes, skipping pretest (test_metadata.TestMetadata.pretest_src_uri_left_files)
SKIP: test CVE check ignore: No modified recipes or older target branch, skipping test (test_metadata.TestMetadata.test_cve_check_ignore)
SKIP: test CVE tag format: No new CVE patches introduced (test_patch.TestPatch.test_cve_tag_format)
SKIP: test Signed-off-by presence: No new CVE patches introduced (test_patch.TestPatch.test_signed_off_by_presence)
SKIP: test Upstream-Status presence: No new CVE patches introduced (test_patch.TestPatch.test_upstream_status_presence_format)
SKIP: test bugzilla entry format: No bug ID found (test_mbox.TestMbox.test_bugzilla_entry_format)
SKIP: test lic files chksum modified not mentioned: No modified recipes, skipping test (test_metadata.TestMetadata.test_lic_files_chksum_modified_not_mentioned)
SKIP: test lic files chksum presence: No added recipes, skipping test (test_metadata.TestMetadata.test_lic_files_chksum_presence)
SKIP: test license presence: No added recipes, skipping test (test_metadata.TestMetadata.test_license_presence)
SKIP: test pylint: No python related patches, skipping test (test_python_pylint.PyLint.test_pylint)
SKIP: test series merge on head: Merge test is disabled for now (test_mbox.TestMbox.test_series_merge_on_head)
SKIP: test src uri left files: No modified recipes, skipping pretest (test_metadata.TestMetadata.test_src_uri_left_files)
SKIP: test summary presence: No added recipes, skipping test (test_metadata.TestMetadata.test_summary_presence)

---

Please address the issues identified and
submit a new revision of the patch, or alternatively, reply to this
email with an explanation of why the patch should be accepted. If you
believe these results are due to an error in patchtest, please submit a
bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category
under 'Yocto Project Subprojects'). For more information on specific
failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank
you!

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Patchtest results for [PATCH 5/5] yocto-bsp: drop linux-yocto 6.6 bbappend
  2025-02-09 23:56 ` [PATCH 5/5] yocto-bsp: drop linux-yocto 6.6 bbappend bruce.ashfield
@ 2025-02-10  0:03   ` patchtest
  0 siblings, 0 replies; 18+ messages in thread
From: patchtest @ 2025-02-10  0:03 UTC (permalink / raw)
  To: bruce.ashfield; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 3215 bytes --]

Thank you for your submission. Patchtest identified one
or more issues with the patch. Please see the log below for
more information:

---
Testing patch /home/patchtest/share/mboxes/5-5-yocto-bsp-drop-linux-yocto-6.6-bbappend.patch

FAIL: test target mailing list: Series sent to the wrong mailing list or some patches from the series correspond to different mailing lists (test_mbox.TestMbox.test_target_mailing_list)

PASS: test Signed-off-by presence (test_mbox.TestMbox.test_signed_off_by_presence)
PASS: test author valid (test_mbox.TestMbox.test_author_valid)
PASS: test commit message presence (test_mbox.TestMbox.test_commit_message_presence)
PASS: test commit message user tags (test_mbox.TestMbox.test_commit_message_user_tags)
PASS: test max line length (test_metadata.TestMetadata.test_max_line_length)
PASS: test mbox format (test_mbox.TestMbox.test_mbox_format)
PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade)
PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format)
PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length)

SKIP: pretest pylint: No python related patches, skipping test (test_python_pylint.PyLint.pretest_pylint)
SKIP: pretest src uri left files: No modified recipes, skipping pretest (test_metadata.TestMetadata.pretest_src_uri_left_files)
SKIP: test CVE check ignore: No modified recipes or older target branch, skipping test (test_metadata.TestMetadata.test_cve_check_ignore)
SKIP: test CVE tag format: No new CVE patches introduced (test_patch.TestPatch.test_cve_tag_format)
SKIP: test Signed-off-by presence: No new CVE patches introduced (test_patch.TestPatch.test_signed_off_by_presence)
SKIP: test Upstream-Status presence: No new CVE patches introduced (test_patch.TestPatch.test_upstream_status_presence_format)
SKIP: test bugzilla entry format: No bug ID found (test_mbox.TestMbox.test_bugzilla_entry_format)
SKIP: test lic files chksum modified not mentioned: No modified recipes, skipping test (test_metadata.TestMetadata.test_lic_files_chksum_modified_not_mentioned)
SKIP: test lic files chksum presence: No added recipes, skipping test (test_metadata.TestMetadata.test_lic_files_chksum_presence)
SKIP: test license presence: No added recipes, skipping test (test_metadata.TestMetadata.test_license_presence)
SKIP: test pylint: No python related patches, skipping test (test_python_pylint.PyLint.test_pylint)
SKIP: test series merge on head: Merge test is disabled for now (test_mbox.TestMbox.test_series_merge_on_head)
SKIP: test src uri left files: No modified recipes, skipping pretest (test_metadata.TestMetadata.test_src_uri_left_files)
SKIP: test summary presence: No added recipes, skipping test (test_metadata.TestMetadata.test_summary_presence)

---

Please address the issues identified and
submit a new revision of the patch, or alternatively, reply to this
email with an explanation of why the patch should be accepted. If you
believe these results are due to an error in patchtest, please submit a
bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category
under 'Yocto Project Subprojects'). For more information on specific
failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank
you!

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH 1/5] kernel: drop 6.6 reference kernels
  2025-02-09 23:56 ` [PATCH 1/5] kernel: drop 6.6 reference kernels bruce.ashfield
@ 2025-02-10  0:13   ` Bruce Ashfield
  0 siblings, 0 replies; 18+ messages in thread
From: Bruce Ashfield @ 2025-02-10  0:13 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 273438 bytes --]

Richard,

While doing my updates for the still maintained versions, my
memory was jogged that we did have two LTS kernels in
kirkstone (5.15 and 5.10). Equally we only had one version in
scarthgap, so I was going with our recent thought about unifying
on a single reference for the LTS releases.

If we want to do the same in Walnascar, then ignore my removal
patches. I know that there was some sort of issue with 6.6 and
generic arm64, so we'd have to solve that if we keep 6.6
around.

Bruce


On Sun, Feb 9, 2025 at 6:56 PM <bruce.ashfield@gmail.com> wrote:

> From: Bruce Ashfield <bruce.ashfield@gmail.com>
>
> Dropping the 6.6 reference kernel as the upcoming LTS will use
> 6.12 as the main reference with 6.13+ as the -dev kernel.
>
> 6.6 will not be supported upstream for the duration of the
> LTS release, so droping it now to avoid uncessary mid-release
> churn.
>
> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
> ---
>  .../linux/cve-exclusion_6.6.inc               | 6660 -----------------
>  .../linux/linux-yocto-rt_6.6.bb               |   48 -
>  .../linux/linux-yocto-tiny_6.6.bb             |   33 -
>  meta/recipes-kernel/linux/linux-yocto_6.6.bb  |   74 -
>  4 files changed, 6815 deletions(-)
>  delete mode 100644 meta/recipes-kernel/linux/cve-exclusion_6.6.inc
>  delete mode 100644 meta/recipes-kernel/linux/linux-yocto-rt_6.6.bb
>  delete mode 100644 meta/recipes-kernel/linux/linux-yocto-tiny_6.6.bb
>  delete mode 100644 meta/recipes-kernel/linux/linux-yocto_6.6.bb
>
> diff --git a/meta/recipes-kernel/linux/cve-exclusion_6.6.inc
> b/meta/recipes-kernel/linux/cve-exclusion_6.6.inc
> deleted file mode 100644
> index 32a0701edf..0000000000
> --- a/meta/recipes-kernel/linux/cve-exclusion_6.6.inc
> +++ /dev/null
> @@ -1,6660 +0,0 @@
> -
> -# Auto-generated CVE metadata, DO NOT EDIT BY HAND.
> -# Generated at 2024-06-06 20:41:33.044442+00:00 for version 6.6.32
> -
> -#python check_kernel_cve_status_version() {
> -#    this_version = "6.6.29"
> -#    kernel_version = d.getVar("LINUX_VERSION")
> -#    if kernel_version != this_version:
> -#        bb.warn("Kernel CVE status needs updating: generated for %s but
> kernel is %s" % (this_version, kernel_version))
> -#}
> -#do_cve_check[prefuncs] += "check_kernel_cve_status_version"
> -
> -CVE_STATUS[CVE-2003-1604] = "fixed-version: Fixed from version 2.6.12rc2"
> -
> -CVE_STATUS[CVE-2004-0230] = "fixed-version: Fixed from version 3.6rc1"
> -
> -# CVE-2005-3660 has no known resolution
> -
> -CVE_STATUS[CVE-2006-3635] = "fixed-version: Fixed from version 2.6.26rc5"
> -
> -CVE_STATUS[CVE-2006-5331] = "fixed-version: Fixed from version 2.6.19rc3"
> -
> -CVE_STATUS[CVE-2006-6128] = "fixed-version: Fixed from version 2.6.19rc2"
> -
> -# CVE-2007-3719 has no known resolution
> -
> -CVE_STATUS[CVE-2007-4774] = "fixed-version: Fixed from version 2.6.12rc2"
> -
> -CVE_STATUS[CVE-2007-6761] = "fixed-version: Fixed from version 2.6.24rc6"
> -
> -CVE_STATUS[CVE-2007-6762] = "fixed-version: Fixed from version 2.6.20rc5"
> -
> -# CVE-2008-2544 has no known resolution
> -
> -# CVE-2008-4609 has no known resolution
> -
> -CVE_STATUS[CVE-2008-7316] = "fixed-version: Fixed from version 2.6.25rc1"
> -
> -CVE_STATUS[CVE-2009-2692] = "fixed-version: Fixed from version 2.6.31rc6"
> -
> -CVE_STATUS[CVE-2010-0008] = "fixed-version: Fixed from version 2.6.23rc9"
> -
> -CVE_STATUS[CVE-2010-3432] = "fixed-version: Fixed from version 2.6.36rc5"
> -
> -# CVE-2010-4563 has no known resolution
> -
> -CVE_STATUS[CVE-2010-4648] = "fixed-version: Fixed from version 2.6.37rc6"
> -
> -CVE_STATUS[CVE-2010-5313] = "fixed-version: Fixed from version 2.6.38rc1"
> -
> -# CVE-2010-5321 has no known resolution
> -
> -CVE_STATUS[CVE-2010-5328] = "fixed-version: Fixed from version 2.6.35rc1"
> -
> -CVE_STATUS[CVE-2010-5329] = "fixed-version: Fixed from version 2.6.39rc1"
> -
> -CVE_STATUS[CVE-2010-5331] = "fixed-version: Fixed from version 2.6.34rc7"
> -
> -CVE_STATUS[CVE-2010-5332] = "fixed-version: Fixed from version 2.6.37rc1"
> -
> -CVE_STATUS[CVE-2011-4098] = "fixed-version: Fixed from version 3.2rc1"
> -
> -CVE_STATUS[CVE-2011-4131] = "fixed-version: Fixed from version 3.3rc1"
> -
> -CVE_STATUS[CVE-2011-4915] = "fixed-version: Fixed from version 3.2rc1"
> -
> -# CVE-2011-4916 has no known resolution
> -
> -# CVE-2011-4917 has no known resolution
> -
> -CVE_STATUS[CVE-2011-5321] = "fixed-version: Fixed from version 3.2rc1"
> -
> -CVE_STATUS[CVE-2011-5327] = "fixed-version: Fixed from version 3.1rc1"
> -
> -CVE_STATUS[CVE-2012-0957] = "fixed-version: Fixed from version 3.7rc2"
> -
> -CVE_STATUS[CVE-2012-2119] = "fixed-version: Fixed from version 3.5rc1"
> -
> -CVE_STATUS[CVE-2012-2136] = "fixed-version: Fixed from version 3.5rc1"
> -
> -CVE_STATUS[CVE-2012-2137] = "fixed-version: Fixed from version 3.5rc2"
> -
> -CVE_STATUS[CVE-2012-2313] = "fixed-version: Fixed from version 3.4rc6"
> -
> -CVE_STATUS[CVE-2012-2319] = "fixed-version: Fixed from version 3.4rc6"
> -
> -CVE_STATUS[CVE-2012-2372] = "fixed-version: Fixed from version 3.13rc4"
> -
> -CVE_STATUS[CVE-2012-2375] = "fixed-version: Fixed from version 3.4rc1"
> -
> -CVE_STATUS[CVE-2012-2390] = "fixed-version: Fixed from version 3.5rc1"
> -
> -CVE_STATUS[CVE-2012-2669] = "fixed-version: Fixed from version 3.5rc4"
> -
> -CVE_STATUS[CVE-2012-2744] = "fixed-version: Fixed from version 2.6.34rc1"
> -
> -CVE_STATUS[CVE-2012-2745] = "fixed-version: Fixed from version 3.4rc3"
> -
> -CVE_STATUS[CVE-2012-3364] = "fixed-version: Fixed from version 3.5rc6"
> -
> -CVE_STATUS[CVE-2012-3375] = "fixed-version: Fixed from version 3.4rc5"
> -
> -CVE_STATUS[CVE-2012-3400] = "fixed-version: Fixed from version 3.5rc5"
> -
> -CVE_STATUS[CVE-2012-3412] = "fixed-version: Fixed from version 3.6rc2"
> -
> -CVE_STATUS[CVE-2012-3430] = "fixed-version: Fixed from version 3.6rc1"
> -
> -CVE_STATUS[CVE-2012-3510] = "fixed-version: Fixed from version 2.6.19rc4"
> -
> -CVE_STATUS[CVE-2012-3511] = "fixed-version: Fixed from version 3.5rc6"
> -
> -CVE_STATUS[CVE-2012-3520] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2012-3552] = "fixed-version: Fixed from version 3.0rc1"
> -
> -# Skipping CVE-2012-4220, no affected_versions
> -
> -# Skipping CVE-2012-4221, no affected_versions
> -
> -# Skipping CVE-2012-4222, no affected_versions
> -
> -CVE_STATUS[CVE-2012-4398] = "fixed-version: Fixed from version 3.4rc1"
> -
> -CVE_STATUS[CVE-2012-4444] = "fixed-version: Fixed from version 2.6.36rc4"
> -
> -CVE_STATUS[CVE-2012-4461] = "fixed-version: Fixed from version 3.7rc6"
> -
> -CVE_STATUS[CVE-2012-4467] = "fixed-version: Fixed from version 3.6rc5"
> -
> -CVE_STATUS[CVE-2012-4508] = "fixed-version: Fixed from version 3.7rc3"
> -
> -CVE_STATUS[CVE-2012-4530] = "fixed-version: Fixed from version 3.8rc1"
> -
> -# CVE-2012-4542 has no known resolution
> -
> -CVE_STATUS[CVE-2012-4565] = "fixed-version: Fixed from version 3.7rc4"
> -
> -CVE_STATUS[CVE-2012-5374] = "fixed-version: Fixed from version 3.8rc1"
> -
> -CVE_STATUS[CVE-2012-5375] = "fixed-version: Fixed from version 3.8rc1"
> -
> -CVE_STATUS[CVE-2012-5517] = "fixed-version: Fixed from version 3.6rc1"
> -
> -CVE_STATUS[CVE-2012-6536] = "fixed-version: Fixed from version 3.6rc7"
> -
> -CVE_STATUS[CVE-2012-6537] = "fixed-version: Fixed from version 3.6rc7"
> -
> -CVE_STATUS[CVE-2012-6538] = "fixed-version: Fixed from version 3.6rc7"
> -
> -CVE_STATUS[CVE-2012-6539] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2012-6540] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2012-6541] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2012-6542] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2012-6543] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2012-6544] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2012-6545] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2012-6546] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2012-6547] = "fixed-version: Fixed from version 3.6rc1"
> -
> -CVE_STATUS[CVE-2012-6548] = "fixed-version: Fixed from version 3.6rc1"
> -
> -CVE_STATUS[CVE-2012-6549] = "fixed-version: Fixed from version 3.6rc1"
> -
> -CVE_STATUS[CVE-2012-6638] = "fixed-version: Fixed from version 3.3rc1"
> -
> -CVE_STATUS[CVE-2012-6647] = "fixed-version: Fixed from version 3.6rc2"
> -
> -CVE_STATUS[CVE-2012-6657] = "fixed-version: Fixed from version 3.6"
> -
> -CVE_STATUS[CVE-2012-6689] = "fixed-version: Fixed from version 3.6rc5"
> -
> -CVE_STATUS[CVE-2012-6701] = "fixed-version: Fixed from version 3.5rc1"
> -
> -CVE_STATUS[CVE-2012-6703] = "fixed-version: Fixed from version 3.7rc1"
> -
> -CVE_STATUS[CVE-2012-6704] = "fixed-version: Fixed from version 3.5rc1"
> -
> -CVE_STATUS[CVE-2012-6712] = "fixed-version: Fixed from version 3.4rc1"
> -
> -CVE_STATUS[CVE-2013-0160] = "fixed-version: Fixed from version 3.9rc1"
> -
> -CVE_STATUS[CVE-2013-0190] = "fixed-version: Fixed from version 3.8rc5"
> -
> -CVE_STATUS[CVE-2013-0216] = "fixed-version: Fixed from version 3.8rc7"
> -
> -CVE_STATUS[CVE-2013-0217] = "fixed-version: Fixed from version 3.8rc7"
> -
> -CVE_STATUS[CVE-2013-0228] = "fixed-version: Fixed from version 3.8"
> -
> -CVE_STATUS[CVE-2013-0231] = "fixed-version: Fixed from version 3.8rc7"
> -
> -CVE_STATUS[CVE-2013-0268] = "fixed-version: Fixed from version 3.8rc6"
> -
> -CVE_STATUS[CVE-2013-0290] = "fixed-version: Fixed from version 3.8"
> -
> -CVE_STATUS[CVE-2013-0309] = "fixed-version: Fixed from version 3.7rc1"
> -
> -CVE_STATUS[CVE-2013-0310] = "fixed-version: Fixed from version 3.5"
> -
> -CVE_STATUS[CVE-2013-0311] = "fixed-version: Fixed from version 3.7rc8"
> -
> -CVE_STATUS[CVE-2013-0313] = "fixed-version: Fixed from version 3.8rc5"
> -
> -CVE_STATUS[CVE-2013-0343] = "fixed-version: Fixed from version 3.11rc7"
> -
> -CVE_STATUS[CVE-2013-0349] = "fixed-version: Fixed from version 3.8rc6"
> -
> -CVE_STATUS[CVE-2013-0871] = "fixed-version: Fixed from version 3.8rc5"
> -
> -CVE_STATUS[CVE-2013-0913] = "fixed-version: Fixed from version 3.9rc4"
> -
> -CVE_STATUS[CVE-2013-0914] = "fixed-version: Fixed from version 3.9rc3"
> -
> -CVE_STATUS[CVE-2013-1059] = "fixed-version: Fixed from version 3.11rc1"
> -
> -CVE_STATUS[CVE-2013-1763] = "fixed-version: Fixed from version 3.9rc1"
> -
> -CVE_STATUS[CVE-2013-1767] = "fixed-version: Fixed from version 3.9rc1"
> -
> -CVE_STATUS[CVE-2013-1772] = "fixed-version: Fixed from version 3.5rc1"
> -
> -CVE_STATUS[CVE-2013-1773] = "fixed-version: Fixed from version 3.3rc1"
> -
> -CVE_STATUS[CVE-2013-1774] = "fixed-version: Fixed from version 3.8rc5"
> -
> -CVE_STATUS[CVE-2013-1792] = "fixed-version: Fixed from version 3.9rc3"
> -
> -CVE_STATUS[CVE-2013-1796] = "fixed-version: Fixed from version 3.9rc4"
> -
> -CVE_STATUS[CVE-2013-1797] = "fixed-version: Fixed from version 3.9rc4"
> -
> -CVE_STATUS[CVE-2013-1798] = "fixed-version: Fixed from version 3.9rc4"
> -
> -CVE_STATUS[CVE-2013-1819] = "fixed-version: Fixed from version 3.8rc6"
> -
> -CVE_STATUS[CVE-2013-1826] = "fixed-version: Fixed from version 3.6rc7"
> -
> -CVE_STATUS[CVE-2013-1827] = "fixed-version: Fixed from version 3.6rc3"
> -
> -CVE_STATUS[CVE-2013-1828] = "fixed-version: Fixed from version 3.9rc2"
> -
> -CVE_STATUS[CVE-2013-1848] = "fixed-version: Fixed from version 3.9rc3"
> -
> -CVE_STATUS[CVE-2013-1858] = "fixed-version: Fixed from version 3.9rc3"
> -
> -CVE_STATUS[CVE-2013-1860] = "fixed-version: Fixed from version 3.9rc3"
> -
> -CVE_STATUS[CVE-2013-1928] = "fixed-version: Fixed from version 3.7rc3"
> -
> -CVE_STATUS[CVE-2013-1929] = "fixed-version: Fixed from version 3.9rc6"
> -
> -# Skipping CVE-2013-1935, no affected_versions
> -
> -CVE_STATUS[CVE-2013-1943] = "fixed-version: Fixed from version 3.0rc1"
> -
> -CVE_STATUS[CVE-2013-1956] = "fixed-version: Fixed from version 3.9rc5"
> -
> -CVE_STATUS[CVE-2013-1957] = "fixed-version: Fixed from version 3.9rc5"
> -
> -CVE_STATUS[CVE-2013-1958] = "fixed-version: Fixed from version 3.9rc5"
> -
> -CVE_STATUS[CVE-2013-1959] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-1979] = "fixed-version: Fixed from version 3.9rc8"
> -
> -CVE_STATUS[CVE-2013-2015] = "fixed-version: Fixed from version 3.8rc2"
> -
> -CVE_STATUS[CVE-2013-2017] = "fixed-version: Fixed from version 2.6.34"
> -
> -CVE_STATUS[CVE-2013-2058] = "fixed-version: Fixed from version 3.8rc4"
> -
> -CVE_STATUS[CVE-2013-2094] = "fixed-version: Fixed from version 3.9rc8"
> -
> -CVE_STATUS[CVE-2013-2128] = "fixed-version: Fixed from version 2.6.34rc4"
> -
> -CVE_STATUS[CVE-2013-2140] = "fixed-version: Fixed from version 3.11rc3"
> -
> -CVE_STATUS[CVE-2013-2141] = "fixed-version: Fixed from version 3.9rc8"
> -
> -CVE_STATUS[CVE-2013-2146] = "fixed-version: Fixed from version 3.9rc8"
> -
> -CVE_STATUS[CVE-2013-2147] = "fixed-version: Fixed from version 3.12rc3"
> -
> -CVE_STATUS[CVE-2013-2148] = "fixed-version: Fixed from version 3.11rc1"
> -
> -CVE_STATUS[CVE-2013-2164] = "fixed-version: Fixed from version 3.11rc1"
> -
> -# Skipping CVE-2013-2188, no affected_versions
> -
> -CVE_STATUS[CVE-2013-2206] = "fixed-version: Fixed from version 3.9rc4"
> -
> -# Skipping CVE-2013-2224, no affected_versions
> -
> -CVE_STATUS[CVE-2013-2232] = "fixed-version: Fixed from version 3.10"
> -
> -CVE_STATUS[CVE-2013-2234] = "fixed-version: Fixed from version 3.10"
> -
> -CVE_STATUS[CVE-2013-2237] = "fixed-version: Fixed from version 3.9rc6"
> -
> -# Skipping CVE-2013-2239, no affected_versions
> -
> -CVE_STATUS[CVE-2013-2546] = "fixed-version: Fixed from version 3.9rc1"
> -
> -CVE_STATUS[CVE-2013-2547] = "fixed-version: Fixed from version 3.9rc1"
> -
> -CVE_STATUS[CVE-2013-2548] = "fixed-version: Fixed from version 3.9rc1"
> -
> -CVE_STATUS[CVE-2013-2596] = "fixed-version: Fixed from version 3.9rc8"
> -
> -CVE_STATUS[CVE-2013-2634] = "fixed-version: Fixed from version 3.9rc3"
> -
> -CVE_STATUS[CVE-2013-2635] = "fixed-version: Fixed from version 3.9rc3"
> -
> -CVE_STATUS[CVE-2013-2636] = "fixed-version: Fixed from version 3.9rc3"
> -
> -CVE_STATUS[CVE-2013-2850] = "fixed-version: Fixed from version 3.10rc4"
> -
> -CVE_STATUS[CVE-2013-2851] = "fixed-version: Fixed from version 3.11rc1"
> -
> -CVE_STATUS[CVE-2013-2852] = "fixed-version: Fixed from version 3.10rc6"
> -
> -CVE_STATUS[CVE-2013-2888] = "fixed-version: Fixed from version 3.12rc1"
> -
> -CVE_STATUS[CVE-2013-2889] = "fixed-version: Fixed from version 3.12rc2"
> -
> -CVE_STATUS[CVE-2013-2890] = "fixed-version: Fixed from version 3.12rc2"
> -
> -CVE_STATUS[CVE-2013-2891] = "fixed-version: Fixed from version 3.12rc2"
> -
> -CVE_STATUS[CVE-2013-2892] = "fixed-version: Fixed from version 3.12rc1"
> -
> -CVE_STATUS[CVE-2013-2893] = "fixed-version: Fixed from version 3.12rc2"
> -
> -CVE_STATUS[CVE-2013-2894] = "fixed-version: Fixed from version 3.12rc2"
> -
> -CVE_STATUS[CVE-2013-2895] = "fixed-version: Fixed from version 3.12rc2"
> -
> -CVE_STATUS[CVE-2013-2896] = "fixed-version: Fixed from version 3.12rc1"
> -
> -CVE_STATUS[CVE-2013-2897] = "fixed-version: Fixed from version 3.12rc2"
> -
> -CVE_STATUS[CVE-2013-2898] = "fixed-version: Fixed from version 3.12rc1"
> -
> -CVE_STATUS[CVE-2013-2899] = "fixed-version: Fixed from version 3.12rc1"
> -
> -CVE_STATUS[CVE-2013-2929] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-2930] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-3076] = "fixed-version: Fixed from version 3.9"
> -
> -CVE_STATUS[CVE-2013-3222] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3223] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3224] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3225] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3226] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3227] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3228] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3229] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3230] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3231] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3232] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3233] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3234] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3235] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3236] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3237] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3301] = "fixed-version: Fixed from version 3.9rc7"
> -
> -CVE_STATUS[CVE-2013-3302] = "fixed-version: Fixed from version 3.8rc3"
> -
> -CVE_STATUS[CVE-2013-4125] = "fixed-version: Fixed from version 3.11rc1"
> -
> -CVE_STATUS[CVE-2013-4127] = "fixed-version: Fixed from version 3.11rc1"
> -
> -CVE_STATUS[CVE-2013-4129] = "fixed-version: Fixed from version 3.11rc1"
> -
> -CVE_STATUS[CVE-2013-4162] = "fixed-version: Fixed from version 3.11rc1"
> -
> -CVE_STATUS[CVE-2013-4163] = "fixed-version: Fixed from version 3.11rc1"
> -
> -CVE_STATUS[CVE-2013-4205] = "fixed-version: Fixed from version 3.11rc5"
> -
> -CVE_STATUS[CVE-2013-4220] = "fixed-version: Fixed from version 3.10rc4"
> -
> -CVE_STATUS[CVE-2013-4247] = "fixed-version: Fixed from version 3.10rc5"
> -
> -CVE_STATUS[CVE-2013-4254] = "fixed-version: Fixed from version 3.11rc6"
> -
> -CVE_STATUS[CVE-2013-4270] = "fixed-version: Fixed from version 3.12rc4"
> -
> -CVE_STATUS[CVE-2013-4299] = "fixed-version: Fixed from version 3.12rc6"
> -
> -CVE_STATUS[CVE-2013-4300] = "fixed-version: Fixed from version 3.11"
> -
> -CVE_STATUS[CVE-2013-4312] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2013-4343] = "fixed-version: Fixed from version 3.12rc2"
> -
> -CVE_STATUS[CVE-2013-4345] = "fixed-version: Fixed from version 3.13rc2"
> -
> -CVE_STATUS[CVE-2013-4348] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-4350] = "fixed-version: Fixed from version 3.12rc2"
> -
> -CVE_STATUS[CVE-2013-4387] = "fixed-version: Fixed from version 3.12rc4"
> -
> -CVE_STATUS[CVE-2013-4470] = "fixed-version: Fixed from version 3.12rc7"
> -
> -CVE_STATUS[CVE-2013-4483] = "fixed-version: Fixed from version 3.10rc1"
> -
> -CVE_STATUS[CVE-2013-4511] = "fixed-version: Fixed from version 3.12"
> -
> -CVE_STATUS[CVE-2013-4512] = "fixed-version: Fixed from version 3.12"
> -
> -CVE_STATUS[CVE-2013-4513] = "fixed-version: Fixed from version 3.12"
> -
> -CVE_STATUS[CVE-2013-4514] = "fixed-version: Fixed from version 3.12"
> -
> -CVE_STATUS[CVE-2013-4515] = "fixed-version: Fixed from version 3.12"
> -
> -CVE_STATUS[CVE-2013-4516] = "fixed-version: Fixed from version 3.12"
> -
> -CVE_STATUS[CVE-2013-4563] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-4579] = "fixed-version: Fixed from version 3.13rc7"
> -
> -CVE_STATUS[CVE-2013-4587] = "fixed-version: Fixed from version 3.13rc4"
> -
> -CVE_STATUS[CVE-2013-4588] = "fixed-version: Fixed from version 2.6.33rc4"
> -
> -CVE_STATUS[CVE-2013-4591] = "fixed-version: Fixed from version 3.8rc1"
> -
> -CVE_STATUS[CVE-2013-4592] = "fixed-version: Fixed from version 3.7rc1"
> -
> -# Skipping CVE-2013-4737, no affected_versions
> -
> -# Skipping CVE-2013-4738, no affected_versions
> -
> -# Skipping CVE-2013-4739, no affected_versions
> -
> -CVE_STATUS[CVE-2013-5634] = "fixed-version: Fixed from version 3.10rc5"
> -
> -CVE_STATUS[CVE-2013-6282] = "fixed-version: Fixed from version 3.6rc6"
> -
> -CVE_STATUS[CVE-2013-6367] = "fixed-version: Fixed from version 3.13rc4"
> -
> -CVE_STATUS[CVE-2013-6368] = "fixed-version: Fixed from version 3.13rc4"
> -
> -CVE_STATUS[CVE-2013-6376] = "fixed-version: Fixed from version 3.13rc4"
> -
> -CVE_STATUS[CVE-2013-6378] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-6380] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-6381] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-6382] = "fixed-version: Fixed from version 3.13rc4"
> -
> -CVE_STATUS[CVE-2013-6383] = "fixed-version: Fixed from version 3.12"
> -
> -# Skipping CVE-2013-6392, no affected_versions
> -
> -CVE_STATUS[CVE-2013-6431] = "fixed-version: Fixed from version 3.12rc1"
> -
> -CVE_STATUS[CVE-2013-6432] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-6885] = "fixed-version: Fixed from version 3.14rc1"
> -
> -CVE_STATUS[CVE-2013-7026] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7027] = "fixed-version: Fixed from version 3.12rc7"
> -
> -CVE_STATUS[CVE-2013-7263] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7264] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7265] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7266] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7267] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7268] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7269] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7270] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7271] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7281] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7339] = "fixed-version: Fixed from version 3.13rc7"
> -
> -CVE_STATUS[CVE-2013-7348] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2013-7421] = "fixed-version: Fixed from version 3.19rc1"
> -
> -# CVE-2013-7445 has no known resolution
> -
> -CVE_STATUS[CVE-2013-7446] = "fixed-version: Fixed from version 4.4rc4"
> -
> -CVE_STATUS[CVE-2013-7470] = "fixed-version: Fixed from version 3.12rc7"
> -
> -CVE_STATUS[CVE-2014-0038] = "fixed-version: Fixed from version 3.14rc1"
> -
> -CVE_STATUS[CVE-2014-0049] = "fixed-version: Fixed from version 3.14rc5"
> -
> -CVE_STATUS[CVE-2014-0055] = "fixed-version: Fixed from version 3.14"
> -
> -CVE_STATUS[CVE-2014-0069] = "fixed-version: Fixed from version 3.14rc4"
> -
> -CVE_STATUS[CVE-2014-0077] = "fixed-version: Fixed from version 3.14"
> -
> -CVE_STATUS[CVE-2014-0100] = "fixed-version: Fixed from version 3.14rc7"
> -
> -CVE_STATUS[CVE-2014-0101] = "fixed-version: Fixed from version 3.14rc6"
> -
> -CVE_STATUS[CVE-2014-0102] = "fixed-version: Fixed from version 3.14rc6"
> -
> -CVE_STATUS[CVE-2014-0131] = "fixed-version: Fixed from version 3.14rc7"
> -
> -CVE_STATUS[CVE-2014-0155] = "fixed-version: Fixed from version 3.15rc2"
> -
> -CVE_STATUS[CVE-2014-0181] = "fixed-version: Fixed from version 3.15rc5"
> -
> -CVE_STATUS[CVE-2014-0196] = "fixed-version: Fixed from version 3.15rc5"
> -
> -CVE_STATUS[CVE-2014-0203] = "fixed-version: Fixed from version 2.6.33rc5"
> -
> -CVE_STATUS[CVE-2014-0205] = "fixed-version: Fixed from version 2.6.37rc1"
> -
> -CVE_STATUS[CVE-2014-0206] = "fixed-version: Fixed from version 3.16rc3"
> -
> -# Skipping CVE-2014-0972, no affected_versions
> -
> -CVE_STATUS[CVE-2014-1438] = "fixed-version: Fixed from version 3.13"
> -
> -CVE_STATUS[CVE-2014-1444] = "fixed-version: Fixed from version 3.12rc7"
> -
> -CVE_STATUS[CVE-2014-1445] = "fixed-version: Fixed from version 3.12rc7"
> -
> -CVE_STATUS[CVE-2014-1446] = "fixed-version: Fixed from version 3.13rc7"
> -
> -CVE_STATUS[CVE-2014-1690] = "fixed-version: Fixed from version 3.13rc8"
> -
> -CVE_STATUS[CVE-2014-1737] = "fixed-version: Fixed from version 3.15rc5"
> -
> -CVE_STATUS[CVE-2014-1738] = "fixed-version: Fixed from version 3.15rc5"
> -
> -CVE_STATUS[CVE-2014-1739] = "fixed-version: Fixed from version 3.15rc6"
> -
> -CVE_STATUS[CVE-2014-1874] = "fixed-version: Fixed from version 3.14rc2"
> -
> -CVE_STATUS[CVE-2014-2038] = "fixed-version: Fixed from version 3.14rc1"
> -
> -CVE_STATUS[CVE-2014-2039] = "fixed-version: Fixed from version 3.14rc3"
> -
> -CVE_STATUS[CVE-2014-2309] = "fixed-version: Fixed from version 3.14rc7"
> -
> -CVE_STATUS[CVE-2014-2523] = "fixed-version: Fixed from version 3.14rc1"
> -
> -CVE_STATUS[CVE-2014-2568] = "fixed-version: Fixed from version 3.14"
> -
> -CVE_STATUS[CVE-2014-2580] = "fixed-version: Fixed from version 3.15rc1"
> -
> -CVE_STATUS[CVE-2014-2672] = "fixed-version: Fixed from version 3.14rc6"
> -
> -CVE_STATUS[CVE-2014-2673] = "fixed-version: Fixed from version 3.14rc6"
> -
> -CVE_STATUS[CVE-2014-2678] = "fixed-version: Fixed from version 3.15rc1"
> -
> -CVE_STATUS[CVE-2014-2706] = "fixed-version: Fixed from version 3.14rc6"
> -
> -CVE_STATUS[CVE-2014-2739] = "fixed-version: Fixed from version 3.15rc1"
> -
> -CVE_STATUS[CVE-2014-2851] = "fixed-version: Fixed from version 3.15rc2"
> -
> -CVE_STATUS[CVE-2014-2889] = "fixed-version: Fixed from version 3.2rc7"
> -
> -CVE_STATUS[CVE-2014-3122] = "fixed-version: Fixed from version 3.15rc1"
> -
> -CVE_STATUS[CVE-2014-3144] = "fixed-version: Fixed from version 3.15rc2"
> -
> -CVE_STATUS[CVE-2014-3145] = "fixed-version: Fixed from version 3.15rc2"
> -
> -CVE_STATUS[CVE-2014-3153] = "fixed-version: Fixed from version 3.15"
> -
> -CVE_STATUS[CVE-2014-3180] = "fixed-version: Fixed from version 3.17rc4"
> -
> -CVE_STATUS[CVE-2014-3181] = "fixed-version: Fixed from version 3.17rc3"
> -
> -CVE_STATUS[CVE-2014-3182] = "fixed-version: Fixed from version 3.17rc2"
> -
> -CVE_STATUS[CVE-2014-3183] = "fixed-version: Fixed from version 3.17rc2"
> -
> -CVE_STATUS[CVE-2014-3184] = "fixed-version: Fixed from version 3.17rc2"
> -
> -CVE_STATUS[CVE-2014-3185] = "fixed-version: Fixed from version 3.17rc3"
> -
> -CVE_STATUS[CVE-2014-3186] = "fixed-version: Fixed from version 3.17rc3"
> -
> -# Skipping CVE-2014-3519, no affected_versions
> -
> -CVE_STATUS[CVE-2014-3534] = "fixed-version: Fixed from version 3.16rc7"
> -
> -CVE_STATUS[CVE-2014-3535] = "fixed-version: Fixed from version 2.6.36rc1"
> -
> -CVE_STATUS[CVE-2014-3601] = "fixed-version: Fixed from version 3.17rc2"
> -
> -CVE_STATUS[CVE-2014-3610] = "fixed-version: Fixed from version 3.18rc2"
> -
> -CVE_STATUS[CVE-2014-3611] = "fixed-version: Fixed from version 3.18rc2"
> -
> -CVE_STATUS[CVE-2014-3631] = "fixed-version: Fixed from version 3.17rc5"
> -
> -CVE_STATUS[CVE-2014-3645] = "fixed-version: Fixed from version 3.12rc1"
> -
> -CVE_STATUS[CVE-2014-3646] = "fixed-version: Fixed from version 3.18rc2"
> -
> -CVE_STATUS[CVE-2014-3647] = "fixed-version: Fixed from version 3.18rc2"
> -
> -CVE_STATUS[CVE-2014-3673] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-3687] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-3688] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-3690] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-3917] = "fixed-version: Fixed from version 3.16rc1"
> -
> -CVE_STATUS[CVE-2014-3940] = "fixed-version: Fixed from version 3.15"
> -
> -CVE_STATUS[CVE-2014-4014] = "fixed-version: Fixed from version 3.16rc1"
> -
> -CVE_STATUS[CVE-2014-4027] = "fixed-version: Fixed from version 3.14rc1"
> -
> -CVE_STATUS[CVE-2014-4157] = "fixed-version: Fixed from version 3.15rc1"
> -
> -CVE_STATUS[CVE-2014-4171] = "fixed-version: Fixed from version 3.16rc3"
> -
> -# Skipping CVE-2014-4322, no affected_versions
> -
> -# Skipping CVE-2014-4323, no affected_versions
> -
> -CVE_STATUS[CVE-2014-4508] = "fixed-version: Fixed from version 3.16rc3"
> -
> -CVE_STATUS[CVE-2014-4608] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-4611] = "fixed-version: Fixed from version 3.16rc3"
> -
> -CVE_STATUS[CVE-2014-4652] = "fixed-version: Fixed from version 3.16rc2"
> -
> -CVE_STATUS[CVE-2014-4653] = "fixed-version: Fixed from version 3.16rc2"
> -
> -CVE_STATUS[CVE-2014-4654] = "fixed-version: Fixed from version 3.16rc2"
> -
> -CVE_STATUS[CVE-2014-4655] = "fixed-version: Fixed from version 3.16rc2"
> -
> -CVE_STATUS[CVE-2014-4656] = "fixed-version: Fixed from version 3.16rc2"
> -
> -CVE_STATUS[CVE-2014-4667] = "fixed-version: Fixed from version 3.16rc1"
> -
> -CVE_STATUS[CVE-2014-4699] = "fixed-version: Fixed from version 3.16rc4"
> -
> -CVE_STATUS[CVE-2014-4943] = "fixed-version: Fixed from version 3.16rc6"
> -
> -CVE_STATUS[CVE-2014-5045] = "fixed-version: Fixed from version 3.16rc7"
> -
> -CVE_STATUS[CVE-2014-5077] = "fixed-version: Fixed from version 3.16"
> -
> -CVE_STATUS[CVE-2014-5206] = "fixed-version: Fixed from version 3.17rc1"
> -
> -CVE_STATUS[CVE-2014-5207] = "fixed-version: Fixed from version 3.17rc1"
> -
> -# Skipping CVE-2014-5332, no affected_versions
> -
> -CVE_STATUS[CVE-2014-5471] = "fixed-version: Fixed from version 3.17rc2"
> -
> -CVE_STATUS[CVE-2014-5472] = "fixed-version: Fixed from version 3.17rc2"
> -
> -CVE_STATUS[CVE-2014-6410] = "fixed-version: Fixed from version 3.17rc5"
> -
> -CVE_STATUS[CVE-2014-6416] = "fixed-version: Fixed from version 3.17rc5"
> -
> -CVE_STATUS[CVE-2014-6417] = "fixed-version: Fixed from version 3.17rc5"
> -
> -CVE_STATUS[CVE-2014-6418] = "fixed-version: Fixed from version 3.17rc5"
> -
> -CVE_STATUS[CVE-2014-7145] = "fixed-version: Fixed from version 3.17rc2"
> -
> -# Skipping CVE-2014-7207, no affected_versions
> -
> -CVE_STATUS[CVE-2014-7283] = "fixed-version: Fixed from version 3.15rc1"
> -
> -CVE_STATUS[CVE-2014-7284] = "fixed-version: Fixed from version 3.15rc7"
> -
> -CVE_STATUS[CVE-2014-7822] = "fixed-version: Fixed from version 3.16rc1"
> -
> -CVE_STATUS[CVE-2014-7825] = "fixed-version: Fixed from version 3.18rc3"
> -
> -CVE_STATUS[CVE-2014-7826] = "fixed-version: Fixed from version 3.18rc3"
> -
> -CVE_STATUS[CVE-2014-7841] = "fixed-version: Fixed from version 3.18rc5"
> -
> -CVE_STATUS[CVE-2014-7842] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-7843] = "fixed-version: Fixed from version 3.18rc5"
> -
> -CVE_STATUS[CVE-2014-7970] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-7975] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-8086] = "fixed-version: Fixed from version 3.18rc3"
> -
> -CVE_STATUS[CVE-2014-8133] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2014-8134] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2014-8159] = "fixed-version: Fixed from version 4.0rc7"
> -
> -CVE_STATUS[CVE-2014-8160] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-8171] = "fixed-version: Fixed from version 3.12rc1"
> -
> -CVE_STATUS[CVE-2014-8172] = "fixed-version: Fixed from version 3.13rc1"
> -
> -CVE_STATUS[CVE-2014-8173] = "fixed-version: Fixed from version 3.13rc5"
> -
> -# Skipping CVE-2014-8181, no affected_versions
> -
> -CVE_STATUS[CVE-2014-8369] = "fixed-version: Fixed from version 3.18rc2"
> -
> -CVE_STATUS[CVE-2014-8480] = "fixed-version: Fixed from version 3.18rc2"
> -
> -CVE_STATUS[CVE-2014-8481] = "fixed-version: Fixed from version 3.18rc2"
> -
> -CVE_STATUS[CVE-2014-8559] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2014-8709] = "fixed-version: Fixed from version 3.14rc3"
> -
> -CVE_STATUS[CVE-2014-8884] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2014-8989] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2014-9090] = "fixed-version: Fixed from version 3.18rc6"
> -
> -CVE_STATUS[CVE-2014-9322] = "fixed-version: Fixed from version 3.18rc6"
> -
> -CVE_STATUS[CVE-2014-9419] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2014-9420] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2014-9428] = "fixed-version: Fixed from version 3.19rc3"
> -
> -CVE_STATUS[CVE-2014-9529] = "fixed-version: Fixed from version 3.19rc4"
> -
> -CVE_STATUS[CVE-2014-9584] = "fixed-version: Fixed from version 3.19rc3"
> -
> -CVE_STATUS[CVE-2014-9585] = "fixed-version: Fixed from version 3.19rc4"
> -
> -CVE_STATUS[CVE-2014-9644] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2014-9683] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2014-9710] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2014-9715] = "fixed-version: Fixed from version 3.15rc1"
> -
> -CVE_STATUS[CVE-2014-9717] = "fixed-version: Fixed from version 4.1rc1"
> -
> -CVE_STATUS[CVE-2014-9728] = "fixed-version: Fixed from version 3.19rc3"
> -
> -CVE_STATUS[CVE-2014-9729] = "fixed-version: Fixed from version 3.19rc3"
> -
> -CVE_STATUS[CVE-2014-9730] = "fixed-version: Fixed from version 3.19rc3"
> -
> -CVE_STATUS[CVE-2014-9731] = "fixed-version: Fixed from version 3.19rc3"
> -
> -# Skipping CVE-2014-9777, no affected_versions
> -
> -# Skipping CVE-2014-9778, no affected_versions
> -
> -# Skipping CVE-2014-9779, no affected_versions
> -
> -# Skipping CVE-2014-9780, no affected_versions
> -
> -# Skipping CVE-2014-9781, no affected_versions
> -
> -# Skipping CVE-2014-9782, no affected_versions
> -
> -# Skipping CVE-2014-9783, no affected_versions
> -
> -# Skipping CVE-2014-9784, no affected_versions
> -
> -# Skipping CVE-2014-9785, no affected_versions
> -
> -# Skipping CVE-2014-9786, no affected_versions
> -
> -# Skipping CVE-2014-9787, no affected_versions
> -
> -# Skipping CVE-2014-9788, no affected_versions
> -
> -# Skipping CVE-2014-9789, no affected_versions
> -
> -CVE_STATUS[CVE-2014-9803] = "fixed-version: Fixed from version 3.16rc1"
> -
> -# Skipping CVE-2014-9863, no affected_versions
> -
> -# Skipping CVE-2014-9864, no affected_versions
> -
> -# Skipping CVE-2014-9865, no affected_versions
> -
> -# Skipping CVE-2014-9866, no affected_versions
> -
> -# Skipping CVE-2014-9867, no affected_versions
> -
> -# Skipping CVE-2014-9868, no affected_versions
> -
> -# Skipping CVE-2014-9869, no affected_versions
> -
> -CVE_STATUS[CVE-2014-9870] = "fixed-version: Fixed from version 3.11rc1"
> -
> -# Skipping CVE-2014-9871, no affected_versions
> -
> -# Skipping CVE-2014-9872, no affected_versions
> -
> -# Skipping CVE-2014-9873, no affected_versions
> -
> -# Skipping CVE-2014-9874, no affected_versions
> -
> -# Skipping CVE-2014-9875, no affected_versions
> -
> -# Skipping CVE-2014-9876, no affected_versions
> -
> -# Skipping CVE-2014-9877, no affected_versions
> -
> -# Skipping CVE-2014-9878, no affected_versions
> -
> -# Skipping CVE-2014-9879, no affected_versions
> -
> -# Skipping CVE-2014-9880, no affected_versions
> -
> -# Skipping CVE-2014-9881, no affected_versions
> -
> -# Skipping CVE-2014-9882, no affected_versions
> -
> -# Skipping CVE-2014-9883, no affected_versions
> -
> -# Skipping CVE-2014-9884, no affected_versions
> -
> -# Skipping CVE-2014-9885, no affected_versions
> -
> -# Skipping CVE-2014-9886, no affected_versions
> -
> -# Skipping CVE-2014-9887, no affected_versions
> -
> -CVE_STATUS[CVE-2014-9888] = "fixed-version: Fixed from version 3.13rc1"
> -
> -# Skipping CVE-2014-9889, no affected_versions
> -
> -# Skipping CVE-2014-9890, no affected_versions
> -
> -# Skipping CVE-2014-9891, no affected_versions
> -
> -# Skipping CVE-2014-9892, no affected_versions
> -
> -# Skipping CVE-2014-9893, no affected_versions
> -
> -# Skipping CVE-2014-9894, no affected_versions
> -
> -CVE_STATUS[CVE-2014-9895] = "fixed-version: Fixed from version 3.11rc1"
> -
> -# Skipping CVE-2014-9896, no affected_versions
> -
> -# Skipping CVE-2014-9897, no affected_versions
> -
> -# Skipping CVE-2014-9898, no affected_versions
> -
> -# Skipping CVE-2014-9899, no affected_versions
> -
> -# Skipping CVE-2014-9900, no affected_versions
> -
> -CVE_STATUS[CVE-2014-9903] = "fixed-version: Fixed from version 3.14rc4"
> -
> -CVE_STATUS[CVE-2014-9904] = "fixed-version: Fixed from version 3.17rc1"
> -
> -CVE_STATUS[CVE-2014-9914] = "fixed-version: Fixed from version 3.16rc1"
> -
> -CVE_STATUS[CVE-2014-9922] = "fixed-version: Fixed from version 3.18rc2"
> -
> -CVE_STATUS[CVE-2014-9940] = "fixed-version: Fixed from version 3.19rc1"
> -
> -CVE_STATUS[CVE-2015-0239] = "fixed-version: Fixed from version 3.19rc6"
> -
> -CVE_STATUS[CVE-2015-0274] = "fixed-version: Fixed from version 3.15rc5"
> -
> -CVE_STATUS[CVE-2015-0275] = "fixed-version: Fixed from version 4.1rc1"
> -
> -# Skipping CVE-2015-0777, no affected_versions
> -
> -# Skipping CVE-2015-1328, no affected_versions
> -
> -CVE_STATUS[CVE-2015-1333] = "fixed-version: Fixed from version 4.2rc5"
> -
> -CVE_STATUS[CVE-2015-1339] = "fixed-version: Fixed from version 4.4rc5"
> -
> -CVE_STATUS[CVE-2015-1350] = "fixed-version: Fixed from version 4.9rc1"
> -
> -CVE_STATUS[CVE-2015-1420] = "fixed-version: Fixed from version 4.1rc7"
> -
> -CVE_STATUS[CVE-2015-1421] = "fixed-version: Fixed from version 3.19rc7"
> -
> -CVE_STATUS[CVE-2015-1465] = "fixed-version: Fixed from version 3.19rc7"
> -
> -CVE_STATUS[CVE-2015-1573] = "fixed-version: Fixed from version 3.19rc5"
> -
> -CVE_STATUS[CVE-2015-1593] = "fixed-version: Fixed from version 4.0rc1"
> -
> -CVE_STATUS[CVE-2015-1805] = "fixed-version: Fixed from version 3.16rc1"
> -
> -CVE_STATUS[CVE-2015-2041] = "fixed-version: Fixed from version 3.19rc7"
> -
> -CVE_STATUS[CVE-2015-2042] = "fixed-version: Fixed from version 3.19"
> -
> -CVE_STATUS[CVE-2015-2150] = "fixed-version: Fixed from version 4.0rc4"
> -
> -CVE_STATUS[CVE-2015-2666] = "fixed-version: Fixed from version 4.0rc1"
> -
> -CVE_STATUS[CVE-2015-2672] = "fixed-version: Fixed from version 4.0rc3"
> -
> -CVE_STATUS[CVE-2015-2686] = "fixed-version: Fixed from version 4.0rc6"
> -
> -CVE_STATUS[CVE-2015-2830] = "fixed-version: Fixed from version 4.0rc3"
> -
> -# CVE-2015-2877 has no known resolution
> -
> -CVE_STATUS[CVE-2015-2922] = "fixed-version: Fixed from version 4.0rc7"
> -
> -CVE_STATUS[CVE-2015-2925] = "fixed-version: Fixed from version 4.3rc1"
> -
> -CVE_STATUS[CVE-2015-3212] = "fixed-version: Fixed from version 4.2rc1"
> -
> -CVE_STATUS[CVE-2015-3214] = "fixed-version: Fixed from version 2.6.33rc8"
> -
> -CVE_STATUS[CVE-2015-3288] = "fixed-version: Fixed from version 4.2rc2"
> -
> -CVE_STATUS[CVE-2015-3290] = "fixed-version: Fixed from version 4.2rc3"
> -
> -CVE_STATUS[CVE-2015-3291] = "fixed-version: Fixed from version 4.2rc3"
> -
> -CVE_STATUS[CVE-2015-3331] = "fixed-version: Fixed from version 4.0rc5"
> -
> -# Skipping CVE-2015-3332, no affected_versions
> -
> -CVE_STATUS[CVE-2015-3339] = "fixed-version: Fixed from version 4.1rc1"
> -
> -CVE_STATUS[CVE-2015-3636] = "fixed-version: Fixed from version 4.1rc2"
> -
> -CVE_STATUS[CVE-2015-4001] = "fixed-version: Fixed from version 4.1rc7"
> -
> -CVE_STATUS[CVE-2015-4002] = "fixed-version: Fixed from version 4.1rc7"
> -
> -CVE_STATUS[CVE-2015-4003] = "fixed-version: Fixed from version 4.1rc7"
> -
> -CVE_STATUS[CVE-2015-4004] = "fixed-version: Fixed from version 4.3rc1"
> -
> -CVE_STATUS[CVE-2015-4036] = "fixed-version: Fixed from version 4.0rc1"
> -
> -CVE_STATUS[CVE-2015-4167] = "fixed-version: Fixed from version 4.0rc1"
> -
> -CVE_STATUS[CVE-2015-4170] = "fixed-version: Fixed from version 3.13rc5"
> -
> -CVE_STATUS[CVE-2015-4176] = "fixed-version: Fixed from version 4.1rc1"
> -
> -CVE_STATUS[CVE-2015-4177] = "fixed-version: Fixed from version 4.1rc1"
> -
> -CVE_STATUS[CVE-2015-4178] = "fixed-version: Fixed from version 4.1rc1"
> -
> -CVE_STATUS[CVE-2015-4692] = "fixed-version: Fixed from version 4.2rc1"
> -
> -CVE_STATUS[CVE-2015-4700] = "fixed-version: Fixed from version 4.1rc6"
> -
> -CVE_STATUS[CVE-2015-5156] = "fixed-version: Fixed from version 4.2rc7"
> -
> -CVE_STATUS[CVE-2015-5157] = "fixed-version: Fixed from version 4.2rc3"
> -
> -CVE_STATUS[CVE-2015-5257] = "fixed-version: Fixed from version 4.3rc3"
> -
> -CVE_STATUS[CVE-2015-5283] = "fixed-version: Fixed from version 4.3rc3"
> -
> -CVE_STATUS[CVE-2015-5307] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-5327] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-5364] = "fixed-version: Fixed from version 4.1rc7"
> -
> -CVE_STATUS[CVE-2015-5366] = "fixed-version: Fixed from version 4.1rc7"
> -
> -CVE_STATUS[CVE-2015-5697] = "fixed-version: Fixed from version 4.2rc6"
> -
> -CVE_STATUS[CVE-2015-5706] = "fixed-version: Fixed from version 4.1rc3"
> -
> -CVE_STATUS[CVE-2015-5707] = "fixed-version: Fixed from version 4.1rc1"
> -
> -CVE_STATUS[CVE-2015-6252] = "fixed-version: Fixed from version 4.2rc5"
> -
> -CVE_STATUS[CVE-2015-6526] = "fixed-version: Fixed from version 4.1rc1"
> -
> -# CVE-2015-6619 has no known resolution
> -
> -# CVE-2015-6646 has no known resolution
> -
> -CVE_STATUS[CVE-2015-6937] = "fixed-version: Fixed from version 4.3rc1"
> -
> -# Skipping CVE-2015-7312, no affected_versions
> -
> -CVE_STATUS[CVE-2015-7509] = "fixed-version: Fixed from version 3.7rc1"
> -
> -CVE_STATUS[CVE-2015-7513] = "fixed-version: Fixed from version 4.4rc7"
> -
> -CVE_STATUS[CVE-2015-7515] = "fixed-version: Fixed from version 4.4rc6"
> -
> -CVE_STATUS[CVE-2015-7550] = "fixed-version: Fixed from version 4.4rc8"
> -
> -# Skipping CVE-2015-7553, no affected_versions
> -
> -CVE_STATUS[CVE-2015-7566] = "fixed-version: Fixed from version 4.5rc2"
> -
> -CVE_STATUS[CVE-2015-7613] = "fixed-version: Fixed from version 4.3rc4"
> -
> -CVE_STATUS[CVE-2015-7799] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-7833] = "fixed-version: Fixed from version 4.6rc6"
> -
> -# Skipping CVE-2015-7837, no affected_versions
> -
> -CVE_STATUS[CVE-2015-7872] = "fixed-version: Fixed from version 4.3rc7"
> -
> -CVE_STATUS[CVE-2015-7884] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-7885] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-7990] = "fixed-version: Fixed from version 4.4rc4"
> -
> -# Skipping CVE-2015-8019, no affected_versions
> -
> -CVE_STATUS[CVE-2015-8104] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-8215] = "fixed-version: Fixed from version 4.0rc3"
> -
> -CVE_STATUS[CVE-2015-8324] = "fixed-version: Fixed from version 2.6.34rc1"
> -
> -CVE_STATUS[CVE-2015-8374] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-8539] = "fixed-version: Fixed from version 4.4rc3"
> -
> -CVE_STATUS[CVE-2015-8543] = "fixed-version: Fixed from version 4.4rc6"
> -
> -CVE_STATUS[CVE-2015-8550] = "fixed-version: Fixed from version 4.4rc6"
> -
> -CVE_STATUS[CVE-2015-8551] = "fixed-version: Fixed from version 4.4rc6"
> -
> -CVE_STATUS[CVE-2015-8552] = "fixed-version: Fixed from version 4.4rc6"
> -
> -CVE_STATUS[CVE-2015-8553] = "fixed-version: Fixed from version 4.4rc6"
> -
> -CVE_STATUS[CVE-2015-8569] = "fixed-version: Fixed from version 4.4rc6"
> -
> -CVE_STATUS[CVE-2015-8575] = "fixed-version: Fixed from version 4.4rc6"
> -
> -CVE_STATUS[CVE-2015-8660] = "fixed-version: Fixed from version 4.4rc4"
> -
> -CVE_STATUS[CVE-2015-8709] = "fixed-version: Fixed from version 4.10rc1"
> -
> -CVE_STATUS[CVE-2015-8746] = "fixed-version: Fixed from version 4.3rc1"
> -
> -CVE_STATUS[CVE-2015-8767] = "fixed-version: Fixed from version 4.3rc4"
> -
> -CVE_STATUS[CVE-2015-8785] = "fixed-version: Fixed from version 4.4rc5"
> -
> -CVE_STATUS[CVE-2015-8787] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-8812] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2015-8816] = "fixed-version: Fixed from version 4.4rc6"
> -
> -CVE_STATUS[CVE-2015-8830] = "fixed-version: Fixed from version 4.1rc1"
> -
> -CVE_STATUS[CVE-2015-8839] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2015-8844] = "fixed-version: Fixed from version 4.4rc3"
> -
> -CVE_STATUS[CVE-2015-8845] = "fixed-version: Fixed from version 4.4rc3"
> -
> -# Skipping CVE-2015-8937, no affected_versions
> -
> -# Skipping CVE-2015-8938, no affected_versions
> -
> -# Skipping CVE-2015-8939, no affected_versions
> -
> -# Skipping CVE-2015-8940, no affected_versions
> -
> -# Skipping CVE-2015-8941, no affected_versions
> -
> -# Skipping CVE-2015-8942, no affected_versions
> -
> -# Skipping CVE-2015-8943, no affected_versions
> -
> -# Skipping CVE-2015-8944, no affected_versions
> -
> -CVE_STATUS[CVE-2015-8950] = "fixed-version: Fixed from version 4.1rc2"
> -
> -CVE_STATUS[CVE-2015-8952] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2015-8953] = "fixed-version: Fixed from version 4.3"
> -
> -CVE_STATUS[CVE-2015-8955] = "fixed-version: Fixed from version 4.1rc1"
> -
> -CVE_STATUS[CVE-2015-8956] = "fixed-version: Fixed from version 4.2rc1"
> -
> -CVE_STATUS[CVE-2015-8961] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-8962] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2015-8963] = "fixed-version: Fixed from version 4.4"
> -
> -CVE_STATUS[CVE-2015-8964] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2015-8966] = "fixed-version: Fixed from version 4.4rc8"
> -
> -CVE_STATUS[CVE-2015-8967] = "fixed-version: Fixed from version 4.0rc1"
> -
> -CVE_STATUS[CVE-2015-8970] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2015-9004] = "fixed-version: Fixed from version 3.19rc7"
> -
> -CVE_STATUS[CVE-2015-9016] = "fixed-version: Fixed from version 4.3rc1"
> -
> -CVE_STATUS[CVE-2015-9289] = "fixed-version: Fixed from version 4.2rc1"
> -
> -CVE_STATUS[CVE-2016-0617] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-0723] = "fixed-version: Fixed from version 4.5rc2"
> -
> -CVE_STATUS[CVE-2016-0728] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-0758] = "fixed-version: Fixed from version 4.6"
> -
> -# Skipping CVE-2016-0774, no affected_versions
> -
> -CVE_STATUS[CVE-2016-0821] = "fixed-version: Fixed from version 4.3rc1"
> -
> -CVE_STATUS[CVE-2016-0823] = "fixed-version: Fixed from version 4.0rc5"
> -
> -CVE_STATUS[CVE-2016-10044] = "fixed-version: Fixed from version 4.8rc7"
> -
> -CVE_STATUS[CVE-2016-10088] = "fixed-version: Fixed from version 4.10rc1"
> -
> -CVE_STATUS[CVE-2016-10147] = "fixed-version: Fixed from version 4.9"
> -
> -CVE_STATUS[CVE-2016-10150] = "fixed-version: Fixed from version 4.9rc8"
> -
> -CVE_STATUS[CVE-2016-10153] = "fixed-version: Fixed from version 4.10rc1"
> -
> -CVE_STATUS[CVE-2016-10154] = "fixed-version: Fixed from version 4.10rc1"
> -
> -CVE_STATUS[CVE-2016-10200] = "fixed-version: Fixed from version 4.9rc7"
> -
> -CVE_STATUS[CVE-2016-10208] = "fixed-version: Fixed from version 4.10rc1"
> -
> -CVE_STATUS[CVE-2016-10229] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-10318] = "fixed-version: Fixed from version 4.8rc6"
> -
> -CVE_STATUS[CVE-2016-10723] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2016-10741] = "fixed-version: Fixed from version 4.10rc1"
> -
> -CVE_STATUS[CVE-2016-10764] = "fixed-version: Fixed from version 4.10rc1"
> -
> -CVE_STATUS[CVE-2016-10905] = "fixed-version: Fixed from version 4.8rc1"
> -
> -CVE_STATUS[CVE-2016-10906] = "fixed-version: Fixed from version 4.5rc6"
> -
> -CVE_STATUS[CVE-2016-10907] = "fixed-version: Fixed from version 4.9rc1"
> -
> -CVE_STATUS[CVE-2016-1237] = "fixed-version: Fixed from version 4.7rc5"
> -
> -CVE_STATUS[CVE-2016-1575] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-1576] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-1583] = "fixed-version: Fixed from version 4.7rc3"
> -
> -CVE_STATUS[CVE-2016-2053] = "fixed-version: Fixed from version 4.3rc1"
> -
> -CVE_STATUS[CVE-2016-2069] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-2070] = "fixed-version: Fixed from version 4.4"
> -
> -CVE_STATUS[CVE-2016-2085] = "fixed-version: Fixed from version 4.5rc4"
> -
> -CVE_STATUS[CVE-2016-2117] = "fixed-version: Fixed from version 4.6rc5"
> -
> -CVE_STATUS[CVE-2016-2143] = "fixed-version: Fixed from version 4.5"
> -
> -CVE_STATUS[CVE-2016-2184] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-2185] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-2186] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-2187] = "fixed-version: Fixed from version 4.6rc5"
> -
> -CVE_STATUS[CVE-2016-2188] = "fixed-version: Fixed from version 4.11rc2"
> -
> -CVE_STATUS[CVE-2016-2383] = "fixed-version: Fixed from version 4.5rc4"
> -
> -CVE_STATUS[CVE-2016-2384] = "fixed-version: Fixed from version 4.5rc4"
> -
> -CVE_STATUS[CVE-2016-2543] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-2544] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-2545] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-2546] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-2547] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-2548] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-2549] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2016-2550] = "fixed-version: Fixed from version 4.5rc4"
> -
> -CVE_STATUS[CVE-2016-2782] = "fixed-version: Fixed from version 4.5rc2"
> -
> -CVE_STATUS[CVE-2016-2847] = "fixed-version: Fixed from version 4.5rc1"
> -
> -# Skipping CVE-2016-2853, no affected_versions
> -
> -# Skipping CVE-2016-2854, no affected_versions
> -
> -CVE_STATUS[CVE-2016-3044] = "fixed-version: Fixed from version 4.5"
> -
> -CVE_STATUS[CVE-2016-3070] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2016-3134] = "fixed-version: Fixed from version 4.6rc2"
> -
> -CVE_STATUS[CVE-2016-3135] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-3136] = "fixed-version: Fixed from version 4.6rc3"
> -
> -CVE_STATUS[CVE-2016-3137] = "fixed-version: Fixed from version 4.6rc3"
> -
> -CVE_STATUS[CVE-2016-3138] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-3139] = "fixed-version: Fixed from version 3.17rc1"
> -
> -CVE_STATUS[CVE-2016-3140] = "fixed-version: Fixed from version 4.6rc3"
> -
> -CVE_STATUS[CVE-2016-3156] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-3157] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-3672] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-3689] = "fixed-version: Fixed from version 4.6rc1"
> -
> -# Skipping CVE-2016-3695, no affected_versions
> -
> -# Skipping CVE-2016-3699, no affected_versions
> -
> -# Skipping CVE-2016-3707, no affected_versions
> -
> -CVE_STATUS[CVE-2016-3713] = "fixed-version: Fixed from version 4.7rc1"
> -
> -# CVE-2016-3775 has no known resolution
> -
> -# CVE-2016-3802 has no known resolution
> -
> -# CVE-2016-3803 has no known resolution
> -
> -CVE_STATUS[CVE-2016-3841] = "fixed-version: Fixed from version 4.4rc4"
> -
> -CVE_STATUS[CVE-2016-3857] = "fixed-version: Fixed from version 4.8rc2"
> -
> -CVE_STATUS[CVE-2016-3951] = "fixed-version: Fixed from version 4.5"
> -
> -CVE_STATUS[CVE-2016-3955] = "fixed-version: Fixed from version 4.6rc3"
> -
> -CVE_STATUS[CVE-2016-3961] = "fixed-version: Fixed from version 4.6rc5"
> -
> -CVE_STATUS[CVE-2016-4440] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-4470] = "fixed-version: Fixed from version 4.7rc4"
> -
> -CVE_STATUS[CVE-2016-4482] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-4485] = "fixed-version: Fixed from version 4.6"
> -
> -CVE_STATUS[CVE-2016-4486] = "fixed-version: Fixed from version 4.6"
> -
> -CVE_STATUS[CVE-2016-4557] = "fixed-version: Fixed from version 4.6rc6"
> -
> -CVE_STATUS[CVE-2016-4558] = "fixed-version: Fixed from version 4.6rc7"
> -
> -CVE_STATUS[CVE-2016-4565] = "fixed-version: Fixed from version 4.6rc6"
> -
> -CVE_STATUS[CVE-2016-4568] = "fixed-version: Fixed from version 4.6rc6"
> -
> -CVE_STATUS[CVE-2016-4569] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-4578] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-4580] = "fixed-version: Fixed from version 4.6"
> -
> -CVE_STATUS[CVE-2016-4581] = "fixed-version: Fixed from version 4.6rc7"
> -
> -CVE_STATUS[CVE-2016-4794] = "fixed-version: Fixed from version 4.7rc4"
> -
> -CVE_STATUS[CVE-2016-4805] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-4913] = "fixed-version: Fixed from version 4.6"
> -
> -CVE_STATUS[CVE-2016-4951] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-4997] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-4998] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-5195] = "fixed-version: Fixed from version 4.9rc2"
> -
> -CVE_STATUS[CVE-2016-5243] = "fixed-version: Fixed from version 4.7rc3"
> -
> -CVE_STATUS[CVE-2016-5244] = "fixed-version: Fixed from version 4.7rc3"
> -
> -# Skipping CVE-2016-5340, no affected_versions
> -
> -# Skipping CVE-2016-5342, no affected_versions
> -
> -# Skipping CVE-2016-5343, no affected_versions
> -
> -# Skipping CVE-2016-5344, no affected_versions
> -
> -CVE_STATUS[CVE-2016-5400] = "fixed-version: Fixed from version 4.7"
> -
> -CVE_STATUS[CVE-2016-5412] = "fixed-version: Fixed from version 4.8rc1"
> -
> -CVE_STATUS[CVE-2016-5696] = "fixed-version: Fixed from version 4.7"
> -
> -CVE_STATUS[CVE-2016-5728] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-5828] = "fixed-version: Fixed from version 4.7rc6"
> -
> -CVE_STATUS[CVE-2016-5829] = "fixed-version: Fixed from version 4.7rc5"
> -
> -# CVE-2016-5870 has no known resolution
> -
> -CVE_STATUS[CVE-2016-6130] = "fixed-version: Fixed from version 4.6rc6"
> -
> -CVE_STATUS[CVE-2016-6136] = "fixed-version: Fixed from version 4.8rc1"
> -
> -CVE_STATUS[CVE-2016-6156] = "fixed-version: Fixed from version 4.7rc7"
> -
> -CVE_STATUS[CVE-2016-6162] = "fixed-version: Fixed from version 4.7"
> -
> -CVE_STATUS[CVE-2016-6187] = "fixed-version: Fixed from version 4.7rc7"
> -
> -CVE_STATUS[CVE-2016-6197] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-6198] = "fixed-version: Fixed from version 4.6"
> -
> -CVE_STATUS[CVE-2016-6213] = "fixed-version: Fixed from version 4.9rc1"
> -
> -CVE_STATUS[CVE-2016-6327] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-6480] = "fixed-version: Fixed from version 4.8rc3"
> -
> -CVE_STATUS[CVE-2016-6516] = "fixed-version: Fixed from version 4.8rc1"
> -
> -# Skipping CVE-2016-6753, no affected_versions
> -
> -CVE_STATUS[CVE-2016-6786] = "fixed-version: Fixed from version 4.0rc1"
> -
> -CVE_STATUS[CVE-2016-6787] = "fixed-version: Fixed from version 4.0rc1"
> -
> -CVE_STATUS[CVE-2016-6828] = "fixed-version: Fixed from version 4.8rc5"
> -
> -CVE_STATUS[CVE-2016-7039] = "fixed-version: Fixed from version 4.9rc4"
> -
> -CVE_STATUS[CVE-2016-7042] = "fixed-version: Fixed from version 4.9rc3"
> -
> -CVE_STATUS[CVE-2016-7097] = "fixed-version: Fixed from version 4.9rc1"
> -
> -CVE_STATUS[CVE-2016-7117] = "fixed-version: Fixed from version 4.6rc1"
> -
> -# Skipping CVE-2016-7118, no affected_versions
> -
> -CVE_STATUS[CVE-2016-7425] = "fixed-version: Fixed from version 4.9rc1"
> -
> -CVE_STATUS[CVE-2016-7910] = "fixed-version: Fixed from version 4.8rc1"
> -
> -CVE_STATUS[CVE-2016-7911] = "fixed-version: Fixed from version 4.7rc7"
> -
> -CVE_STATUS[CVE-2016-7912] = "fixed-version: Fixed from version 4.6rc5"
> -
> -CVE_STATUS[CVE-2016-7913] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-7914] = "fixed-version: Fixed from version 4.6rc4"
> -
> -CVE_STATUS[CVE-2016-7915] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-7916] = "fixed-version: Fixed from version 4.6rc7"
> -
> -CVE_STATUS[CVE-2016-7917] = "fixed-version: Fixed from version 4.5rc6"
> -
> -CVE_STATUS[CVE-2016-8399] = "fixed-version: Fixed from version 4.9"
> -
> -# Skipping CVE-2016-8401, no affected_versions
> -
> -# Skipping CVE-2016-8402, no affected_versions
> -
> -# Skipping CVE-2016-8403, no affected_versions
> -
> -# Skipping CVE-2016-8404, no affected_versions
> -
> -CVE_STATUS[CVE-2016-8405] = "fixed-version: Fixed from version 4.10rc6"
> -
> -# Skipping CVE-2016-8406, no affected_versions
> -
> -# Skipping CVE-2016-8407, no affected_versions
> -
> -CVE_STATUS[CVE-2016-8630] = "fixed-version: Fixed from version 4.9rc4"
> -
> -CVE_STATUS[CVE-2016-8632] = "fixed-version: Fixed from version 4.9rc8"
> -
> -CVE_STATUS[CVE-2016-8633] = "fixed-version: Fixed from version 4.9rc4"
> -
> -CVE_STATUS[CVE-2016-8636] = "fixed-version: Fixed from version 4.10rc8"
> -
> -CVE_STATUS[CVE-2016-8645] = "fixed-version: Fixed from version 4.9rc6"
> -
> -CVE_STATUS[CVE-2016-8646] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2016-8650] = "fixed-version: Fixed from version 4.9rc7"
> -
> -CVE_STATUS[CVE-2016-8655] = "fixed-version: Fixed from version 4.9rc8"
> -
> -CVE_STATUS[CVE-2016-8658] = "fixed-version: Fixed from version 4.8rc7"
> -
> -# CVE-2016-8660 has no known resolution
> -
> -CVE_STATUS[CVE-2016-8666] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-9083] = "fixed-version: Fixed from version 4.9rc4"
> -
> -CVE_STATUS[CVE-2016-9084] = "fixed-version: Fixed from version 4.9rc4"
> -
> -CVE_STATUS[CVE-2016-9120] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-9178] = "fixed-version: Fixed from version 4.8rc7"
> -
> -CVE_STATUS[CVE-2016-9191] = "fixed-version: Fixed from version 4.10rc4"
> -
> -CVE_STATUS[CVE-2016-9313] = "fixed-version: Fixed from version 4.9rc3"
> -
> -CVE_STATUS[CVE-2016-9555] = "fixed-version: Fixed from version 4.9rc4"
> -
> -CVE_STATUS[CVE-2016-9576] = "fixed-version: Fixed from version 4.9"
> -
> -CVE_STATUS[CVE-2016-9588] = "fixed-version: Fixed from version 4.10rc1"
> -
> -CVE_STATUS[CVE-2016-9604] = "fixed-version: Fixed from version 4.11rc8"
> -
> -# Skipping CVE-2016-9644, no affected_versions
> -
> -CVE_STATUS[CVE-2016-9685] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2016-9754] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-9755] = "fixed-version: Fixed from version 4.9rc8"
> -
> -CVE_STATUS[CVE-2016-9756] = "fixed-version: Fixed from version 4.9rc7"
> -
> -CVE_STATUS[CVE-2016-9777] = "fixed-version: Fixed from version 4.9rc7"
> -
> -CVE_STATUS[CVE-2016-9793] = "fixed-version: Fixed from version 4.9rc8"
> -
> -CVE_STATUS[CVE-2016-9794] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-9806] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2016-9919] = "fixed-version: Fixed from version 4.9rc8"
> -
> -# Skipping CVE-2017-0403, no affected_versions
> -
> -# Skipping CVE-2017-0404, no affected_versions
> -
> -# Skipping CVE-2017-0426, no affected_versions
> -
> -# Skipping CVE-2017-0427, no affected_versions
> -
> -# CVE-2017-0507 has no known resolution
> -
> -# CVE-2017-0508 has no known resolution
> -
> -# Skipping CVE-2017-0510, no affected_versions
> -
> -# Skipping CVE-2017-0528, no affected_versions
> -
> -# Skipping CVE-2017-0537, no affected_versions
> -
> -# CVE-2017-0564 has no known resolution
> -
> -CVE_STATUS[CVE-2017-0605] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-0627] = "fixed-version: Fixed from version 4.14rc1"
> -
> -# CVE-2017-0630 has no known resolution
> -
> -# CVE-2017-0749 has no known resolution
> -
> -CVE_STATUS[CVE-2017-0750] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2017-0786] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2017-0861] = "fixed-version: Fixed from version 4.15rc3"
> -
> -CVE_STATUS[CVE-2017-1000] = "fixed-version: Fixed from version 4.13rc5"
> -
> -CVE_STATUS[CVE-2017-1000111] = "fixed-version: Fixed from version 4.13rc5"
> -
> -CVE_STATUS[CVE-2017-1000112] = "fixed-version: Fixed from version 4.13rc5"
> -
> -CVE_STATUS[CVE-2017-1000251] = "fixed-version: Fixed from version 4.14rc1"
> -
> -CVE_STATUS[CVE-2017-1000252] = "fixed-version: Fixed from version 4.14rc1"
> -
> -CVE_STATUS[CVE-2017-1000253] = "fixed-version: Fixed from version 4.1rc1"
> -
> -CVE_STATUS[CVE-2017-1000255] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-1000363] = "fixed-version: Fixed from version 4.12rc2"
> -
> -CVE_STATUS[CVE-2017-1000364] = "fixed-version: Fixed from version 4.12rc6"
> -
> -CVE_STATUS[CVE-2017-1000365] = "fixed-version: Fixed from version 4.12rc7"
> -
> -CVE_STATUS[CVE-2017-1000370] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-1000371] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-1000379] = "fixed-version: Fixed from version 4.12rc6"
> -
> -CVE_STATUS[CVE-2017-1000380] = "fixed-version: Fixed from version 4.12rc5"
> -
> -CVE_STATUS[CVE-2017-1000405] = "fixed-version: Fixed from version 4.15rc2"
> -
> -CVE_STATUS[CVE-2017-1000407] = "fixed-version: Fixed from version 4.15rc3"
> -
> -CVE_STATUS[CVE-2017-1000410] = "fixed-version: Fixed from version 4.15rc8"
> -
> -CVE_STATUS[CVE-2017-10661] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-10662] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-10663] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-10810] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-10911] = "fixed-version: Fixed from version 4.12rc7"
> -
> -CVE_STATUS[CVE-2017-11089] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-11176] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-11472] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-11473] = "fixed-version: Fixed from version 4.13rc2"
> -
> -CVE_STATUS[CVE-2017-11600] = "fixed-version: Fixed from version 4.13"
> -
> -CVE_STATUS[CVE-2017-12134] = "fixed-version: Fixed from version 4.13rc6"
> -
> -CVE_STATUS[CVE-2017-12146] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-12153] = "fixed-version: Fixed from version 4.14rc2"
> -
> -CVE_STATUS[CVE-2017-12154] = "fixed-version: Fixed from version 4.14rc1"
> -
> -CVE_STATUS[CVE-2017-12168] = "fixed-version: Fixed from version 4.9rc6"
> -
> -CVE_STATUS[CVE-2017-12188] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-12190] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-12192] = "fixed-version: Fixed from version 4.14rc3"
> -
> -CVE_STATUS[CVE-2017-12193] = "fixed-version: Fixed from version 4.14rc7"
> -
> -CVE_STATUS[CVE-2017-12762] = "fixed-version: Fixed from version 4.13rc4"
> -
> -CVE_STATUS[CVE-2017-13080] = "fixed-version: Fixed from version 4.14rc6"
> -
> -CVE_STATUS[CVE-2017-13166] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2017-13167] = "fixed-version: Fixed from version 4.5rc4"
> -
> -CVE_STATUS[CVE-2017-13168] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2017-13215] = "fixed-version: Fixed from version 4.5rc1"
> -
> -CVE_STATUS[CVE-2017-13216] = "fixed-version: Fixed from version 4.15rc8"
> -
> -CVE_STATUS[CVE-2017-13220] = "fixed-version: Fixed from version 3.19rc3"
> -
> -# CVE-2017-13221 has no known resolution
> -
> -# CVE-2017-13222 has no known resolution
> -
> -CVE_STATUS[CVE-2017-13305] = "fixed-version: Fixed from version 4.12rc5"
> -
> -CVE_STATUS[CVE-2017-13686] = "fixed-version: Fixed from version 4.13rc7"
> -
> -# CVE-2017-13693 has no known resolution
> -
> -# CVE-2017-13694 has no known resolution
> -
> -CVE_STATUS[CVE-2017-13695] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2017-13715] = "fixed-version: Fixed from version 4.3rc1"
> -
> -CVE_STATUS[CVE-2017-14051] = "fixed-version: Fixed from version 4.14rc1"
> -
> -CVE_STATUS[CVE-2017-14106] = "fixed-version: Fixed from version 4.12rc3"
> -
> -CVE_STATUS[CVE-2017-14140] = "fixed-version: Fixed from version 4.13rc6"
> -
> -CVE_STATUS[CVE-2017-14156] = "fixed-version: Fixed from version 4.14rc1"
> -
> -CVE_STATUS[CVE-2017-14340] = "fixed-version: Fixed from version 4.14rc1"
> -
> -CVE_STATUS[CVE-2017-14489] = "fixed-version: Fixed from version 4.14rc3"
> -
> -CVE_STATUS[CVE-2017-14497] = "fixed-version: Fixed from version 4.13"
> -
> -CVE_STATUS[CVE-2017-14954] = "fixed-version: Fixed from version 4.14rc3"
> -
> -CVE_STATUS[CVE-2017-14991] = "fixed-version: Fixed from version 4.14rc2"
> -
> -CVE_STATUS[CVE-2017-15102] = "fixed-version: Fixed from version 4.9rc1"
> -
> -CVE_STATUS[CVE-2017-15115] = "fixed-version: Fixed from version 4.14rc6"
> -
> -CVE_STATUS[CVE-2017-15116] = "fixed-version: Fixed from version 4.2rc1"
> -
> -CVE_STATUS[CVE-2017-15121] = "fixed-version: Fixed from version 3.11rc1"
> -
> -CVE_STATUS[CVE-2017-15126] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2017-15127] = "fixed-version: Fixed from version 4.13rc5"
> -
> -CVE_STATUS[CVE-2017-15128] = "fixed-version: Fixed from version 4.14rc8"
> -
> -CVE_STATUS[CVE-2017-15129] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-15265] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-15274] = "fixed-version: Fixed from version 4.12rc5"
> -
> -CVE_STATUS[CVE-2017-15299] = "fixed-version: Fixed from version 4.14rc6"
> -
> -CVE_STATUS[CVE-2017-15306] = "fixed-version: Fixed from version 4.14rc7"
> -
> -CVE_STATUS[CVE-2017-15537] = "fixed-version: Fixed from version 4.14rc3"
> -
> -CVE_STATUS[CVE-2017-15649] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2017-15868] = "fixed-version: Fixed from version 3.19rc3"
> -
> -CVE_STATUS[CVE-2017-15951] = "fixed-version: Fixed from version 4.14rc6"
> -
> -CVE_STATUS[CVE-2017-16525] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-16526] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2017-16527] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-16528] = "fixed-version: Fixed from version 4.14rc1"
> -
> -CVE_STATUS[CVE-2017-16529] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2017-16530] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2017-16531] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2017-16532] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-16533] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-16534] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2017-16535] = "fixed-version: Fixed from version 4.14rc6"
> -
> -CVE_STATUS[CVE-2017-16536] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-16537] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-16538] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2017-16643] = "fixed-version: Fixed from version 4.14rc7"
> -
> -CVE_STATUS[CVE-2017-16644] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2017-16645] = "fixed-version: Fixed from version 4.14rc6"
> -
> -CVE_STATUS[CVE-2017-16646] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-16647] = "fixed-version: Fixed from version 4.14"
> -
> -CVE_STATUS[CVE-2017-16648] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-16649] = "fixed-version: Fixed from version 4.14"
> -
> -CVE_STATUS[CVE-2017-16650] = "fixed-version: Fixed from version 4.14"
> -
> -CVE_STATUS[CVE-2017-16911] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-16912] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-16913] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-16914] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-16939] = "fixed-version: Fixed from version 4.14rc7"
> -
> -CVE_STATUS[CVE-2017-16994] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-16995] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-16996] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17052] = "fixed-version: Fixed from version 4.13rc7"
> -
> -CVE_STATUS[CVE-2017-17053] = "fixed-version: Fixed from version 4.13rc7"
> -
> -CVE_STATUS[CVE-2017-17448] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-17449] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-17450] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-17558] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-17712] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-17741] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17805] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-17806] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-17807] = "fixed-version: Fixed from version 4.15rc3"
> -
> -CVE_STATUS[CVE-2017-17852] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17853] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17854] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17855] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17856] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17857] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17862] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-17863] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17864] = "fixed-version: Fixed from version 4.15rc5"
> -
> -CVE_STATUS[CVE-2017-17975] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2017-18017] = "fixed-version: Fixed from version 4.11rc7"
> -
> -CVE_STATUS[CVE-2017-18075] = "fixed-version: Fixed from version 4.15rc7"
> -
> -CVE_STATUS[CVE-2017-18079] = "fixed-version: Fixed from version 4.13rc1"
> -
> -# CVE-2017-18169 has no known resolution
> -
> -CVE_STATUS[CVE-2017-18174] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2017-18193] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-18200] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-18202] = "fixed-version: Fixed from version 4.15rc2"
> -
> -CVE_STATUS[CVE-2017-18203] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-18204] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-18208] = "fixed-version: Fixed from version 4.15rc2"
> -
> -CVE_STATUS[CVE-2017-18216] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-18218] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-18221] = "fixed-version: Fixed from version 4.12rc4"
> -
> -CVE_STATUS[CVE-2017-18222] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-18224] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2017-18232] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2017-18241] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-18249] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-18255] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-18257] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-18261] = "fixed-version: Fixed from version 4.13rc6"
> -
> -CVE_STATUS[CVE-2017-18270] = "fixed-version: Fixed from version 4.14rc3"
> -
> -CVE_STATUS[CVE-2017-18344] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2017-18360] = "fixed-version: Fixed from version 4.12rc2"
> -
> -CVE_STATUS[CVE-2017-18379] = "fixed-version: Fixed from version 4.14rc3"
> -
> -CVE_STATUS[CVE-2017-18509] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-18549] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-18550] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-18551] = "fixed-version: Fixed from version 4.15rc9"
> -
> -CVE_STATUS[CVE-2017-18552] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-18595] = "fixed-version: Fixed from version 4.15rc6"
> -
> -CVE_STATUS[CVE-2017-2583] = "fixed-version: Fixed from version 4.10rc4"
> -
> -CVE_STATUS[CVE-2017-2584] = "fixed-version: Fixed from version 4.10rc4"
> -
> -CVE_STATUS[CVE-2017-2596] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-2618] = "fixed-version: Fixed from version 4.10rc8"
> -
> -CVE_STATUS[CVE-2017-2634] = "fixed-version: Fixed from version 2.6.25rc1"
> -
> -CVE_STATUS[CVE-2017-2636] = "fixed-version: Fixed from version 4.11rc2"
> -
> -CVE_STATUS[CVE-2017-2647] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2017-2671] = "fixed-version: Fixed from version 4.11rc6"
> -
> -CVE_STATUS[CVE-2017-5123] = "fixed-version: Fixed from version 4.14rc5"
> -
> -CVE_STATUS[CVE-2017-5546] = "fixed-version: Fixed from version 4.10rc4"
> -
> -CVE_STATUS[CVE-2017-5547] = "fixed-version: Fixed from version 4.10rc5"
> -
> -CVE_STATUS[CVE-2017-5548] = "fixed-version: Fixed from version 4.10rc5"
> -
> -CVE_STATUS[CVE-2017-5549] = "fixed-version: Fixed from version 4.10rc4"
> -
> -CVE_STATUS[CVE-2017-5550] = "fixed-version: Fixed from version 4.10rc4"
> -
> -CVE_STATUS[CVE-2017-5551] = "fixed-version: Fixed from version 4.10rc4"
> -
> -CVE_STATUS[CVE-2017-5576] = "fixed-version: Fixed from version 4.10rc6"
> -
> -CVE_STATUS[CVE-2017-5577] = "fixed-version: Fixed from version 4.10rc6"
> -
> -CVE_STATUS[CVE-2017-5669] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-5715] = "fixed-version: Fixed from version 4.15rc8"
> -
> -CVE_STATUS[CVE-2017-5753] = "fixed-version: Fixed from version 4.15rc8"
> -
> -CVE_STATUS[CVE-2017-5754] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2017-5897] = "fixed-version: Fixed from version 4.10rc8"
> -
> -CVE_STATUS[CVE-2017-5967] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-5970] = "fixed-version: Fixed from version 4.10rc8"
> -
> -CVE_STATUS[CVE-2017-5972] = "fixed-version: Fixed from version 4.4rc1"
> -
> -CVE_STATUS[CVE-2017-5986] = "fixed-version: Fixed from version 4.10rc8"
> -
> -CVE_STATUS[CVE-2017-6001] = "fixed-version: Fixed from version 4.10rc4"
> -
> -CVE_STATUS[CVE-2017-6074] = "fixed-version: Fixed from version 4.10"
> -
> -CVE_STATUS[CVE-2017-6214] = "fixed-version: Fixed from version 4.10rc8"
> -
> -CVE_STATUS[CVE-2017-6345] = "fixed-version: Fixed from version 4.10"
> -
> -CVE_STATUS[CVE-2017-6346] = "fixed-version: Fixed from version 4.10"
> -
> -CVE_STATUS[CVE-2017-6347] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-6348] = "fixed-version: Fixed from version 4.10"
> -
> -CVE_STATUS[CVE-2017-6353] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-6874] = "fixed-version: Fixed from version 4.11rc2"
> -
> -CVE_STATUS[CVE-2017-6951] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2017-7184] = "fixed-version: Fixed from version 4.11rc5"
> -
> -CVE_STATUS[CVE-2017-7187] = "fixed-version: Fixed from version 4.11rc5"
> -
> -CVE_STATUS[CVE-2017-7261] = "fixed-version: Fixed from version 4.11rc6"
> -
> -CVE_STATUS[CVE-2017-7273] = "fixed-version: Fixed from version 4.10rc4"
> -
> -CVE_STATUS[CVE-2017-7277] = "fixed-version: Fixed from version 4.11rc4"
> -
> -CVE_STATUS[CVE-2017-7294] = "fixed-version: Fixed from version 4.11rc6"
> -
> -CVE_STATUS[CVE-2017-7308] = "fixed-version: Fixed from version 4.11rc6"
> -
> -CVE_STATUS[CVE-2017-7346] = "fixed-version: Fixed from version 4.12rc5"
> -
> -# CVE-2017-7369 has no known resolution
> -
> -CVE_STATUS[CVE-2017-7374] = "fixed-version: Fixed from version 4.11rc4"
> -
> -CVE_STATUS[CVE-2017-7472] = "fixed-version: Fixed from version 4.11rc8"
> -
> -CVE_STATUS[CVE-2017-7477] = "fixed-version: Fixed from version 4.11"
> -
> -CVE_STATUS[CVE-2017-7482] = "fixed-version: Fixed from version 4.12rc7"
> -
> -CVE_STATUS[CVE-2017-7487] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-7495] = "fixed-version: Fixed from version 4.7rc1"
> -
> -CVE_STATUS[CVE-2017-7518] = "fixed-version: Fixed from version 4.12rc7"
> -
> -CVE_STATUS[CVE-2017-7533] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-7541] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-7542] = "fixed-version: Fixed from version 4.13rc2"
> -
> -CVE_STATUS[CVE-2017-7558] = "fixed-version: Fixed from version 4.13"
> -
> -CVE_STATUS[CVE-2017-7616] = "fixed-version: Fixed from version 4.11rc6"
> -
> -CVE_STATUS[CVE-2017-7618] = "fixed-version: Fixed from version 4.11rc8"
> -
> -CVE_STATUS[CVE-2017-7645] = "fixed-version: Fixed from version 4.11"
> -
> -CVE_STATUS[CVE-2017-7889] = "fixed-version: Fixed from version 4.11rc7"
> -
> -CVE_STATUS[CVE-2017-7895] = "fixed-version: Fixed from version 4.11"
> -
> -CVE_STATUS[CVE-2017-7979] = "fixed-version: Fixed from version 4.11rc8"
> -
> -CVE_STATUS[CVE-2017-8061] = "fixed-version: Fixed from version 4.11rc4"
> -
> -CVE_STATUS[CVE-2017-8062] = "fixed-version: Fixed from version 4.11rc2"
> -
> -CVE_STATUS[CVE-2017-8063] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-8064] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-8065] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-8066] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-8067] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2017-8068] = "fixed-version: Fixed from version 4.10rc8"
> -
> -CVE_STATUS[CVE-2017-8069] = "fixed-version: Fixed from version 4.10rc8"
> -
> -CVE_STATUS[CVE-2017-8070] = "fixed-version: Fixed from version 4.10rc8"
> -
> -CVE_STATUS[CVE-2017-8071] = "fixed-version: Fixed from version 4.10rc7"
> -
> -CVE_STATUS[CVE-2017-8072] = "fixed-version: Fixed from version 4.10rc7"
> -
> -CVE_STATUS[CVE-2017-8106] = "fixed-version: Fixed from version 3.16rc1"
> -
> -CVE_STATUS[CVE-2017-8240] = "fixed-version: Fixed from version 3.19rc6"
> -
> -# CVE-2017-8242 has no known resolution
> -
> -# CVE-2017-8244 has no known resolution
> -
> -# CVE-2017-8245 has no known resolution
> -
> -# CVE-2017-8246 has no known resolution
> -
> -CVE_STATUS[CVE-2017-8797] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-8824] = "fixed-version: Fixed from version 4.15rc3"
> -
> -CVE_STATUS[CVE-2017-8831] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-8890] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-8924] = "fixed-version: Fixed from version 4.11rc2"
> -
> -CVE_STATUS[CVE-2017-8925] = "fixed-version: Fixed from version 4.11rc2"
> -
> -CVE_STATUS[CVE-2017-9059] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-9074] = "fixed-version: Fixed from version 4.12rc2"
> -
> -CVE_STATUS[CVE-2017-9075] = "fixed-version: Fixed from version 4.12rc2"
> -
> -CVE_STATUS[CVE-2017-9076] = "fixed-version: Fixed from version 4.12rc2"
> -
> -CVE_STATUS[CVE-2017-9077] = "fixed-version: Fixed from version 4.12rc2"
> -
> -CVE_STATUS[CVE-2017-9150] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2017-9211] = "fixed-version: Fixed from version 4.12rc3"
> -
> -CVE_STATUS[CVE-2017-9242] = "fixed-version: Fixed from version 4.12rc3"
> -
> -CVE_STATUS[CVE-2017-9605] = "fixed-version: Fixed from version 4.12rc5"
> -
> -CVE_STATUS[CVE-2017-9725] = "fixed-version: Fixed from version 4.3rc7"
> -
> -CVE_STATUS[CVE-2017-9984] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-9985] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2017-9986] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2018-1000004] = "fixed-version: Fixed from version 4.15rc9"
> -
> -CVE_STATUS[CVE-2018-1000026] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2018-1000028] = "fixed-version: Fixed from version 4.15"
> -
> -CVE_STATUS[CVE-2018-1000199] = "fixed-version: Fixed from version 4.16"
> -
> -CVE_STATUS[CVE-2018-1000200] = "fixed-version: Fixed from version 4.17rc5"
> -
> -CVE_STATUS[CVE-2018-1000204] = "fixed-version: Fixed from version 4.17rc7"
> -
> -CVE_STATUS[CVE-2018-10021] = "fixed-version: Fixed from version 4.16rc7"
> -
> -CVE_STATUS[CVE-2018-10074] = "fixed-version: Fixed from version 4.16rc7"
> -
> -CVE_STATUS[CVE-2018-10087] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2018-10124] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2018-10322] = "fixed-version: Fixed from version 4.17rc4"
> -
> -CVE_STATUS[CVE-2018-10323] = "fixed-version: Fixed from version 4.17rc4"
> -
> -CVE_STATUS[CVE-2018-1065] = "fixed-version: Fixed from version 4.16rc3"
> -
> -CVE_STATUS[CVE-2018-1066] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2018-10675] = "fixed-version: Fixed from version 4.13rc6"
> -
> -CVE_STATUS[CVE-2018-1068] = "fixed-version: Fixed from version 4.16rc5"
> -
> -CVE_STATUS[CVE-2018-10840] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-10853] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-1087] = "fixed-version: Fixed from version 4.16rc7"
> -
> -# CVE-2018-10872 has no known resolution
> -
> -CVE_STATUS[CVE-2018-10876] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2018-10877] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2018-10878] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2018-10879] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2018-10880] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2018-10881] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2018-10882] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2018-10883] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2018-10901] = "fixed-version: Fixed from version 2.6.36rc1"
> -
> -CVE_STATUS[CVE-2018-10902] = "fixed-version: Fixed from version 4.18rc6"
> -
> -CVE_STATUS[CVE-2018-1091] = "fixed-version: Fixed from version 4.14rc2"
> -
> -CVE_STATUS[CVE-2018-1092] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2018-1093] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2018-10938] = "fixed-version: Fixed from version 4.13rc5"
> -
> -CVE_STATUS[CVE-2018-1094] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2018-10940] = "fixed-version: Fixed from version 4.17rc3"
> -
> -CVE_STATUS[CVE-2018-1095] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2018-1108] = "fixed-version: Fixed from version 4.17rc2"
> -
> -CVE_STATUS[CVE-2018-1118] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-1120] = "fixed-version: Fixed from version 4.17rc6"
> -
> -# CVE-2018-1121 has no known resolution
> -
> -CVE_STATUS[CVE-2018-11232] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2018-1128] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-1129] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-1130] = "fixed-version: Fixed from version 4.16rc7"
> -
> -CVE_STATUS[CVE-2018-11412] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-11506] = "fixed-version: Fixed from version 4.17rc7"
> -
> -CVE_STATUS[CVE-2018-11508] = "fixed-version: Fixed from version 4.17rc5"
> -
> -# CVE-2018-11987 has no known resolution
> -
> -CVE_STATUS[CVE-2018-12126] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2018-12127] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2018-12130] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2018-12207] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2018-12232] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-12233] = "fixed-version: Fixed from version 4.18rc2"
> -
> -CVE_STATUS[CVE-2018-12633] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-12714] = "fixed-version: Fixed from version 4.18rc2"
> -
> -CVE_STATUS[CVE-2018-12896] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-12904] = "fixed-version: Fixed from version 4.18rc1"
> -
> -# CVE-2018-12928 has no known resolution
> -
> -# CVE-2018-12929 has no known resolution
> -
> -# CVE-2018-12930 has no known resolution
> -
> -# CVE-2018-12931 has no known resolution
> -
> -CVE_STATUS[CVE-2018-13053] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-13093] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-13094] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-13095] = "fixed-version: Fixed from version 4.18rc3"
> -
> -CVE_STATUS[CVE-2018-13096] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-13097] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-13098] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-13099] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-13100] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-13405] = "fixed-version: Fixed from version 4.18rc4"
> -
> -CVE_STATUS[CVE-2018-13406] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-14609] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-14610] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-14611] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-14612] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-14613] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-14614] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-14615] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-14616] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-14617] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-14619] = "fixed-version: Fixed from version 4.15rc4"
> -
> -CVE_STATUS[CVE-2018-14625] = "fixed-version: Fixed from version 4.20rc6"
> -
> -CVE_STATUS[CVE-2018-14633] = "fixed-version: Fixed from version 4.19rc6"
> -
> -CVE_STATUS[CVE-2018-14634] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2018-14641] = "fixed-version: Fixed from version 4.19rc4"
> -
> -CVE_STATUS[CVE-2018-14646] = "fixed-version: Fixed from version 4.15rc8"
> -
> -CVE_STATUS[CVE-2018-14656] = "fixed-version: Fixed from version 4.19rc2"
> -
> -CVE_STATUS[CVE-2018-14678] = "fixed-version: Fixed from version 4.18rc8"
> -
> -CVE_STATUS[CVE-2018-14734] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-15471] = "fixed-version: Fixed from version 4.19rc7"
> -
> -CVE_STATUS[CVE-2018-15572] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-15594] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-16276] = "fixed-version: Fixed from version 4.18rc5"
> -
> -CVE_STATUS[CVE-2018-16597] = "fixed-version: Fixed from version 4.8rc1"
> -
> -CVE_STATUS[CVE-2018-16658] = "fixed-version: Fixed from version 4.19rc2"
> -
> -CVE_STATUS[CVE-2018-16862] = "fixed-version: Fixed from version 4.20rc5"
> -
> -CVE_STATUS[CVE-2018-16871] = "fixed-version: Fixed from version 4.20rc3"
> -
> -CVE_STATUS[CVE-2018-16880] = "fixed-version: Fixed from version 5.0rc5"
> -
> -CVE_STATUS[CVE-2018-16882] = "fixed-version: Fixed from version 4.20"
> -
> -CVE_STATUS[CVE-2018-16884] = "fixed-version: Fixed from version 5.0rc1"
> -
> -# CVE-2018-16885 has no known resolution
> -
> -CVE_STATUS[CVE-2018-17182] = "fixed-version: Fixed from version 4.19rc4"
> -
> -CVE_STATUS[CVE-2018-17972] = "fixed-version: Fixed from version 4.19rc7"
> -
> -# CVE-2018-17977 has no known resolution
> -
> -CVE_STATUS[CVE-2018-18021] = "fixed-version: Fixed from version 4.19rc7"
> -
> -CVE_STATUS[CVE-2018-18281] = "fixed-version: Fixed from version 4.19"
> -
> -CVE_STATUS[CVE-2018-18386] = "fixed-version: Fixed from version 4.15rc6"
> -
> -CVE_STATUS[CVE-2018-18397] = "fixed-version: Fixed from version 4.20rc5"
> -
> -CVE_STATUS[CVE-2018-18445] = "fixed-version: Fixed from version 4.19rc7"
> -
> -CVE_STATUS[CVE-2018-18559] = "fixed-version: Fixed from version 4.15rc2"
> -
> -# CVE-2018-18653 has no known resolution
> -
> -CVE_STATUS[CVE-2018-18690] = "fixed-version: Fixed from version 4.17rc4"
> -
> -CVE_STATUS[CVE-2018-18710] = "fixed-version: Fixed from version 4.20rc1"
> -
> -CVE_STATUS[CVE-2018-18955] = "fixed-version: Fixed from version 4.20rc2"
> -
> -CVE_STATUS[CVE-2018-19406] = "fixed-version: Fixed from version 4.20rc5"
> -
> -CVE_STATUS[CVE-2018-19407] = "fixed-version: Fixed from version 4.20rc5"
> -
> -CVE_STATUS[CVE-2018-19824] = "fixed-version: Fixed from version 4.20rc6"
> -
> -CVE_STATUS[CVE-2018-19854] = "fixed-version: Fixed from version 4.20rc3"
> -
> -CVE_STATUS[CVE-2018-19985] = "fixed-version: Fixed from version 4.20"
> -
> -CVE_STATUS[CVE-2018-20169] = "fixed-version: Fixed from version 4.20rc6"
> -
> -CVE_STATUS[CVE-2018-20449] = "fixed-version: Fixed from version 4.15rc2"
> -
> -CVE_STATUS[CVE-2018-20509] = "fixed-version: Fixed from version 4.14rc1"
> -
> -CVE_STATUS[CVE-2018-20510] = "fixed-version: Fixed from version 4.16rc3"
> -
> -CVE_STATUS[CVE-2018-20511] = "fixed-version: Fixed from version 4.19rc5"
> -
> -CVE_STATUS[CVE-2018-20669] = "fixed-version: Fixed from version 5.0rc1"
> -
> -CVE_STATUS[CVE-2018-20784] = "fixed-version: Fixed from version 5.0rc1"
> -
> -CVE_STATUS[CVE-2018-20836] = "fixed-version: Fixed from version 4.20rc1"
> -
> -CVE_STATUS[CVE-2018-20854] = "fixed-version: Fixed from version 4.20rc1"
> -
> -CVE_STATUS[CVE-2018-20855] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-20856] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-20961] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2018-20976] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-21008] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2018-25015] = "fixed-version: Fixed from version 4.15rc9"
> -
> -CVE_STATUS[CVE-2018-25020] = "fixed-version: Fixed from version 4.17rc7"
> -
> -# CVE-2018-3574 has no known resolution
> -
> -CVE_STATUS[CVE-2018-3620] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-3639] = "fixed-version: Fixed from version 4.17rc7"
> -
> -CVE_STATUS[CVE-2018-3646] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-3665] = "fixed-version: Fixed from version 3.7rc1"
> -
> -CVE_STATUS[CVE-2018-3693] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-5332] = "fixed-version: Fixed from version 4.15rc8"
> -
> -CVE_STATUS[CVE-2018-5333] = "fixed-version: Fixed from version 4.15rc8"
> -
> -CVE_STATUS[CVE-2018-5344] = "fixed-version: Fixed from version 4.15rc8"
> -
> -CVE_STATUS[CVE-2018-5390] = "fixed-version: Fixed from version 4.18rc7"
> -
> -CVE_STATUS[CVE-2018-5391] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-5703] = "fixed-version: Fixed from version 4.16rc5"
> -
> -CVE_STATUS[CVE-2018-5750] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2018-5803] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2018-5814] = "fixed-version: Fixed from version 4.17rc6"
> -
> -CVE_STATUS[CVE-2018-5848] = "fixed-version: Fixed from version 4.16rc1"
> -
> -# Skipping CVE-2018-5856, no affected_versions
> -
> -CVE_STATUS[CVE-2018-5873] = "fixed-version: Fixed from version 4.11rc8"
> -
> -CVE_STATUS[CVE-2018-5953] = "fixed-version: Fixed from version 4.15rc2"
> -
> -CVE_STATUS[CVE-2018-5995] = "fixed-version: Fixed from version 4.15rc2"
> -
> -CVE_STATUS[CVE-2018-6412] = "fixed-version: Fixed from version 4.16rc5"
> -
> -CVE_STATUS[CVE-2018-6554] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2018-6555] = "fixed-version: Fixed from version 4.17rc1"
> -
> -# CVE-2018-6559 has no known resolution
> -
> -CVE_STATUS[CVE-2018-6927] = "fixed-version: Fixed from version 4.15rc9"
> -
> -CVE_STATUS[CVE-2018-7191] = "fixed-version: Fixed from version 4.14rc6"
> -
> -CVE_STATUS[CVE-2018-7273] = "fixed-version: Fixed from version 4.15rc2"
> -
> -CVE_STATUS[CVE-2018-7480] = "fixed-version: Fixed from version 4.11rc1"
> -
> -CVE_STATUS[CVE-2018-7492] = "fixed-version: Fixed from version 4.15rc3"
> -
> -CVE_STATUS[CVE-2018-7566] = "fixed-version: Fixed from version 4.16rc2"
> -
> -CVE_STATUS[CVE-2018-7740] = "fixed-version: Fixed from version 4.16rc7"
> -
> -CVE_STATUS[CVE-2018-7754] = "fixed-version: Fixed from version 4.15rc2"
> -
> -CVE_STATUS[CVE-2018-7755] = "fixed-version: Fixed from version 4.19rc5"
> -
> -CVE_STATUS[CVE-2018-7757] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2018-7995] = "fixed-version: Fixed from version 4.16rc5"
> -
> -CVE_STATUS[CVE-2018-8043] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2018-8087] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2018-8781] = "fixed-version: Fixed from version 4.16rc7"
> -
> -CVE_STATUS[CVE-2018-8822] = "fixed-version: Fixed from version 4.16rc7"
> -
> -CVE_STATUS[CVE-2018-8897] = "fixed-version: Fixed from version 4.16rc7"
> -
> -CVE_STATUS[CVE-2018-9363] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2018-9385] = "fixed-version: Fixed from version 4.17rc3"
> -
> -CVE_STATUS[CVE-2018-9415] = "fixed-version: Fixed from version 4.17rc3"
> -
> -CVE_STATUS[CVE-2018-9422] = "fixed-version: Fixed from version 4.6rc1"
> -
> -CVE_STATUS[CVE-2018-9465] = "fixed-version: Fixed from version 4.15rc6"
> -
> -CVE_STATUS[CVE-2018-9516] = "fixed-version: Fixed from version 4.18rc5"
> -
> -CVE_STATUS[CVE-2018-9517] = "fixed-version: Fixed from version 4.14rc1"
> -
> -CVE_STATUS[CVE-2018-9518] = "fixed-version: Fixed from version 4.16rc3"
> -
> -CVE_STATUS[CVE-2018-9568] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2019-0136] = "fixed-version: Fixed from version 5.2rc6"
> -
> -CVE_STATUS[CVE-2019-0145] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-0146] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-0147] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-0148] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-0149] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-0154] = "fixed-version: Fixed from version 5.4rc8"
> -
> -CVE_STATUS[CVE-2019-0155] = "fixed-version: Fixed from version 5.4rc8"
> -
> -CVE_STATUS[CVE-2019-10124] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-10125] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-10126] = "fixed-version: Fixed from version 5.2rc6"
> -
> -# CVE-2019-10140 has no known resolution
> -
> -CVE_STATUS[CVE-2019-10142] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-10207] = "fixed-version: Fixed from version 5.3rc3"
> -
> -CVE_STATUS[CVE-2019-10220] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2019-10638] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-10639] = "fixed-version: Fixed from version 5.1rc4"
> -
> -CVE_STATUS[CVE-2019-11085] = "fixed-version: Fixed from version 5.0rc3"
> -
> -CVE_STATUS[CVE-2019-11091] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-11135] = "fixed-version: Fixed from version 5.4rc8"
> -
> -CVE_STATUS[CVE-2019-11190] = "fixed-version: Fixed from version 4.8rc5"
> -
> -CVE_STATUS[CVE-2019-11191] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-1125] = "fixed-version: Fixed from version 5.3rc4"
> -
> -CVE_STATUS[CVE-2019-11477] = "fixed-version: Fixed from version 5.2rc6"
> -
> -CVE_STATUS[CVE-2019-11478] = "fixed-version: Fixed from version 5.2rc6"
> -
> -CVE_STATUS[CVE-2019-11479] = "fixed-version: Fixed from version 5.2rc6"
> -
> -CVE_STATUS[CVE-2019-11486] = "fixed-version: Fixed from version 5.1rc4"
> -
> -CVE_STATUS[CVE-2019-11487] = "fixed-version: Fixed from version 5.1rc5"
> -
> -CVE_STATUS[CVE-2019-11599] = "fixed-version: Fixed from version 5.1rc6"
> -
> -CVE_STATUS[CVE-2019-11683] = "fixed-version: Fixed from version 5.1"
> -
> -CVE_STATUS[CVE-2019-11810] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-11811] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-11815] = "fixed-version: Fixed from version 5.1rc4"
> -
> -CVE_STATUS[CVE-2019-11833] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-11884] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-12378] = "fixed-version: Fixed from version 5.2rc3"
> -
> -CVE_STATUS[CVE-2019-12379] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-12380] = "fixed-version: Fixed from version 5.2rc3"
> -
> -CVE_STATUS[CVE-2019-12381] = "fixed-version: Fixed from version 5.2rc3"
> -
> -CVE_STATUS[CVE-2019-12382] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-12454] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-12455] = "fixed-version: Fixed from version 5.3rc1"
> -
> -# CVE-2019-12456 has no known resolution
> -
> -CVE_STATUS[CVE-2019-12614] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-12615] = "fixed-version: Fixed from version 5.2rc4"
> -
> -CVE_STATUS[CVE-2019-12817] = "fixed-version: Fixed from version 5.2rc7"
> -
> -CVE_STATUS[CVE-2019-12818] = "fixed-version: Fixed from version 5.0"
> -
> -CVE_STATUS[CVE-2019-12819] = "fixed-version: Fixed from version 5.0rc8"
> -
> -CVE_STATUS[CVE-2019-12881] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2019-12984] = "fixed-version: Fixed from version 5.2rc6"
> -
> -CVE_STATUS[CVE-2019-13233] = "fixed-version: Fixed from version 5.2rc4"
> -
> -CVE_STATUS[CVE-2019-13272] = "fixed-version: Fixed from version 5.2"
> -
> -CVE_STATUS[CVE-2019-13631] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-13648] = "fixed-version: Fixed from version 5.3rc2"
> -
> -CVE_STATUS[CVE-2019-14283] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-14284] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-14615] = "fixed-version: Fixed from version 5.5rc7"
> -
> -CVE_STATUS[CVE-2019-14763] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2019-14814] = "fixed-version: Fixed from version 5.3"
> -
> -CVE_STATUS[CVE-2019-14815] = "fixed-version: Fixed from version 5.3"
> -
> -CVE_STATUS[CVE-2019-14816] = "fixed-version: Fixed from version 5.3"
> -
> -CVE_STATUS[CVE-2019-14821] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-14835] = "fixed-version: Fixed from version 5.3"
> -
> -CVE_STATUS[CVE-2019-14895] = "fixed-version: Fixed from version 5.5rc3"
> -
> -CVE_STATUS[CVE-2019-14896] = "fixed-version: Fixed from version 5.5"
> -
> -CVE_STATUS[CVE-2019-14897] = "fixed-version: Fixed from version 5.5"
> -
> -# CVE-2019-14898 has no known resolution
> -
> -CVE_STATUS[CVE-2019-14901] = "fixed-version: Fixed from version 5.5rc3"
> -
> -CVE_STATUS[CVE-2019-15030] = "fixed-version: Fixed from version 5.3rc8"
> -
> -CVE_STATUS[CVE-2019-15031] = "fixed-version: Fixed from version 5.3rc8"
> -
> -CVE_STATUS[CVE-2019-15090] = "fixed-version: Fixed from version 5.2rc2"
> -
> -CVE_STATUS[CVE-2019-15098] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-15099] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-15117] = "fixed-version: Fixed from version 5.3rc5"
> -
> -CVE_STATUS[CVE-2019-15118] = "fixed-version: Fixed from version 5.3rc5"
> -
> -CVE_STATUS[CVE-2019-15211] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-15212] = "fixed-version: Fixed from version 5.2rc3"
> -
> -CVE_STATUS[CVE-2019-15213] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-15214] = "fixed-version: Fixed from version 5.1rc6"
> -
> -CVE_STATUS[CVE-2019-15215] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-15216] = "fixed-version: Fixed from version 5.1"
> -
> -CVE_STATUS[CVE-2019-15217] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-15218] = "fixed-version: Fixed from version 5.2rc3"
> -
> -CVE_STATUS[CVE-2019-15219] = "fixed-version: Fixed from version 5.2rc3"
> -
> -CVE_STATUS[CVE-2019-15220] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-15221] = "fixed-version: Fixed from version 5.2"
> -
> -CVE_STATUS[CVE-2019-15222] = "fixed-version: Fixed from version 5.3rc3"
> -
> -CVE_STATUS[CVE-2019-15223] = "fixed-version: Fixed from version 5.2rc3"
> -
> -# CVE-2019-15239 has no known resolution
> -
> -# CVE-2019-15290 has no known resolution
> -
> -CVE_STATUS[CVE-2019-15291] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-15292] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-15504] = "fixed-version: Fixed from version 5.3"
> -
> -CVE_STATUS[CVE-2019-15505] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-15538] = "fixed-version: Fixed from version 5.3rc6"
> -
> -CVE_STATUS[CVE-2019-15666] = "fixed-version: Fixed from version 5.1"
> -
> -# CVE-2019-15791 has no known resolution
> -
> -# CVE-2019-15792 has no known resolution
> -
> -# CVE-2019-15793 has no known resolution
> -
> -CVE_STATUS[CVE-2019-15794] = "fixed-version: Fixed from version 5.12"
> -
> -CVE_STATUS[CVE-2019-15807] = "fixed-version: Fixed from version 5.2rc3"
> -
> -# CVE-2019-15902 has no known resolution
> -
> -CVE_STATUS[CVE-2019-15916] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-15917] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-15918] = "fixed-version: Fixed from version 5.1rc6"
> -
> -CVE_STATUS[CVE-2019-15919] = "fixed-version: Fixed from version 5.1rc6"
> -
> -CVE_STATUS[CVE-2019-15920] = "fixed-version: Fixed from version 5.1rc6"
> -
> -CVE_STATUS[CVE-2019-15921] = "fixed-version: Fixed from version 5.1rc3"
> -
> -CVE_STATUS[CVE-2019-15922] = "fixed-version: Fixed from version 5.1rc4"
> -
> -CVE_STATUS[CVE-2019-15923] = "fixed-version: Fixed from version 5.1rc4"
> -
> -CVE_STATUS[CVE-2019-15924] = "fixed-version: Fixed from version 5.1rc4"
> -
> -CVE_STATUS[CVE-2019-15925] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-15926] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-15927] = "fixed-version: Fixed from version 5.0rc2"
> -
> -# CVE-2019-16089 has no known resolution
> -
> -CVE_STATUS[CVE-2019-16229] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-16230] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-16231] = "fixed-version: Fixed from version 5.4rc6"
> -
> -CVE_STATUS[CVE-2019-16232] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-16233] = "fixed-version: Fixed from version 5.4rc5"
> -
> -CVE_STATUS[CVE-2019-16234] = "fixed-version: Fixed from version 5.4rc4"
> -
> -CVE_STATUS[CVE-2019-16413] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-16714] = "fixed-version: Fixed from version 5.3rc7"
> -
> -CVE_STATUS[CVE-2019-16746] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2019-16921] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2019-16994] = "fixed-version: Fixed from version 5.0"
> -
> -CVE_STATUS[CVE-2019-16995] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-17052] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-17053] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-17054] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-17055] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-17056] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-17075] = "fixed-version: Fixed from version 5.4rc3"
> -
> -CVE_STATUS[CVE-2019-17133] = "fixed-version: Fixed from version 5.4rc4"
> -
> -CVE_STATUS[CVE-2019-17351] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-17666] = "fixed-version: Fixed from version 5.4rc6"
> -
> -CVE_STATUS[CVE-2019-18198] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-18282] = "fixed-version: Fixed from version 5.4rc6"
> -
> -CVE_STATUS[CVE-2019-18660] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-18675] = "fixed-version: Fixed from version 4.17rc5"
> -
> -# CVE-2019-18680 has no known resolution
> -
> -CVE_STATUS[CVE-2019-18683] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-18786] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-18805] = "fixed-version: Fixed from version 5.1rc7"
> -
> -CVE_STATUS[CVE-2019-18806] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2019-18807] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2019-18808] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-18809] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-18810] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2019-18811] = "fixed-version: Fixed from version 5.4rc7"
> -
> -CVE_STATUS[CVE-2019-18812] = "fixed-version: Fixed from version 5.4rc7"
> -
> -CVE_STATUS[CVE-2019-18813] = "fixed-version: Fixed from version 5.4rc6"
> -
> -CVE_STATUS[CVE-2019-18814] = "fixed-version: Fixed from version 5.7rc7"
> -
> -CVE_STATUS[CVE-2019-18885] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-19036] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19037] = "fixed-version: Fixed from version 5.5rc3"
> -
> -CVE_STATUS[CVE-2019-19039] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2019-19043] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19044] = "fixed-version: Fixed from version 5.4rc6"
> -
> -CVE_STATUS[CVE-2019-19045] = "fixed-version: Fixed from version 5.4rc6"
> -
> -CVE_STATUS[CVE-2019-19046] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19047] = "fixed-version: Fixed from version 5.4rc6"
> -
> -CVE_STATUS[CVE-2019-19048] = "fixed-version: Fixed from version 5.4rc3"
> -
> -CVE_STATUS[CVE-2019-19049] = "fixed-version: Fixed from version 5.4rc5"
> -
> -CVE_STATUS[CVE-2019-19050] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19051] = "fixed-version: Fixed from version 5.4rc6"
> -
> -CVE_STATUS[CVE-2019-19052] = "fixed-version: Fixed from version 5.4rc7"
> -
> -CVE_STATUS[CVE-2019-19053] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19054] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19055] = "fixed-version: Fixed from version 5.4rc4"
> -
> -CVE_STATUS[CVE-2019-19056] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19057] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19058] = "fixed-version: Fixed from version 5.4rc4"
> -
> -CVE_STATUS[CVE-2019-19059] = "fixed-version: Fixed from version 5.4rc4"
> -
> -CVE_STATUS[CVE-2019-19060] = "fixed-version: Fixed from version 5.4rc3"
> -
> -CVE_STATUS[CVE-2019-19061] = "fixed-version: Fixed from version 5.4rc3"
> -
> -CVE_STATUS[CVE-2019-19062] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19063] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19064] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19065] = "fixed-version: Fixed from version 5.4rc3"
> -
> -CVE_STATUS[CVE-2019-19066] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19067] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2019-19068] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19069] = "fixed-version: Fixed from version 5.4rc3"
> -
> -CVE_STATUS[CVE-2019-19070] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19071] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19072] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19073] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19074] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19075] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2019-19076] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19077] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19078] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19079] = "fixed-version: Fixed from version 5.3"
> -
> -CVE_STATUS[CVE-2019-19080] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19081] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19082] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19083] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2019-19227] = "fixed-version: Fixed from version 5.1rc3"
> -
> -CVE_STATUS[CVE-2019-19241] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19252] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19318] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19319] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-19332] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19338] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19377] = "fixed-version: Fixed from version 5.7rc1"
> -
> -# CVE-2019-19378 has no known resolution
> -
> -CVE_STATUS[CVE-2019-19447] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19448] = "fixed-version: Fixed from version 5.9rc1"
> -
> -CVE_STATUS[CVE-2019-19449] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2019-19462] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2019-19523] = "fixed-version: Fixed from version 5.4rc3"
> -
> -CVE_STATUS[CVE-2019-19524] = "fixed-version: Fixed from version 5.4rc8"
> -
> -CVE_STATUS[CVE-2019-19525] = "fixed-version: Fixed from version 5.4rc2"
> -
> -CVE_STATUS[CVE-2019-19526] = "fixed-version: Fixed from version 5.4rc4"
> -
> -CVE_STATUS[CVE-2019-19527] = "fixed-version: Fixed from version 5.3rc4"
> -
> -CVE_STATUS[CVE-2019-19528] = "fixed-version: Fixed from version 5.4rc3"
> -
> -CVE_STATUS[CVE-2019-19529] = "fixed-version: Fixed from version 5.4rc7"
> -
> -CVE_STATUS[CVE-2019-19530] = "fixed-version: Fixed from version 5.3rc5"
> -
> -CVE_STATUS[CVE-2019-19531] = "fixed-version: Fixed from version 5.3rc4"
> -
> -CVE_STATUS[CVE-2019-19532] = "fixed-version: Fixed from version 5.4rc6"
> -
> -CVE_STATUS[CVE-2019-19533] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19534] = "fixed-version: Fixed from version 5.4rc7"
> -
> -CVE_STATUS[CVE-2019-19535] = "fixed-version: Fixed from version 5.3rc4"
> -
> -CVE_STATUS[CVE-2019-19536] = "fixed-version: Fixed from version 5.3rc4"
> -
> -CVE_STATUS[CVE-2019-19537] = "fixed-version: Fixed from version 5.3rc5"
> -
> -CVE_STATUS[CVE-2019-19543] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-19602] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19767] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2019-19768] = "fixed-version: Fixed from version 5.6rc4"
> -
> -CVE_STATUS[CVE-2019-19769] = "fixed-version: Fixed from version 5.6rc5"
> -
> -CVE_STATUS[CVE-2019-19770] = "fixed-version: Fixed from version 5.9rc1"
> -
> -CVE_STATUS[CVE-2019-19807] = "fixed-version: Fixed from version 5.4rc7"
> -
> -CVE_STATUS[CVE-2019-19813] = "fixed-version: Fixed from version 5.2rc1"
> -
> -# CVE-2019-19814 has no known resolution
> -
> -CVE_STATUS[CVE-2019-19815] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2019-19816] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-19922] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-19927] = "fixed-version: Fixed from version 5.1rc6"
> -
> -CVE_STATUS[CVE-2019-19947] = "fixed-version: Fixed from version 5.5rc3"
> -
> -CVE_STATUS[CVE-2019-19965] = "fixed-version: Fixed from version 5.5rc2"
> -
> -CVE_STATUS[CVE-2019-19966] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-1999] = "fixed-version: Fixed from version 5.1rc3"
> -
> -CVE_STATUS[CVE-2019-20054] = "fixed-version: Fixed from version 5.1rc3"
> -
> -CVE_STATUS[CVE-2019-20095] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-20096] = "fixed-version: Fixed from version 5.1rc4"
> -
> -CVE_STATUS[CVE-2019-2024] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2019-2025] = "fixed-version: Fixed from version 4.20rc5"
> -
> -CVE_STATUS[CVE-2019-20422] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-2054] = "fixed-version: Fixed from version 4.8rc1"
> -
> -CVE_STATUS[CVE-2019-20636] = "fixed-version: Fixed from version 5.5rc6"
> -
> -# CVE-2019-20794 has no known resolution
> -
> -CVE_STATUS[CVE-2019-20806] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-20810] = "fixed-version: Fixed from version 5.6rc1"
> -
> -CVE_STATUS[CVE-2019-20811] = "fixed-version: Fixed from version 5.1rc3"
> -
> -CVE_STATUS[CVE-2019-20812] = "fixed-version: Fixed from version 5.5rc3"
> -
> -CVE_STATUS[CVE-2019-20908] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2019-20934] = "fixed-version: Fixed from version 5.3rc2"
> -
> -CVE_STATUS[CVE-2019-2101] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-2181] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-2182] = "fixed-version: Fixed from version 4.16rc3"
> -
> -CVE_STATUS[CVE-2019-2213] = "fixed-version: Fixed from version 5.2rc6"
> -
> -CVE_STATUS[CVE-2019-2214] = "fixed-version: Fixed from version 5.3rc2"
> -
> -CVE_STATUS[CVE-2019-2215] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2019-25044] = "fixed-version: Fixed from version 5.2rc4"
> -
> -CVE_STATUS[CVE-2019-25045] = "fixed-version: Fixed from version 5.1"
> -
> -CVE_STATUS[CVE-2019-25160] = "fixed-version: Fixed from version 5.0"
> -
> -CVE_STATUS[CVE-2019-25162] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2019-3016] = "fixed-version: Fixed from version 5.6rc1"
> -
> -CVE_STATUS[CVE-2019-3459] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-3460] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-3701] = "fixed-version: Fixed from version 5.0rc3"
> -
> -CVE_STATUS[CVE-2019-3819] = "fixed-version: Fixed from version 5.0rc6"
> -
> -CVE_STATUS[CVE-2019-3837] = "fixed-version: Fixed from version 3.18rc1"
> -
> -CVE_STATUS[CVE-2019-3846] = "fixed-version: Fixed from version 5.2rc6"
> -
> -CVE_STATUS[CVE-2019-3874] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-3882] = "fixed-version: Fixed from version 5.1rc4"
> -
> -CVE_STATUS[CVE-2019-3887] = "fixed-version: Fixed from version 5.1rc4"
> -
> -CVE_STATUS[CVE-2019-3892] = "fixed-version: Fixed from version 5.1rc6"
> -
> -CVE_STATUS[CVE-2019-3896] = "fixed-version: Fixed from version 2.6.35rc1"
> -
> -CVE_STATUS[CVE-2019-3900] = "fixed-version: Fixed from version 5.2rc4"
> -
> -CVE_STATUS[CVE-2019-3901] = "fixed-version: Fixed from version 4.6rc6"
> -
> -CVE_STATUS[CVE-2019-5108] = "fixed-version: Fixed from version 5.3"
> -
> -# Skipping CVE-2019-5489, no affected_versions
> -
> -CVE_STATUS[CVE-2019-6133] = "fixed-version: Fixed from version 5.0rc2"
> -
> -CVE_STATUS[CVE-2019-6974] = "fixed-version: Fixed from version 5.0rc6"
> -
> -CVE_STATUS[CVE-2019-7221] = "fixed-version: Fixed from version 5.0rc6"
> -
> -CVE_STATUS[CVE-2019-7222] = "fixed-version: Fixed from version 5.0rc6"
> -
> -CVE_STATUS[CVE-2019-7308] = "fixed-version: Fixed from version 5.0rc3"
> -
> -CVE_STATUS[CVE-2019-8912] = "fixed-version: Fixed from version 5.0rc8"
> -
> -CVE_STATUS[CVE-2019-8956] = "fixed-version: Fixed from version 5.0rc6"
> -
> -CVE_STATUS[CVE-2019-8980] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-9003] = "fixed-version: Fixed from version 5.0rc4"
> -
> -CVE_STATUS[CVE-2019-9162] = "fixed-version: Fixed from version 5.0rc7"
> -
> -CVE_STATUS[CVE-2019-9213] = "fixed-version: Fixed from version 5.0"
> -
> -CVE_STATUS[CVE-2019-9245] = "fixed-version: Fixed from version 5.0rc1"
> -
> -CVE_STATUS[CVE-2019-9444] = "fixed-version: Fixed from version 4.15rc2"
> -
> -CVE_STATUS[CVE-2019-9445] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-9453] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2019-9454] = "fixed-version: Fixed from version 4.15rc9"
> -
> -CVE_STATUS[CVE-2019-9455] = "fixed-version: Fixed from version 5.0rc1"
> -
> -CVE_STATUS[CVE-2019-9456] = "fixed-version: Fixed from version 4.16rc6"
> -
> -CVE_STATUS[CVE-2019-9457] = "fixed-version: Fixed from version 4.13rc1"
> -
> -CVE_STATUS[CVE-2019-9458] = "fixed-version: Fixed from version 4.19rc7"
> -
> -CVE_STATUS[CVE-2019-9466] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-9500] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-9503] = "fixed-version: Fixed from version 5.1rc1"
> -
> -CVE_STATUS[CVE-2019-9506] = "fixed-version: Fixed from version 5.2"
> -
> -CVE_STATUS[CVE-2019-9857] = "fixed-version: Fixed from version 5.1rc2"
> -
> -CVE_STATUS[CVE-2020-0009] = "fixed-version: Fixed from version 5.6rc3"
> -
> -CVE_STATUS[CVE-2020-0030] = "fixed-version: Fixed from version 4.16rc3"
> -
> -CVE_STATUS[CVE-2020-0041] = "fixed-version: Fixed from version 5.5rc2"
> -
> -CVE_STATUS[CVE-2020-0066] = "fixed-version: Fixed from version 4.3rc7"
> -
> -CVE_STATUS[CVE-2020-0067] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2020-0110] = "fixed-version: Fixed from version 5.6rc2"
> -
> -CVE_STATUS[CVE-2020-0255] = "fixed-version: Fixed from version 5.7rc4"
> -
> -CVE_STATUS[CVE-2020-0305] = "fixed-version: Fixed from version 5.5rc6"
> -
> -# CVE-2020-0347 has no known resolution
> -
> -CVE_STATUS[CVE-2020-0404] = "fixed-version: Fixed from version 5.6rc1"
> -
> -CVE_STATUS[CVE-2020-0423] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-0427] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2020-0429] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2020-0430] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2020-0431] = "fixed-version: Fixed from version 5.5rc6"
> -
> -CVE_STATUS[CVE-2020-0432] = "fixed-version: Fixed from version 5.6rc1"
> -
> -CVE_STATUS[CVE-2020-0433] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2020-0435] = "fixed-version: Fixed from version 4.19rc1"
> -
> -CVE_STATUS[CVE-2020-0444] = "fixed-version: Fixed from version 5.6rc4"
> -
> -CVE_STATUS[CVE-2020-0465] = "fixed-version: Fixed from version 5.9rc4"
> -
> -CVE_STATUS[CVE-2020-0466] = "fixed-version: Fixed from version 5.9rc2"
> -
> -CVE_STATUS[CVE-2020-0543] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-10135] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-10690] = "fixed-version: Fixed from version 5.5rc5"
> -
> -# CVE-2020-10708 has no known resolution
> -
> -CVE_STATUS[CVE-2020-10711] = "fixed-version: Fixed from version 5.7rc6"
> -
> -CVE_STATUS[CVE-2020-10720] = "fixed-version: Fixed from version 5.2rc3"
> -
> -CVE_STATUS[CVE-2020-10732] = "fixed-version: Fixed from version 5.7"
> -
> -CVE_STATUS[CVE-2020-10742] = "fixed-version: Fixed from version 3.16rc1"
> -
> -CVE_STATUS[CVE-2020-10751] = "fixed-version: Fixed from version 5.7rc4"
> -
> -CVE_STATUS[CVE-2020-10757] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-10766] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-10767] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-10768] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-10769] = "fixed-version: Fixed from version 5.0rc3"
> -
> -CVE_STATUS[CVE-2020-10773] = "fixed-version: Fixed from version 5.4rc6"
> -
> -# CVE-2020-10774 has no known resolution
> -
> -CVE_STATUS[CVE-2020-10781] = "fixed-version: Fixed from version 5.8rc6"
> -
> -CVE_STATUS[CVE-2020-10942] = "fixed-version: Fixed from version 5.6rc4"
> -
> -CVE_STATUS[CVE-2020-11494] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-11565] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-11608] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-11609] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-11668] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-11669] = "fixed-version: Fixed from version 5.2rc1"
> -
> -# CVE-2020-11725 has no known resolution
> -
> -CVE_STATUS[CVE-2020-11884] = "fixed-version: Fixed from version 5.7rc4"
> -
> -# CVE-2020-11935 has no known resolution
> -
> -CVE_STATUS[CVE-2020-12114] = "fixed-version: Fixed from version 5.3rc1"
> -
> -CVE_STATUS[CVE-2020-12351] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-12352] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-12362] = "fixed-version: Fixed from version 5.11rc1"
> -
> -CVE_STATUS[CVE-2020-12363] = "fixed-version: Fixed from version 5.11rc1"
> -
> -CVE_STATUS[CVE-2020-12364] = "fixed-version: Fixed from version 5.11rc1"
> -
> -CVE_STATUS[CVE-2020-12464] = "fixed-version: Fixed from version 5.7rc3"
> -
> -CVE_STATUS[CVE-2020-12465] = "fixed-version: Fixed from version 5.6rc6"
> -
> -CVE_STATUS[CVE-2020-12652] = "fixed-version: Fixed from version 5.5rc7"
> -
> -CVE_STATUS[CVE-2020-12653] = "fixed-version: Fixed from version 5.6rc1"
> -
> -CVE_STATUS[CVE-2020-12654] = "fixed-version: Fixed from version 5.6rc1"
> -
> -CVE_STATUS[CVE-2020-12655] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-12656] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-12657] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-12659] = "fixed-version: Fixed from version 5.7rc2"
> -
> -CVE_STATUS[CVE-2020-12768] = "fixed-version: Fixed from version 5.6rc4"
> -
> -CVE_STATUS[CVE-2020-12769] = "fixed-version: Fixed from version 5.5rc6"
> -
> -CVE_STATUS[CVE-2020-12770] = "fixed-version: Fixed from version 5.7rc3"
> -
> -CVE_STATUS[CVE-2020-12771] = "fixed-version: Fixed from version 5.8rc2"
> -
> -CVE_STATUS[CVE-2020-12826] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-12888] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-12912] = "fixed-version: Fixed from version 5.10rc4"
> -
> -CVE_STATUS[CVE-2020-13143] = "fixed-version: Fixed from version 5.7rc6"
> -
> -CVE_STATUS[CVE-2020-13974] = "fixed-version: Fixed from version 5.8rc1"
> -
> -# CVE-2020-14304 has no known resolution
> -
> -CVE_STATUS[CVE-2020-14305] = "fixed-version: Fixed from version 4.12rc1"
> -
> -CVE_STATUS[CVE-2020-14314] = "fixed-version: Fixed from version 5.9rc2"
> -
> -CVE_STATUS[CVE-2020-14331] = "fixed-version: Fixed from version 5.9rc1"
> -
> -CVE_STATUS[CVE-2020-14351] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-14353] = "fixed-version: Fixed from version 4.14rc3"
> -
> -CVE_STATUS[CVE-2020-14356] = "fixed-version: Fixed from version 5.8rc5"
> -
> -CVE_STATUS[CVE-2020-14381] = "fixed-version: Fixed from version 5.6rc6"
> -
> -CVE_STATUS[CVE-2020-14385] = "fixed-version: Fixed from version 5.9rc4"
> -
> -CVE_STATUS[CVE-2020-14386] = "fixed-version: Fixed from version 5.9rc4"
> -
> -CVE_STATUS[CVE-2020-14390] = "fixed-version: Fixed from version 5.9rc6"
> -
> -CVE_STATUS[CVE-2020-14416] = "fixed-version: Fixed from version 5.5"
> -
> -CVE_STATUS[CVE-2020-15393] = "fixed-version: Fixed from version 5.8rc3"
> -
> -CVE_STATUS[CVE-2020-15436] = "fixed-version: Fixed from version 5.8rc2"
> -
> -CVE_STATUS[CVE-2020-15437] = "fixed-version: Fixed from version 5.8rc7"
> -
> -CVE_STATUS[CVE-2020-15780] = "fixed-version: Fixed from version 5.8rc3"
> -
> -# CVE-2020-15802 has no known resolution
> -
> -CVE_STATUS[CVE-2020-15852] = "fixed-version: Fixed from version 5.8rc6"
> -
> -CVE_STATUS[CVE-2020-16119] = "fixed-version: Fixed from version 5.15rc2"
> -
> -CVE_STATUS[CVE-2020-16120] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-16166] = "fixed-version: Fixed from version 5.8"
> -
> -CVE_STATUS[CVE-2020-1749] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2020-24394] = "fixed-version: Fixed from version 5.8rc4"
> -
> -CVE_STATUS[CVE-2020-24490] = "fixed-version: Fixed from version 5.8"
> -
> -# CVE-2020-24502 has no known resolution
> -
> -# CVE-2020-24503 has no known resolution
> -
> -CVE_STATUS[CVE-2020-24504] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2020-24586] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2020-24587] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2020-24588] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2020-25211] = "fixed-version: Fixed from version 5.9rc7"
> -
> -CVE_STATUS[CVE-2020-25212] = "fixed-version: Fixed from version 5.9rc1"
> -
> -# CVE-2020-25220 has no known resolution
> -
> -CVE_STATUS[CVE-2020-25221] = "fixed-version: Fixed from version 5.9rc4"
> -
> -CVE_STATUS[CVE-2020-25284] = "fixed-version: Fixed from version 5.9rc5"
> -
> -CVE_STATUS[CVE-2020-25285] = "fixed-version: Fixed from version 5.9rc4"
> -
> -CVE_STATUS[CVE-2020-25639] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2020-25641] = "fixed-version: Fixed from version 5.9rc4"
> -
> -CVE_STATUS[CVE-2020-25643] = "fixed-version: Fixed from version 5.9rc7"
> -
> -CVE_STATUS[CVE-2020-25645] = "fixed-version: Fixed from version 5.9rc7"
> -
> -CVE_STATUS[CVE-2020-25656] = "fixed-version: Fixed from version 5.10rc2"
> -
> -# CVE-2020-25661 has no known resolution
> -
> -# CVE-2020-25662 has no known resolution
> -
> -CVE_STATUS[CVE-2020-25668] = "fixed-version: Fixed from version 5.10rc3"
> -
> -CVE_STATUS[CVE-2020-25669] = "fixed-version: Fixed from version 5.10rc5"
> -
> -CVE_STATUS[CVE-2020-25670] = "fixed-version: Fixed from version 5.12rc7"
> -
> -CVE_STATUS[CVE-2020-25671] = "fixed-version: Fixed from version 5.12rc7"
> -
> -CVE_STATUS[CVE-2020-25672] = "fixed-version: Fixed from version 5.12rc7"
> -
> -CVE_STATUS[CVE-2020-25673] = "fixed-version: Fixed from version 5.12rc7"
> -
> -CVE_STATUS[CVE-2020-25704] = "fixed-version: Fixed from version 5.10rc3"
> -
> -CVE_STATUS[CVE-2020-25705] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-26088] = "fixed-version: Fixed from version 5.9rc1"
> -
> -CVE_STATUS[CVE-2020-26139] = "fixed-version: Fixed from version 5.13rc4"
> -
> -# CVE-2020-26140 has no known resolution
> -
> -CVE_STATUS[CVE-2020-26141] = "fixed-version: Fixed from version 5.13rc4"
> -
> -# CVE-2020-26142 has no known resolution
> -
> -# CVE-2020-26143 has no known resolution
> -
> -CVE_STATUS[CVE-2020-26145] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2020-26147] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2020-26541] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-26555] = "fixed-version: Fixed from version 5.13rc1"
> -
> -# CVE-2020-26556 has no known resolution
> -
> -# CVE-2020-26557 has no known resolution
> -
> -CVE_STATUS[CVE-2020-26558] = "fixed-version: Fixed from version 5.13rc1"
> -
> -# CVE-2020-26559 has no known resolution
> -
> -# CVE-2020-26560 has no known resolution
> -
> -CVE_STATUS[CVE-2020-27066] = "fixed-version: Fixed from version 5.6"
> -
> -CVE_STATUS[CVE-2020-27067] = "fixed-version: Fixed from version 4.14rc4"
> -
> -CVE_STATUS[CVE-2020-27068] = "fixed-version: Fixed from version 5.6rc2"
> -
> -CVE_STATUS[CVE-2020-27152] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-27170] = "fixed-version: Fixed from version 5.12rc5"
> -
> -CVE_STATUS[CVE-2020-27171] = "fixed-version: Fixed from version 5.12rc5"
> -
> -CVE_STATUS[CVE-2020-27194] = "fixed-version: Fixed from version 5.9"
> -
> -CVE_STATUS[CVE-2020-2732] = "fixed-version: Fixed from version 5.6rc4"
> -
> -CVE_STATUS[CVE-2020-27418] = "fixed-version: Fixed from version 5.6rc5"
> -
> -CVE_STATUS[CVE-2020-27673] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-27675] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-27777] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-27784] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-27786] = "fixed-version: Fixed from version 5.7rc6"
> -
> -CVE_STATUS[CVE-2020-27815] = "fixed-version: Fixed from version 5.11rc1"
> -
> -CVE_STATUS[CVE-2020-27820] = "fixed-version: Fixed from version 5.16rc1"
> -
> -CVE_STATUS[CVE-2020-27825] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-27830] = "fixed-version: Fixed from version 5.10rc7"
> -
> -CVE_STATUS[CVE-2020-27835] = "fixed-version: Fixed from version 5.10rc6"
> -
> -CVE_STATUS[CVE-2020-28097] = "fixed-version: Fixed from version 5.9rc6"
> -
> -CVE_STATUS[CVE-2020-28374] = "fixed-version: Fixed from version 5.11rc4"
> -
> -CVE_STATUS[CVE-2020-28588] = "fixed-version: Fixed from version 5.10rc7"
> -
> -CVE_STATUS[CVE-2020-28915] = "fixed-version: Fixed from version 5.9"
> -
> -CVE_STATUS[CVE-2020-28941] = "fixed-version: Fixed from version 5.10rc5"
> -
> -CVE_STATUS[CVE-2020-28974] = "fixed-version: Fixed from version 5.10rc3"
> -
> -CVE_STATUS[CVE-2020-29368] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-29369] = "fixed-version: Fixed from version 5.8rc7"
> -
> -CVE_STATUS[CVE-2020-29370] = "fixed-version: Fixed from version 5.6rc7"
> -
> -CVE_STATUS[CVE-2020-29371] = "fixed-version: Fixed from version 5.9rc2"
> -
> -CVE_STATUS[CVE-2020-29372] = "fixed-version: Fixed from version 5.7rc3"
> -
> -CVE_STATUS[CVE-2020-29373] = "fixed-version: Fixed from version 5.6rc2"
> -
> -CVE_STATUS[CVE-2020-29374] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-29534] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-29568] = "fixed-version: Fixed from version 5.11rc1"
> -
> -CVE_STATUS[CVE-2020-29569] = "fixed-version: Fixed from version 5.11rc1"
> -
> -CVE_STATUS[CVE-2020-29660] = "fixed-version: Fixed from version 5.10rc7"
> -
> -CVE_STATUS[CVE-2020-29661] = "fixed-version: Fixed from version 5.10rc7"
> -
> -CVE_STATUS[CVE-2020-35499] = "fixed-version: Fixed from version 5.11rc1"
> -
> -# CVE-2020-35501 has no known resolution
> -
> -CVE_STATUS[CVE-2020-35508] = "fixed-version: Fixed from version 5.10rc3"
> -
> -CVE_STATUS[CVE-2020-35513] = "fixed-version: Fixed from version 4.17rc1"
> -
> -CVE_STATUS[CVE-2020-35519] = "fixed-version: Fixed from version 5.10rc7"
> -
> -CVE_STATUS[CVE-2020-36158] = "fixed-version: Fixed from version 5.11rc1"
> -
> -CVE_STATUS[CVE-2020-36310] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-36311] = "fixed-version: Fixed from version 5.9rc5"
> -
> -CVE_STATUS[CVE-2020-36312] = "fixed-version: Fixed from version 5.9rc5"
> -
> -CVE_STATUS[CVE-2020-36313] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-36322] = "fixed-version: Fixed from version 5.11rc1"
> -
> -CVE_STATUS[CVE-2020-36385] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2020-36386] = "fixed-version: Fixed from version 5.9rc1"
> -
> -CVE_STATUS[CVE-2020-36387] = "fixed-version: Fixed from version 5.9rc1"
> -
> -CVE_STATUS[CVE-2020-36516] = "fixed-version: Fixed from version 5.17rc2"
> -
> -CVE_STATUS[CVE-2020-36557] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-36558] = "fixed-version: Fixed from version 5.6rc3"
> -
> -CVE_STATUS[CVE-2020-36691] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2020-36694] = "fixed-version: Fixed from version 5.10"
> -
> -CVE_STATUS[CVE-2020-36766] = "fixed-version: Fixed from version 5.9rc1"
> -
> -CVE_STATUS[CVE-2020-36775] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-36776] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36777] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36778] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36779] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36780] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36781] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36782] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36783] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36784] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36785] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36786] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-36787] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2020-3702] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2020-4788] = "fixed-version: Fixed from version 5.10rc5"
> -
> -CVE_STATUS[CVE-2020-7053] = "fixed-version: Fixed from version 5.2rc1"
> -
> -CVE_STATUS[CVE-2020-8428] = "fixed-version: Fixed from version 5.5"
> -
> -CVE_STATUS[CVE-2020-8647] = "fixed-version: Fixed from version 5.6rc5"
> -
> -CVE_STATUS[CVE-2020-8648] = "fixed-version: Fixed from version 5.6rc3"
> -
> -CVE_STATUS[CVE-2020-8649] = "fixed-version: Fixed from version 5.6rc5"
> -
> -CVE_STATUS[CVE-2020-8694] = "fixed-version: Fixed from version 5.10rc4"
> -
> -# CVE-2020-8832 has no known resolution
> -
> -CVE_STATUS[CVE-2020-8834] = "fixed-version: Fixed from version 4.18rc1"
> -
> -CVE_STATUS[CVE-2020-8835] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2020-8992] = "fixed-version: Fixed from version 5.6rc2"
> -
> -CVE_STATUS[CVE-2020-9383] = "fixed-version: Fixed from version 5.6rc4"
> -
> -CVE_STATUS[CVE-2020-9391] = "fixed-version: Fixed from version 5.6rc3"
> -
> -CVE_STATUS[CVE-2021-0129] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-0342] = "fixed-version: Fixed from version 5.8rc1"
> -
> -# CVE-2021-0399 has no known resolution
> -
> -CVE_STATUS[CVE-2021-0447] = "fixed-version: Fixed from version 4.15rc1"
> -
> -CVE_STATUS[CVE-2021-0448] = "fixed-version: Fixed from version 5.9rc7"
> -
> -CVE_STATUS[CVE-2021-0512] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2021-0605] = "fixed-version: Fixed from version 5.8"
> -
> -# CVE-2021-0606 has no known resolution
> -
> -# CVE-2021-0695 has no known resolution
> -
> -CVE_STATUS[CVE-2021-0707] = "fixed-version: Fixed from version 5.11rc3"
> -
> -CVE_STATUS[CVE-2021-0920] = "fixed-version: Fixed from version 5.14rc4"
> -
> -# CVE-2021-0924 has no known resolution
> -
> -CVE_STATUS[CVE-2021-0929] = "fixed-version: Fixed from version 5.6rc1"
> -
> -CVE_STATUS[CVE-2021-0935] = "fixed-version: Fixed from version 4.16rc7"
> -
> -# CVE-2021-0936 has no known resolution
> -
> -CVE_STATUS[CVE-2021-0937] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-0938] = "fixed-version: Fixed from version 5.10rc4"
> -
> -CVE_STATUS[CVE-2021-0941] = "fixed-version: Fixed from version 5.12rc1"
> -
> -# CVE-2021-0961 has no known resolution
> -
> -CVE_STATUS[CVE-2021-1048] = "fixed-version: Fixed from version 5.9rc4"
> -
> -CVE_STATUS[CVE-2021-20177] = "fixed-version: Fixed from version 5.5rc1"
> -
> -CVE_STATUS[CVE-2021-20194] = "fixed-version: Fixed from version 5.10rc1"
> -
> -# CVE-2021-20219 has no known resolution
> -
> -CVE_STATUS[CVE-2021-20226] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2021-20239] = "fixed-version: Fixed from version 5.9rc1"
> -
> -CVE_STATUS[CVE-2021-20261] = "fixed-version: Fixed from version 4.5rc5"
> -
> -CVE_STATUS[CVE-2021-20265] = "fixed-version: Fixed from version 4.5rc3"
> -
> -CVE_STATUS[CVE-2021-20268] = "fixed-version: Fixed from version 5.11rc5"
> -
> -CVE_STATUS[CVE-2021-20292] = "fixed-version: Fixed from version 5.9rc1"
> -
> -CVE_STATUS[CVE-2021-20317] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2021-20320] = "fixed-version: Fixed from version 5.15rc3"
> -
> -CVE_STATUS[CVE-2021-20321] = "fixed-version: Fixed from version 5.15rc5"
> -
> -CVE_STATUS[CVE-2021-20322] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2021-21781] = "fixed-version: Fixed from version 5.11rc7"
> -
> -CVE_STATUS[CVE-2021-22543] = "fixed-version: Fixed from version 5.13"
> -
> -CVE_STATUS[CVE-2021-22555] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-22600] = "fixed-version: Fixed from version 5.16rc6"
> -
> -CVE_STATUS[CVE-2021-23133] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-23134] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-26401] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2021-26708] = "fixed-version: Fixed from version 5.11rc7"
> -
> -CVE_STATUS[CVE-2021-26930] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2021-26931] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2021-26932] = "fixed-version: Fixed from version 5.12rc1"
> -
> -# CVE-2021-26934 has no known resolution
> -
> -CVE_STATUS[CVE-2021-27363] = "fixed-version: Fixed from version 5.12rc2"
> -
> -CVE_STATUS[CVE-2021-27364] = "fixed-version: Fixed from version 5.12rc2"
> -
> -CVE_STATUS[CVE-2021-27365] = "fixed-version: Fixed from version 5.12rc2"
> -
> -CVE_STATUS[CVE-2021-28038] = "fixed-version: Fixed from version 5.12rc2"
> -
> -CVE_STATUS[CVE-2021-28039] = "fixed-version: Fixed from version 5.12rc2"
> -
> -CVE_STATUS[CVE-2021-28375] = "fixed-version: Fixed from version 5.12rc3"
> -
> -CVE_STATUS[CVE-2021-28660] = "fixed-version: Fixed from version 5.12rc3"
> -
> -CVE_STATUS[CVE-2021-28688] = "fixed-version: Fixed from version 5.12rc6"
> -
> -CVE_STATUS[CVE-2021-28691] = "fixed-version: Fixed from version 5.13rc6"
> -
> -CVE_STATUS[CVE-2021-28711] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-28712] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-28713] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-28714] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-28715] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-28950] = "fixed-version: Fixed from version 5.12rc4"
> -
> -CVE_STATUS[CVE-2021-28951] = "fixed-version: Fixed from version 5.12rc2"
> -
> -CVE_STATUS[CVE-2021-28952] = "fixed-version: Fixed from version 5.12rc4"
> -
> -CVE_STATUS[CVE-2021-28964] = "fixed-version: Fixed from version 5.12rc4"
> -
> -CVE_STATUS[CVE-2021-28971] = "fixed-version: Fixed from version 5.12rc4"
> -
> -CVE_STATUS[CVE-2021-28972] = "fixed-version: Fixed from version 5.12rc4"
> -
> -CVE_STATUS[CVE-2021-29154] = "fixed-version: Fixed from version 5.12rc7"
> -
> -CVE_STATUS[CVE-2021-29155] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-29264] = "fixed-version: Fixed from version 5.12rc3"
> -
> -CVE_STATUS[CVE-2021-29265] = "fixed-version: Fixed from version 5.12rc3"
> -
> -CVE_STATUS[CVE-2021-29266] = "fixed-version: Fixed from version 5.12rc4"
> -
> -CVE_STATUS[CVE-2021-29646] = "fixed-version: Fixed from version 5.12rc5"
> -
> -CVE_STATUS[CVE-2021-29647] = "fixed-version: Fixed from version 5.12rc5"
> -
> -CVE_STATUS[CVE-2021-29648] = "fixed-version: Fixed from version 5.12rc5"
> -
> -CVE_STATUS[CVE-2021-29649] = "fixed-version: Fixed from version 5.12rc5"
> -
> -CVE_STATUS[CVE-2021-29650] = "fixed-version: Fixed from version 5.12rc5"
> -
> -CVE_STATUS[CVE-2021-29657] = "fixed-version: Fixed from version 5.12rc6"
> -
> -CVE_STATUS[CVE-2021-30002] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2021-30178] = "fixed-version: Fixed from version 5.12rc2"
> -
> -CVE_STATUS[CVE-2021-31440] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-3178] = "fixed-version: Fixed from version 5.11rc5"
> -
> -CVE_STATUS[CVE-2021-31829] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-31916] = "fixed-version: Fixed from version 5.12rc5"
> -
> -CVE_STATUS[CVE-2021-32078] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-32399] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-32606] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-33033] = "fixed-version: Fixed from version 5.12rc3"
> -
> -CVE_STATUS[CVE-2021-33034] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-33061] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2021-33098] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-33135] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2021-33200] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-3347] = "fixed-version: Fixed from version 5.11rc6"
> -
> -CVE_STATUS[CVE-2021-3348] = "fixed-version: Fixed from version 5.11rc6"
> -
> -CVE_STATUS[CVE-2021-33624] = "fixed-version: Fixed from version 5.13rc7"
> -
> -CVE_STATUS[CVE-2021-33630] = "fixed-version: Fixed from version 5.4rc1"
> -
> -CVE_STATUS[CVE-2021-33631] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2021-33655] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2021-33656] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2021-33909] = "fixed-version: Fixed from version 5.14rc3"
> -
> -CVE_STATUS[CVE-2021-3411] = "fixed-version: Fixed from version 5.10"
> -
> -CVE_STATUS[CVE-2021-3428] = "fixed-version: Fixed from version 5.9rc2"
> -
> -CVE_STATUS[CVE-2021-3444] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2021-34556] = "fixed-version: Fixed from version 5.14rc4"
> -
> -CVE_STATUS[CVE-2021-34693] = "fixed-version: Fixed from version 5.13rc7"
> -
> -CVE_STATUS[CVE-2021-3483] = "fixed-version: Fixed from version 5.12rc6"
> -
> -CVE_STATUS[CVE-2021-34866] = "fixed-version: Fixed from version 5.14"
> -
> -CVE_STATUS[CVE-2021-3489] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-3490] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-3491] = "fixed-version: Fixed from version 5.13rc1"
> -
> -# CVE-2021-3492 has no known resolution
> -
> -CVE_STATUS[CVE-2021-3493] = "fixed-version: Fixed from version 5.11rc1"
> -
> -CVE_STATUS[CVE-2021-34981] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2021-3501] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-35039] = "fixed-version: Fixed from version 5.13"
> -
> -CVE_STATUS[CVE-2021-3506] = "fixed-version: Fixed from version 5.13rc1"
> -
> -# CVE-2021-3542 has no known resolution
> -
> -CVE_STATUS[CVE-2021-3543] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-35477] = "fixed-version: Fixed from version 5.14rc4"
> -
> -CVE_STATUS[CVE-2021-3564] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-3573] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-3587] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-3600] = "fixed-version: Fixed from version 5.11"
> -
> -CVE_STATUS[CVE-2021-3609] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2021-3612] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2021-3635] = "fixed-version: Fixed from version 5.5rc7"
> -
> -CVE_STATUS[CVE-2021-3640] = "fixed-version: Fixed from version 5.16rc1"
> -
> -CVE_STATUS[CVE-2021-3653] = "fixed-version: Fixed from version 5.14rc7"
> -
> -CVE_STATUS[CVE-2021-3655] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2021-3656] = "fixed-version: Fixed from version 5.14rc7"
> -
> -CVE_STATUS[CVE-2021-3659] = "fixed-version: Fixed from version 5.12rc7"
> -
> -CVE_STATUS[CVE-2021-3669] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2021-3679] = "fixed-version: Fixed from version 5.14rc3"
> -
> -# CVE-2021-3714 has no known resolution
> -
> -CVE_STATUS[CVE-2021-3715] = "fixed-version: Fixed from version 5.6"
> -
> -CVE_STATUS[CVE-2021-37159] = "fixed-version: Fixed from version 5.14rc3"
> -
> -CVE_STATUS[CVE-2021-3732] = "fixed-version: Fixed from version 5.14rc6"
> -
> -CVE_STATUS[CVE-2021-3736] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2021-3739] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2021-3743] = "fixed-version: Fixed from version 5.13rc7"
> -
> -CVE_STATUS[CVE-2021-3744] = "fixed-version: Fixed from version 5.15rc4"
> -
> -CVE_STATUS[CVE-2021-3752] = "fixed-version: Fixed from version 5.16rc1"
> -
> -CVE_STATUS[CVE-2021-3753] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2021-37576] = "fixed-version: Fixed from version 5.14rc3"
> -
> -CVE_STATUS[CVE-2021-3759] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2021-3760] = "fixed-version: Fixed from version 5.15rc6"
> -
> -CVE_STATUS[CVE-2021-3764] = "fixed-version: Fixed from version 5.15rc4"
> -
> -CVE_STATUS[CVE-2021-3772] = "fixed-version: Fixed from version 5.15"
> -
> -CVE_STATUS[CVE-2021-38160] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2021-38166] = "fixed-version: Fixed from version 5.14rc6"
> -
> -CVE_STATUS[CVE-2021-38198] = "fixed-version: Fixed from version 5.13rc6"
> -
> -CVE_STATUS[CVE-2021-38199] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2021-38200] = "fixed-version: Fixed from version 5.13rc7"
> -
> -CVE_STATUS[CVE-2021-38201] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2021-38202] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2021-38203] = "fixed-version: Fixed from version 5.14rc2"
> -
> -CVE_STATUS[CVE-2021-38204] = "fixed-version: Fixed from version 5.14rc3"
> -
> -CVE_STATUS[CVE-2021-38205] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2021-38206] = "fixed-version: Fixed from version 5.13rc7"
> -
> -CVE_STATUS[CVE-2021-38207] = "fixed-version: Fixed from version 5.13rc7"
> -
> -CVE_STATUS[CVE-2021-38208] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-38209] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-38300] = "fixed-version: Fixed from version 5.15rc4"
> -
> -# CVE-2021-3847 has no known resolution
> -
> -# CVE-2021-3864 has no known resolution
> -
> -# CVE-2021-3892 has no known resolution
> -
> -CVE_STATUS[CVE-2021-3894] = "fixed-version: Fixed from version 5.15rc6"
> -
> -CVE_STATUS[CVE-2021-3896] = "fixed-version: Fixed from version 5.15rc6"
> -
> -CVE_STATUS[CVE-2021-3923] = "fixed-version: Fixed from version 5.16"
> -
> -CVE_STATUS[CVE-2021-39633] = "fixed-version: Fixed from version 5.14"
> -
> -CVE_STATUS[CVE-2021-39634] = "fixed-version: Fixed from version 5.9rc8"
> -
> -CVE_STATUS[CVE-2021-39636] = "fixed-version: Fixed from version 4.16rc1"
> -
> -CVE_STATUS[CVE-2021-39648] = "fixed-version: Fixed from version 5.11rc3"
> -
> -CVE_STATUS[CVE-2021-39656] = "fixed-version: Fixed from version 5.12rc3"
> -
> -CVE_STATUS[CVE-2021-39657] = "fixed-version: Fixed from version 5.11rc4"
> -
> -CVE_STATUS[CVE-2021-39685] = "fixed-version: Fixed from version 5.16rc5"
> -
> -CVE_STATUS[CVE-2021-39686] = "fixed-version: Fixed from version 5.16rc1"
> -
> -CVE_STATUS[CVE-2021-39698] = "fixed-version: Fixed from version 5.16rc5"
> -
> -CVE_STATUS[CVE-2021-39711] = "fixed-version: Fixed from version 4.18rc6"
> -
> -CVE_STATUS[CVE-2021-39713] = "fixed-version: Fixed from version 4.20rc1"
> -
> -CVE_STATUS[CVE-2021-39714] = "fixed-version: Fixed from version 4.12rc1"
> -
> -# CVE-2021-39800 has no known resolution
> -
> -# CVE-2021-39801 has no known resolution
> -
> -# CVE-2021-39802 has no known resolution
> -
> -CVE_STATUS[CVE-2021-4001] = "fixed-version: Fixed from version 5.16rc2"
> -
> -CVE_STATUS[CVE-2021-4002] = "fixed-version: Fixed from version 5.16rc3"
> -
> -CVE_STATUS[CVE-2021-4023] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2021-4028] = "fixed-version: Fixed from version 5.15rc4"
> -
> -CVE_STATUS[CVE-2021-4032] = "fixed-version: Fixed from version 5.15rc7"
> -
> -CVE_STATUS[CVE-2021-4037] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2021-40490] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2021-4083] = "fixed-version: Fixed from version 5.16rc4"
> -
> -CVE_STATUS[CVE-2021-4090] = "fixed-version: Fixed from version 5.16rc2"
> -
> -CVE_STATUS[CVE-2021-4093] = "fixed-version: Fixed from version 5.15rc7"
> -
> -CVE_STATUS[CVE-2021-4095] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2021-41073] = "fixed-version: Fixed from version 5.15rc2"
> -
> -CVE_STATUS[CVE-2021-4135] = "fixed-version: Fixed from version 5.16rc6"
> -
> -CVE_STATUS[CVE-2021-4148] = "fixed-version: Fixed from version 5.15"
> -
> -CVE_STATUS[CVE-2021-4149] = "fixed-version: Fixed from version 5.15rc6"
> -
> -CVE_STATUS[CVE-2021-4150] = "fixed-version: Fixed from version 5.15rc7"
> -
> -CVE_STATUS[CVE-2021-4154] = "fixed-version: Fixed from version 5.14rc2"
> -
> -CVE_STATUS[CVE-2021-4155] = "fixed-version: Fixed from version 5.16"
> -
> -CVE_STATUS[CVE-2021-4157] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-4159] = "fixed-version: Fixed from version 5.7rc1"
> -
> -CVE_STATUS[CVE-2021-41864] = "fixed-version: Fixed from version 5.15rc5"
> -
> -CVE_STATUS[CVE-2021-4197] = "fixed-version: Fixed from version 5.16"
> -
> -CVE_STATUS[CVE-2021-42008] = "fixed-version: Fixed from version 5.14rc7"
> -
> -CVE_STATUS[CVE-2021-4202] = "fixed-version: Fixed from version 5.16rc2"
> -
> -CVE_STATUS[CVE-2021-4203] = "fixed-version: Fixed from version 5.15rc4"
> -
> -CVE_STATUS[CVE-2021-4204] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2021-4218] = "fixed-version: Fixed from version 5.8rc1"
> -
> -CVE_STATUS[CVE-2021-42252] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2021-42327] = "fixed-version: Fixed from version 5.15"
> -
> -CVE_STATUS[CVE-2021-42739] = "fixed-version: Fixed from version 5.16rc1"
> -
> -CVE_STATUS[CVE-2021-43056] = "fixed-version: Fixed from version 5.15rc6"
> -
> -CVE_STATUS[CVE-2021-43057] = "fixed-version: Fixed from version 5.15rc3"
> -
> -CVE_STATUS[CVE-2021-43267] = "fixed-version: Fixed from version 5.15"
> -
> -CVE_STATUS[CVE-2021-43389] = "fixed-version: Fixed from version 5.15rc6"
> -
> -CVE_STATUS[CVE-2021-43975] = "fixed-version: Fixed from version 5.16rc2"
> -
> -CVE_STATUS[CVE-2021-43976] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2021-44733] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-44879] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2021-45095] = "fixed-version: Fixed from version 5.16rc6"
> -
> -CVE_STATUS[CVE-2021-45100] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-45402] = "fixed-version: Fixed from version 5.16rc6"
> -
> -CVE_STATUS[CVE-2021-45469] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2021-45480] = "fixed-version: Fixed from version 5.16rc6"
> -
> -CVE_STATUS[CVE-2021-45485] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2021-45486] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-45868] = "fixed-version: Fixed from version 5.16rc1"
> -
> -CVE_STATUS[CVE-2021-46283] = "fixed-version: Fixed from version 5.13rc7"
> -
> -CVE_STATUS[CVE-2021-46904] = "fixed-version: Fixed from version 5.12rc7"
> -
> -CVE_STATUS[CVE-2021-46905] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46906] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-46908] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46909] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46910] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46911] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46912] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46913] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46914] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46915] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46916] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46917] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46918] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46919] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46920] = "fixed-version: Fixed from version 5.12rc8"
> -
> -CVE_STATUS[CVE-2021-46921] = "fixed-version: Fixed from version 5.12"
> -
> -CVE_STATUS[CVE-2021-46922] = "fixed-version: Fixed from version 5.12"
> -
> -CVE_STATUS[CVE-2021-46923] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46924] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46925] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46926] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-46927] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46928] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-46929] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46930] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46931] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46932] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46933] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46934] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46935] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46936] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46937] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2021-46938] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46939] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46940] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46941] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46942] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46943] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46944] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46945] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46947] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46948] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46949] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46950] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46951] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46952] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46953] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46954] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46955] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46956] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46957] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46958] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46959] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46960] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46961] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46962] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46963] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46964] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46965] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46966] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46967] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46968] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46969] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46970] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46971] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46972] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46973] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46974] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46976] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46977] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46978] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46979] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46980] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46981] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46982] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46983] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46984] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46985] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46986] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46987] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46988] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46989] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46990] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-46991] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46992] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46993] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46994] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46995] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46996] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46997] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46998] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-46999] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47000] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47001] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47002] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47003] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47004] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47005] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47006] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47007] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47008] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47009] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-47010] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47011] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47012] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47013] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47014] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47015] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47016] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47017] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47018] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47019] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47020] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47021] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47022] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47023] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47024] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47025] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47026] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47027] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47028] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47029] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47030] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47031] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47032] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47033] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47034] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47035] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47036] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47037] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47038] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47039] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47040] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47041] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47042] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47043] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47044] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47045] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47046] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47047] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47048] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47049] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47050] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47051] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47052] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47053] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47054] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47055] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47056] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47057] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47058] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47059] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47060] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47061] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47062] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47063] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47064] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47065] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47066] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47067] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47068] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2021-47069] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47070] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47071] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47072] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47073] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47074] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47075] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47076] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47077] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47078] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47079] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47080] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47081] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47082] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47083] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47086] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47087] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47088] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47089] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47090] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47091] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47092] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47093] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47094] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47095] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47096] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47097] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47098] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47099] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47100] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47101] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47102] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47103] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47104] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47105] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47106] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47107] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47108] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2021-47109] = "fixed-version: Fixed from version 5.13rc7"
> -
> -CVE_STATUS[CVE-2021-47110] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-47111] = "fixed-version: Fixed from version 5.13rc6"
> -
> -CVE_STATUS[CVE-2021-47112] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-47113] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47114] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47116] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47117] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47118] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47119] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47120] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47121] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47122] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47123] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-47124] = "fixed-version: Fixed from version 5.13rc2"
> -
> -CVE_STATUS[CVE-2021-47125] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47126] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47127] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47128] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47129] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47130] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47131] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47132] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47133] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47134] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47135] = "fixed-version: Fixed from version 5.13rc5"
> -
> -CVE_STATUS[CVE-2021-47136] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47137] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47138] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47139] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47140] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47141] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47142] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47143] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47144] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47145] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47146] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47147] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47148] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47149] = "fixed-version: Fixed from version 5.13rc3"
> -
> -CVE_STATUS[CVE-2021-47150] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47151] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47152] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47153] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47158] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47159] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47160] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47161] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47162] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47163] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47164] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47165] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47166] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47167] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47168] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47169] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47170] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47171] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47172] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47173] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47174] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47175] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47176] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47177] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47178] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47179] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2021-47180] = "fixed-version: Fixed from version 5.13rc4"
> -
> -CVE_STATUS[CVE-2022-0001] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-0002] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-0168] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-0171] = "fixed-version: Fixed from version 5.18rc4"
> -
> -CVE_STATUS[CVE-2022-0185] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2022-0264] = "fixed-version: Fixed from version 5.16rc6"
> -
> -CVE_STATUS[CVE-2022-0286] = "fixed-version: Fixed from version 5.14rc2"
> -
> -CVE_STATUS[CVE-2022-0322] = "fixed-version: Fixed from version 5.15rc6"
> -
> -CVE_STATUS[CVE-2022-0330] = "fixed-version: Fixed from version 5.17rc2"
> -
> -CVE_STATUS[CVE-2022-0382] = "fixed-version: Fixed from version 5.16"
> -
> -# CVE-2022-0400 has no known resolution
> -
> -CVE_STATUS[CVE-2022-0433] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2022-0435] = "fixed-version: Fixed from version 5.17rc4"
> -
> -CVE_STATUS[CVE-2022-0480] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2022-0487] = "fixed-version: Fixed from version 5.17rc4"
> -
> -CVE_STATUS[CVE-2022-0492] = "fixed-version: Fixed from version 5.17rc3"
> -
> -CVE_STATUS[CVE-2022-0494] = "fixed-version: Fixed from version 5.17rc5"
> -
> -CVE_STATUS[CVE-2022-0500] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2022-0516] = "fixed-version: Fixed from version 5.17rc4"
> -
> -CVE_STATUS[CVE-2022-0617] = "fixed-version: Fixed from version 5.17rc2"
> -
> -CVE_STATUS[CVE-2022-0644] = "fixed-version: Fixed from version 5.15rc7"
> -
> -CVE_STATUS[CVE-2022-0646] = "fixed-version: Fixed from version 5.17rc5"
> -
> -CVE_STATUS[CVE-2022-0742] = "fixed-version: Fixed from version 5.17rc7"
> -
> -CVE_STATUS[CVE-2022-0812] = "fixed-version: Fixed from version 5.8rc6"
> -
> -CVE_STATUS[CVE-2022-0847] = "fixed-version: Fixed from version 5.17rc6"
> -
> -CVE_STATUS[CVE-2022-0850] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2022-0854] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-0995] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-0998] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2022-1011] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-1012] = "fixed-version: Fixed from version 5.18rc6"
> -
> -CVE_STATUS[CVE-2022-1015] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-1016] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-1043] = "fixed-version: Fixed from version 5.14rc7"
> -
> -CVE_STATUS[CVE-2022-1048] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-1055] = "fixed-version: Fixed from version 5.17rc3"
> -
> -# CVE-2022-1116 has no known resolution
> -
> -CVE_STATUS[CVE-2022-1158] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-1184] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-1195] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2022-1198] = "fixed-version: Fixed from version 5.17rc6"
> -
> -CVE_STATUS[CVE-2022-1199] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-1204] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-1205] = "fixed-version: Fixed from version 5.18rc1"
> -
> -# CVE-2022-1247 has no known resolution
> -
> -CVE_STATUS[CVE-2022-1263] = "fixed-version: Fixed from version 5.18rc3"
> -
> -CVE_STATUS[CVE-2022-1280] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2022-1353] = "fixed-version: Fixed from version 5.17"
> -
> -CVE_STATUS[CVE-2022-1419] = "fixed-version: Fixed from version 5.6rc2"
> -
> -CVE_STATUS[CVE-2022-1462] = "fixed-version: Fixed from version 5.19rc7"
> -
> -CVE_STATUS[CVE-2022-1508] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2022-1516] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-1651] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-1652] = "fixed-version: Fixed from version 5.18rc6"
> -
> -CVE_STATUS[CVE-2022-1671] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-1678] = "fixed-version: Fixed from version 4.20rc1"
> -
> -CVE_STATUS[CVE-2022-1679] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-1729] = "fixed-version: Fixed from version 5.18"
> -
> -CVE_STATUS[CVE-2022-1734] = "fixed-version: Fixed from version 5.18rc6"
> -
> -CVE_STATUS[CVE-2022-1786] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2022-1789] = "fixed-version: Fixed from version 5.18"
> -
> -CVE_STATUS[CVE-2022-1836] = "fixed-version: Fixed from version 5.18rc5"
> -
> -CVE_STATUS[CVE-2022-1852] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-1882] = "fixed-version: Fixed from version 5.19rc8"
> -
> -CVE_STATUS[CVE-2022-1943] = "fixed-version: Fixed from version 5.18rc7"
> -
> -CVE_STATUS[CVE-2022-1966] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-1972] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-1973] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-1974] = "fixed-version: Fixed from version 5.18rc6"
> -
> -CVE_STATUS[CVE-2022-1975] = "fixed-version: Fixed from version 5.18rc6"
> -
> -CVE_STATUS[CVE-2022-1976] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-1998] = "fixed-version: Fixed from version 5.17rc3"
> -
> -CVE_STATUS[CVE-2022-20008] = "fixed-version: Fixed from version 5.17rc5"
> -
> -CVE_STATUS[CVE-2022-20132] = "fixed-version: Fixed from version 5.16rc5"
> -
> -CVE_STATUS[CVE-2022-20141] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2022-20148] = "fixed-version: Fixed from version 5.16rc1"
> -
> -CVE_STATUS[CVE-2022-20153] = "fixed-version: Fixed from version 5.13rc1"
> -
> -CVE_STATUS[CVE-2022-20154] = "fixed-version: Fixed from version 5.16rc8"
> -
> -CVE_STATUS[CVE-2022-20158] = "fixed-version: Fixed from version 5.17"
> -
> -CVE_STATUS[CVE-2022-20166] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2022-20368] = "fixed-version: Fixed from version 5.17"
> -
> -CVE_STATUS[CVE-2022-20369] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-20409] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2022-20421] = "fixed-version: Fixed from version 6.0rc4"
> -
> -CVE_STATUS[CVE-2022-20422] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-20423] = "fixed-version: Fixed from version 5.17"
> -
> -CVE_STATUS[CVE-2022-20424] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2022-20565] = "fixed-version: Fixed from version 5.9rc4"
> -
> -CVE_STATUS[CVE-2022-20566] = "fixed-version: Fixed from version 5.19"
> -
> -CVE_STATUS[CVE-2022-20567] = "fixed-version: Fixed from version 4.16rc5"
> -
> -CVE_STATUS[CVE-2022-20568] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2022-20572] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-2078] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-21123] = "fixed-version: Fixed from version 5.19rc3"
> -
> -CVE_STATUS[CVE-2022-21125] = "fixed-version: Fixed from version 5.19rc3"
> -
> -CVE_STATUS[CVE-2022-21166] = "fixed-version: Fixed from version 5.19rc3"
> -
> -CVE_STATUS[CVE-2022-21385] = "fixed-version: Fixed from version 4.20"
> -
> -CVE_STATUS[CVE-2022-21499] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-21505] = "fixed-version: Fixed from version 5.19rc8"
> -
> -CVE_STATUS[CVE-2022-2153] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-2196] = "fixed-version: Fixed from version 6.2rc1"
> -
> -# CVE-2022-2209 has no known resolution
> -
> -CVE_STATUS[CVE-2022-22942] = "fixed-version: Fixed from version 5.17rc2"
> -
> -CVE_STATUS[CVE-2022-23036] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-23037] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-23038] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-23039] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-23040] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-23041] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-23042] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-2308] = "fixed-version: Fixed from version 6.0"
> -
> -CVE_STATUS[CVE-2022-2318] = "fixed-version: Fixed from version 5.19rc5"
> -
> -CVE_STATUS[CVE-2022-23222] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2022-2327] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2022-2380] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-23816] = "fixed-version: Fixed from version 5.19rc7"
> -
> -# CVE-2022-23825 has no known resolution
> -
> -CVE_STATUS[CVE-2022-23960] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-24122] = "fixed-version: Fixed from version 5.17rc2"
> -
> -CVE_STATUS[CVE-2022-24448] = "fixed-version: Fixed from version 5.17rc2"
> -
> -CVE_STATUS[CVE-2022-24958] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2022-24959] = "fixed-version: Fixed from version 5.17rc2"
> -
> -CVE_STATUS[CVE-2022-2503] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-25258] = "fixed-version: Fixed from version 5.17rc4"
> -
> -# CVE-2022-25265 has no known resolution
> -
> -CVE_STATUS[CVE-2022-25375] = "fixed-version: Fixed from version 5.17rc4"
> -
> -CVE_STATUS[CVE-2022-25636] = "fixed-version: Fixed from version 5.17rc6"
> -
> -CVE_STATUS[CVE-2022-2585] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-2586] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-2588] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-2590] = "fixed-version: Fixed from version 6.0rc3"
> -
> -CVE_STATUS[CVE-2022-2602] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-26365] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2022-26373] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-2639] = "fixed-version: Fixed from version 5.18rc4"
> -
> -CVE_STATUS[CVE-2022-26490] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2022-2663] = "fixed-version: Fixed from version 6.0rc5"
> -
> -# CVE-2022-26878 has no known resolution
> -
> -CVE_STATUS[CVE-2022-26966] = "fixed-version: Fixed from version 5.17rc6"
> -
> -CVE_STATUS[CVE-2022-27223] = "fixed-version: Fixed from version 5.17rc6"
> -
> -CVE_STATUS[CVE-2022-27666] = "fixed-version: Fixed from version 5.17rc8"
> -
> -CVE_STATUS[CVE-2022-27672] = "fixed-version: Fixed from version 6.2"
> -
> -CVE_STATUS[CVE-2022-2785] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-27950] = "fixed-version: Fixed from version 5.17rc5"
> -
> -CVE_STATUS[CVE-2022-28356] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-28388] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-28389] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-28390] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-2873] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-28796] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-28893] = "fixed-version: Fixed from version 5.18rc2"
> -
> -CVE_STATUS[CVE-2022-2905] = "fixed-version: Fixed from version 6.0rc4"
> -
> -CVE_STATUS[CVE-2022-29156] = "fixed-version: Fixed from version 5.17rc6"
> -
> -CVE_STATUS[CVE-2022-2938] = "fixed-version: Fixed from version 5.17rc2"
> -
> -CVE_STATUS[CVE-2022-29581] = "fixed-version: Fixed from version 5.18rc4"
> -
> -CVE_STATUS[CVE-2022-29582] = "fixed-version: Fixed from version 5.18rc2"
> -
> -CVE_STATUS[CVE-2022-2959] = "fixed-version: Fixed from version 5.19rc1"
> -
> -# CVE-2022-2961 has no known resolution
> -
> -CVE_STATUS[CVE-2022-2964] = "fixed-version: Fixed from version 5.17rc4"
> -
> -CVE_STATUS[CVE-2022-2977] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-2978] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-29900] = "fixed-version: Fixed from version 5.19rc7"
> -
> -CVE_STATUS[CVE-2022-29901] = "fixed-version: Fixed from version 5.19rc7"
> -
> -CVE_STATUS[CVE-2022-2991] = "fixed-version: Fixed from version 5.15rc1"
> -
> -CVE_STATUS[CVE-2022-29968] = "fixed-version: Fixed from version 5.18rc5"
> -
> -CVE_STATUS[CVE-2022-3028] = "fixed-version: Fixed from version 6.0rc3"
> -
> -CVE_STATUS[CVE-2022-30594] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-3061] = "fixed-version: Fixed from version 5.18rc5"
> -
> -CVE_STATUS[CVE-2022-3077] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-3078] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-3103] = "fixed-version: Fixed from version 6.0rc3"
> -
> -CVE_STATUS[CVE-2022-3104] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-3105] = "fixed-version: Fixed from version 5.16"
> -
> -CVE_STATUS[CVE-2022-3106] = "fixed-version: Fixed from version 5.16rc6"
> -
> -CVE_STATUS[CVE-2022-3107] = "fixed-version: Fixed from version 5.17"
> -
> -CVE_STATUS[CVE-2022-3108] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2022-3110] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-3111] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-3112] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-3113] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-3114] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-3115] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-3169] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3170] = "fixed-version: Fixed from version 6.0rc4"
> -
> -CVE_STATUS[CVE-2022-3176] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2022-3202] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-32250] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-32296] = "fixed-version: Fixed from version 5.18rc6"
> -
> -# CVE-2022-3238 has no known resolution
> -
> -CVE_STATUS[CVE-2022-3239] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-32981] = "fixed-version: Fixed from version 5.19rc2"
> -
> -CVE_STATUS[CVE-2022-3303] = "fixed-version: Fixed from version 6.0rc5"
> -
> -CVE_STATUS[CVE-2022-3344] = "fixed-version: Fixed from version 6.1rc7"
> -
> -CVE_STATUS[CVE-2022-33740] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2022-33741] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2022-33742] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2022-33743] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2022-33744] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2022-33981] = "fixed-version: Fixed from version 5.18rc5"
> -
> -CVE_STATUS[CVE-2022-3424] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-3435] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-34494] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-34495] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-34918] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2022-3521] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3522] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3523] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3524] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3526] = "fixed-version: Fixed from version 5.18rc3"
> -
> -CVE_STATUS[CVE-2022-3531] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-3532] = "fixed-version: Fixed from version 6.2rc1"
> -
> -# CVE-2022-3533 has no known resolution
> -
> -CVE_STATUS[CVE-2022-3534] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-3535] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3541] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3542] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3543] = "fixed-version: Fixed from version 6.1rc1"
> -
> -# CVE-2022-3544 has no known resolution
> -
> -CVE_STATUS[CVE-2022-3545] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-3564] = "fixed-version: Fixed from version 6.1rc4"
> -
> -CVE_STATUS[CVE-2022-3565] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3566] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3567] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3577] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-3586] = "fixed-version: Fixed from version 6.0rc5"
> -
> -CVE_STATUS[CVE-2022-3594] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3595] = "fixed-version: Fixed from version 6.1rc1"
> -
> -# CVE-2022-3606 has no known resolution
> -
> -CVE_STATUS[CVE-2022-36123] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2022-3619] = "fixed-version: Fixed from version 6.1rc4"
> -
> -CVE_STATUS[CVE-2022-3621] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3623] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3624] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-3625] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-3628] = "fixed-version: Fixed from version 6.1rc5"
> -
> -CVE_STATUS[CVE-2022-36280] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-3629] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-3630] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-3633] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-3635] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-3636] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-3640] = "fixed-version: Fixed from version 6.1rc4"
> -
> -CVE_STATUS[CVE-2022-36402] = "fixed-version: Fixed from version 6.5"
> -
> -# CVE-2022-3642 has no known resolution
> -
> -CVE_STATUS[CVE-2022-3643] = "fixed-version: Fixed from version 6.1"
> -
> -CVE_STATUS[CVE-2022-3646] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-3649] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-36879] = "fixed-version: Fixed from version 5.19rc8"
> -
> -CVE_STATUS[CVE-2022-36946] = "fixed-version: Fixed from version 5.19"
> -
> -CVE_STATUS[CVE-2022-3707] = "fixed-version: Fixed from version 6.2rc3"
> -
> -# CVE-2022-38096 has no known resolution
> -
> -CVE_STATUS[CVE-2022-38457] = "fixed-version: Fixed from version 6.2rc4"
> -
> -CVE_STATUS[CVE-2022-3903] = "fixed-version: Fixed from version 6.1rc2"
> -
> -CVE_STATUS[CVE-2022-3910] = "fixed-version: Fixed from version 6.0rc6"
> -
> -CVE_STATUS[CVE-2022-39188] = "fixed-version: Fixed from version 5.19rc8"
> -
> -CVE_STATUS[CVE-2022-39189] = "fixed-version: Fixed from version 5.19rc2"
> -
> -CVE_STATUS[CVE-2022-39190] = "fixed-version: Fixed from version 6.0rc3"
> -
> -CVE_STATUS[CVE-2022-3977] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-39842] = "fixed-version: Fixed from version 5.19rc4"
> -
> -CVE_STATUS[CVE-2022-40133] = "fixed-version: Fixed from version 6.2rc4"
> -
> -CVE_STATUS[CVE-2022-40307] = "fixed-version: Fixed from version 6.0rc5"
> -
> -CVE_STATUS[CVE-2022-40476] = "fixed-version: Fixed from version 5.19rc4"
> -
> -CVE_STATUS[CVE-2022-40768] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-4095] = "fixed-version: Fixed from version 6.0rc4"
> -
> -CVE_STATUS[CVE-2022-40982] = "fixed-version: Fixed from version 6.5rc6"
> -
> -CVE_STATUS[CVE-2022-41218] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-41222] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2022-4127] = "fixed-version: Fixed from version 5.19rc6"
> -
> -CVE_STATUS[CVE-2022-4128] = "fixed-version: Fixed from version 5.19rc7"
> -
> -CVE_STATUS[CVE-2022-4129] = "fixed-version: Fixed from version 6.1rc6"
> -
> -CVE_STATUS[CVE-2022-4139] = "fixed-version: Fixed from version 6.1rc8"
> -
> -CVE_STATUS[CVE-2022-41674] = "fixed-version: Fixed from version 6.1rc1"
> -
> -# CVE-2022-41848 has no known resolution
> -
> -CVE_STATUS[CVE-2022-41849] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-41850] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-41858] = "fixed-version: Fixed from version 5.18rc2"
> -
> -CVE_STATUS[CVE-2022-42328] = "fixed-version: Fixed from version 6.1"
> -
> -CVE_STATUS[CVE-2022-42329] = "fixed-version: Fixed from version 6.1"
> -
> -CVE_STATUS[CVE-2022-42432] = "fixed-version: Fixed from version 6.0rc7"
> -
> -CVE_STATUS[CVE-2022-4269] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2022-42703] = "fixed-version: Fixed from version 6.0rc4"
> -
> -CVE_STATUS[CVE-2022-42719] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-42720] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-42721] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-42722] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-42895] = "fixed-version: Fixed from version 6.1rc4"
> -
> -CVE_STATUS[CVE-2022-42896] = "fixed-version: Fixed from version 6.1rc4"
> -
> -CVE_STATUS[CVE-2022-43750] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-4378] = "fixed-version: Fixed from version 6.1"
> -
> -CVE_STATUS[CVE-2022-4379] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-4382] = "fixed-version: Fixed from version 6.2rc5"
> -
> -CVE_STATUS[CVE-2022-43945] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2022-44032] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2022-44033] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2022-44034] = "fixed-version: Fixed from version 6.4rc1"
> -
> -# CVE-2022-4543 has no known resolution
> -
> -CVE_STATUS[CVE-2022-45869] = "fixed-version: Fixed from version 6.1rc7"
> -
> -# CVE-2022-45884 has no known resolution
> -
> -# CVE-2022-45885 has no known resolution
> -
> -CVE_STATUS[CVE-2022-45886] = "fixed-version: Fixed from version 6.4rc3"
> -
> -CVE_STATUS[CVE-2022-45887] = "fixed-version: Fixed from version 6.4rc3"
> -
> -CVE_STATUS[CVE-2022-45888] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-45919] = "fixed-version: Fixed from version 6.4rc3"
> -
> -CVE_STATUS[CVE-2022-45934] = "fixed-version: Fixed from version 6.1"
> -
> -CVE_STATUS[CVE-2022-4662] = "fixed-version: Fixed from version 6.0rc4"
> -
> -CVE_STATUS[CVE-2022-4696] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2022-4744] = "fixed-version: Fixed from version 5.16rc7"
> -
> -CVE_STATUS[CVE-2022-47518] = "fixed-version: Fixed from version 6.1rc8"
> -
> -CVE_STATUS[CVE-2022-47519] = "fixed-version: Fixed from version 6.1rc8"
> -
> -CVE_STATUS[CVE-2022-47520] = "fixed-version: Fixed from version 6.1rc8"
> -
> -CVE_STATUS[CVE-2022-47521] = "fixed-version: Fixed from version 6.1rc8"
> -
> -CVE_STATUS[CVE-2022-47929] = "fixed-version: Fixed from version 6.2rc4"
> -
> -CVE_STATUS[CVE-2022-47938] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-47939] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-47940] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2022-47941] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-47942] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-47943] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2022-47946] = "fixed-version: Fixed from version 5.12rc2"
> -
> -CVE_STATUS[CVE-2022-4842] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-48423] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-48424] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-48425] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2022-48502] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2022-48619] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2022-48626] = "fixed-version: Fixed from version 5.17rc4"
> -
> -CVE_STATUS[CVE-2022-48627] = "fixed-version: Fixed from version 5.19rc7"
> -
> -CVE_STATUS[CVE-2022-48628] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2022-48629] = "fixed-version: Fixed from version 5.17"
> -
> -CVE_STATUS[CVE-2022-48630] = "fixed-version: Fixed from version 5.18"
> -
> -CVE_STATUS[CVE-2023-0030] = "fixed-version: Fixed from version 5.0rc1"
> -
> -CVE_STATUS[CVE-2023-0045] = "fixed-version: Fixed from version 6.2rc3"
> -
> -CVE_STATUS[CVE-2023-0047] = "fixed-version: Fixed from version 5.16rc1"
> -
> -CVE_STATUS[CVE-2023-0122] = "fixed-version: Fixed from version 6.0rc4"
> -
> -CVE_STATUS[CVE-2023-0160] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-0179] = "fixed-version: Fixed from version 6.2rc5"
> -
> -CVE_STATUS[CVE-2023-0210] = "fixed-version: Fixed from version 6.2rc4"
> -
> -CVE_STATUS[CVE-2023-0240] = "fixed-version: Fixed from version 5.10rc1"
> -
> -CVE_STATUS[CVE-2023-0266] = "fixed-version: Fixed from version 6.2rc4"
> -
> -CVE_STATUS[CVE-2023-0386] = "fixed-version: Fixed from version 6.2rc6"
> -
> -CVE_STATUS[CVE-2023-0394] = "fixed-version: Fixed from version 6.2rc4"
> -
> -CVE_STATUS[CVE-2023-0458] = "fixed-version: Fixed from version 6.2rc5"
> -
> -CVE_STATUS[CVE-2023-0459] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-0461] = "fixed-version: Fixed from version 6.2rc3"
> -
> -CVE_STATUS[CVE-2023-0468] = "fixed-version: Fixed from version 6.1rc7"
> -
> -CVE_STATUS[CVE-2023-0469] = "fixed-version: Fixed from version 6.1rc7"
> -
> -CVE_STATUS[CVE-2023-0590] = "fixed-version: Fixed from version 6.1rc2"
> -
> -CVE_STATUS[CVE-2023-0597] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2023-0615] = "fixed-version: Fixed from version 6.1rc3"
> -
> -CVE_STATUS[CVE-2023-1032] = "fixed-version: Fixed from version 6.3rc2"
> -
> -CVE_STATUS[CVE-2023-1073] = "fixed-version: Fixed from version 6.2rc5"
> -
> -CVE_STATUS[CVE-2023-1074] = "fixed-version: Fixed from version 6.2rc6"
> -
> -CVE_STATUS[CVE-2023-1075] = "fixed-version: Fixed from version 6.2rc7"
> -
> -CVE_STATUS[CVE-2023-1076] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-1077] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-1078] = "fixed-version: Fixed from version 6.2rc8"
> -
> -CVE_STATUS[CVE-2023-1079] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-1095] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2023-1118] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-1192] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-1193] = "fixed-version: Fixed from version 6.3rc6"
> -
> -CVE_STATUS[CVE-2023-1194] = "fixed-version: Fixed from version 6.4rc6"
> -
> -CVE_STATUS[CVE-2023-1195] = "fixed-version: Fixed from version 6.1rc3"
> -
> -CVE_STATUS[CVE-2023-1206] = "fixed-version: Fixed from version 6.5rc4"
> -
> -CVE_STATUS[CVE-2023-1249] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2023-1252] = "fixed-version: Fixed from version 5.16rc1"
> -
> -CVE_STATUS[CVE-2023-1281] = "fixed-version: Fixed from version 6.2"
> -
> -CVE_STATUS[CVE-2023-1295] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2023-1380] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-1382] = "fixed-version: Fixed from version 6.1rc7"
> -
> -CVE_STATUS[CVE-2023-1390] = "fixed-version: Fixed from version 5.11rc4"
> -
> -# CVE-2023-1476 has no known resolution
> -
> -CVE_STATUS[CVE-2023-1513] = "fixed-version: Fixed from version 6.2"
> -
> -CVE_STATUS[CVE-2023-1582] = "fixed-version: Fixed from version 5.17rc4"
> -
> -CVE_STATUS[CVE-2023-1583] = "fixed-version: Fixed from version 6.3rc4"
> -
> -CVE_STATUS[CVE-2023-1611] = "fixed-version: Fixed from version 6.3rc5"
> -
> -CVE_STATUS[CVE-2023-1637] = "fixed-version: Fixed from version 5.18rc2"
> -
> -CVE_STATUS[CVE-2023-1652] = "fixed-version: Fixed from version 6.2rc5"
> -
> -CVE_STATUS[CVE-2023-1670] = "fixed-version: Fixed from version 6.3rc4"
> -
> -CVE_STATUS[CVE-2023-1829] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-1838] = "fixed-version: Fixed from version 5.18"
> -
> -CVE_STATUS[CVE-2023-1855] = "fixed-version: Fixed from version 6.3rc3"
> -
> -CVE_STATUS[CVE-2023-1859] = "fixed-version: Fixed from version 6.3rc7"
> -
> -CVE_STATUS[CVE-2023-1872] = "fixed-version: Fixed from version 5.18rc2"
> -
> -CVE_STATUS[CVE-2023-1989] = "fixed-version: Fixed from version 6.3rc4"
> -
> -CVE_STATUS[CVE-2023-1990] = "fixed-version: Fixed from version 6.3rc3"
> -
> -CVE_STATUS[CVE-2023-1998] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-2002] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-2006] = "fixed-version: Fixed from version 6.1rc7"
> -
> -CVE_STATUS[CVE-2023-2007] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2023-2008] = "fixed-version: Fixed from version 5.19rc4"
> -
> -CVE_STATUS[CVE-2023-2019] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2023-20569] = "fixed-version: Fixed from version 6.5rc6"
> -
> -CVE_STATUS[CVE-2023-20588] = "fixed-version: Fixed from version 6.5rc6"
> -
> -CVE_STATUS[CVE-2023-20593] = "fixed-version: Fixed from version 6.5rc4"
> -
> -CVE_STATUS[CVE-2023-20928] = "fixed-version: Fixed from version 6.0rc1"
> -
> -# CVE-2023-20937 has no known resolution
> -
> -CVE_STATUS[CVE-2023-20938] = "fixed-version: Fixed from version 5.18rc5"
> -
> -# CVE-2023-20941 has no known resolution
> -
> -CVE_STATUS[CVE-2023-21102] = "fixed-version: Fixed from version 6.2rc4"
> -
> -CVE_STATUS[CVE-2023-21106] = "fixed-version: Fixed from version 6.2rc5"
> -
> -CVE_STATUS[CVE-2023-2124] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-21255] = "fixed-version: Fixed from version 6.4rc4"
> -
> -CVE_STATUS[CVE-2023-21264] = "fixed-version: Fixed from version 6.4rc5"
> -
> -# CVE-2023-21400 has no known resolution
> -
> -CVE_STATUS[CVE-2023-2156] = "fixed-version: Fixed from version 6.3"
> -
> -CVE_STATUS[CVE-2023-2162] = "fixed-version: Fixed from version 6.2rc6"
> -
> -CVE_STATUS[CVE-2023-2163] = "fixed-version: Fixed from version 6.3"
> -
> -CVE_STATUS[CVE-2023-2166] = "fixed-version: Fixed from version 6.1"
> -
> -CVE_STATUS[CVE-2023-2176] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-2177] = "fixed-version: Fixed from version 5.19"
> -
> -CVE_STATUS[CVE-2023-2194] = "fixed-version: Fixed from version 6.3rc4"
> -
> -CVE_STATUS[CVE-2023-2235] = "fixed-version: Fixed from version 6.3rc3"
> -
> -CVE_STATUS[CVE-2023-2236] = "fixed-version: Fixed from version 6.1rc7"
> -
> -CVE_STATUS[CVE-2023-2248] = "fixed-version: Fixed from version 6.3"
> -
> -CVE_STATUS[CVE-2023-2269] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-22995] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2023-22996] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2023-22997] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2023-22998] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2023-22999] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2023-23000] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2023-23001] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2023-23002] = "fixed-version: Fixed from version 5.17rc1"
> -
> -CVE_STATUS[CVE-2023-23003] = "fixed-version: Fixed from version 5.16rc6"
> -
> -CVE_STATUS[CVE-2023-23004] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2023-23005] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2023-23006] = "fixed-version: Fixed from version 5.16rc8"
> -
> -# CVE-2023-23039 has no known resolution
> -
> -CVE_STATUS[CVE-2023-23454] = "fixed-version: Fixed from version 6.2rc3"
> -
> -CVE_STATUS[CVE-2023-23455] = "fixed-version: Fixed from version 6.2rc3"
> -
> -CVE_STATUS[CVE-2023-23559] = "fixed-version: Fixed from version 6.2rc5"
> -
> -CVE_STATUS[CVE-2023-23586] = "fixed-version: Fixed from version 5.12rc1"
> -
> -CVE_STATUS[CVE-2023-2430] = "fixed-version: Fixed from version 6.2rc5"
> -
> -CVE_STATUS[CVE-2023-2483] = "fixed-version: Fixed from version 6.3rc4"
> -
> -CVE_STATUS[CVE-2023-25012] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-2513] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2023-25775] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-2598] = "fixed-version: Fixed from version 6.4rc1"
> -
> -# CVE-2023-26242 has no known resolution
> -
> -# CVE-2023-2640 has no known resolution
> -
> -CVE_STATUS[CVE-2023-26544] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2023-26545] = "fixed-version: Fixed from version 6.2"
> -
> -CVE_STATUS[CVE-2023-26605] = "fixed-version: Fixed from version 6.1rc7"
> -
> -CVE_STATUS[CVE-2023-26606] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2023-26607] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2023-28327] = "fixed-version: Fixed from version 6.1"
> -
> -CVE_STATUS[CVE-2023-28328] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2023-28410] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2023-28464] = "fixed-version: Fixed from version 6.3rc7"
> -
> -CVE_STATUS[CVE-2023-28466] = "fixed-version: Fixed from version 6.3rc2"
> -
> -CVE_STATUS[CVE-2023-2860] = "fixed-version: Fixed from version 6.0rc5"
> -
> -CVE_STATUS[CVE-2023-28746] = "cpe-stable-backport: Backported in 6.6.22"
> -
> -CVE_STATUS[CVE-2023-28772] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2023-28866] = "fixed-version: Fixed from version 6.3rc4"
> -
> -CVE_STATUS[CVE-2023-2898] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-2985] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-3006] = "fixed-version: Fixed from version 6.1rc1"
> -
> -# Skipping CVE-2023-3022, no affected_versions
> -
> -CVE_STATUS[CVE-2023-30456] = "fixed-version: Fixed from version 6.3rc3"
> -
> -CVE_STATUS[CVE-2023-30772] = "fixed-version: Fixed from version 6.3rc4"
> -
> -CVE_STATUS[CVE-2023-3090] = "fixed-version: Fixed from version 6.4rc2"
> -
> -CVE_STATUS[CVE-2023-3106] = "fixed-version: Fixed from version 4.8rc7"
> -
> -# Skipping CVE-2023-3108, no affected_versions
> -
> -# CVE-2023-31081 has no known resolution
> -
> -# CVE-2023-31082 has no known resolution
> -
> -CVE_STATUS[CVE-2023-31083] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-31084] = "fixed-version: Fixed from version 6.4rc3"
> -
> -CVE_STATUS[CVE-2023-31085] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-3111] = "fixed-version: Fixed from version 6.0rc2"
> -
> -CVE_STATUS[CVE-2023-3117] = "fixed-version: Fixed from version 6.4rc7"
> -
> -CVE_STATUS[CVE-2023-31248] = "fixed-version: Fixed from version 6.5rc2"
> -
> -CVE_STATUS[CVE-2023-3141] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-31436] = "fixed-version: Fixed from version 6.3"
> -
> -CVE_STATUS[CVE-2023-3159] = "fixed-version: Fixed from version 5.18rc6"
> -
> -CVE_STATUS[CVE-2023-3161] = "fixed-version: Fixed from version 6.2rc7"
> -
> -CVE_STATUS[CVE-2023-3212] = "fixed-version: Fixed from version 6.4rc2"
> -
> -CVE_STATUS[CVE-2023-3220] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-32233] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-32247] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-32248] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-32250] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-32252] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-32254] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-32257] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-32258] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-32269] = "fixed-version: Fixed from version 6.2rc7"
> -
> -# CVE-2023-32629 has no known resolution
> -
> -CVE_STATUS[CVE-2023-3268] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-3269] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-3312] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-3317] = "fixed-version: Fixed from version 6.3rc6"
> -
> -CVE_STATUS[CVE-2023-33203] = "fixed-version: Fixed from version 6.3rc4"
> -
> -CVE_STATUS[CVE-2023-33250] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-33288] = "fixed-version: Fixed from version 6.3rc4"
> -
> -CVE_STATUS[CVE-2023-3338] = "fixed-version: Fixed from version 6.1rc1"
> -
> -CVE_STATUS[CVE-2023-3355] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-3357] = "fixed-version: Fixed from version 6.2rc1"
> -
> -CVE_STATUS[CVE-2023-3358] = "fixed-version: Fixed from version 6.2rc5"
> -
> -CVE_STATUS[CVE-2023-3359] = "fixed-version: Fixed from version 6.2rc7"
> -
> -CVE_STATUS[CVE-2023-3389] = "fixed-version: Fixed from version 6.0rc1"
> -
> -CVE_STATUS[CVE-2023-3390] = "fixed-version: Fixed from version 6.4rc7"
> -
> -CVE_STATUS[CVE-2023-33951] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-33952] = "fixed-version: Fixed from version 6.4rc1"
> -
> -# CVE-2023-3397 has no known resolution
> -
> -CVE_STATUS[CVE-2023-34255] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-34256] = "fixed-version: Fixed from version 6.4rc2"
> -
> -CVE_STATUS[CVE-2023-34319] = "fixed-version: Fixed from version 6.5rc6"
> -
> -CVE_STATUS[CVE-2023-34324] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-3439] = "fixed-version: Fixed from version 5.18rc5"
> -
> -CVE_STATUS[CVE-2023-35001] = "fixed-version: Fixed from version 6.5rc2"
> -
> -CVE_STATUS[CVE-2023-3567] = "fixed-version: Fixed from version 6.2rc7"
> -
> -# CVE-2023-35693 has no known resolution
> -
> -CVE_STATUS[CVE-2023-35788] = "fixed-version: Fixed from version 6.4rc5"
> -
> -CVE_STATUS[CVE-2023-35823] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-35824] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-35826] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-35827] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-35828] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-35829] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-3609] = "fixed-version: Fixed from version 6.4rc7"
> -
> -CVE_STATUS[CVE-2023-3610] = "fixed-version: Fixed from version 6.4"
> -
> -CVE_STATUS[CVE-2023-3611] = "fixed-version: Fixed from version 6.5rc2"
> -
> -# CVE-2023-3640 has no known resolution
> -
> -CVE_STATUS[CVE-2023-37453] = "fixed-version: Fixed from version 6.6rc1"
> -
> -# CVE-2023-37454 has no known resolution
> -
> -CVE_STATUS[CVE-2023-3772] = "fixed-version: Fixed from version 6.5rc7"
> -
> -CVE_STATUS[CVE-2023-3773] = "fixed-version: Fixed from version 6.5rc7"
> -
> -CVE_STATUS[CVE-2023-3776] = "fixed-version: Fixed from version 6.5rc2"
> -
> -CVE_STATUS[CVE-2023-3777] = "fixed-version: Fixed from version 6.5rc3"
> -
> -CVE_STATUS[CVE-2023-3812] = "fixed-version: Fixed from version 6.1rc4"
> -
> -CVE_STATUS[CVE-2023-38409] = "fixed-version: Fixed from version 6.3rc7"
> -
> -CVE_STATUS[CVE-2023-38426] = "fixed-version: Fixed from version 6.4rc3"
> -
> -CVE_STATUS[CVE-2023-38427] = "fixed-version: Fixed from version 6.4rc6"
> -
> -CVE_STATUS[CVE-2023-38428] = "fixed-version: Fixed from version 6.4rc3"
> -
> -CVE_STATUS[CVE-2023-38429] = "fixed-version: Fixed from version 6.4rc3"
> -
> -CVE_STATUS[CVE-2023-38430] = "fixed-version: Fixed from version 6.4rc6"
> -
> -CVE_STATUS[CVE-2023-38431] = "fixed-version: Fixed from version 6.4rc6"
> -
> -CVE_STATUS[CVE-2023-38432] = "fixed-version: Fixed from version 6.4"
> -
> -CVE_STATUS[CVE-2023-3863] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-3865] = "fixed-version: Fixed from version 6.4"
> -
> -CVE_STATUS[CVE-2023-3866] = "fixed-version: Fixed from version 6.4"
> -
> -CVE_STATUS[CVE-2023-3867] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-39189] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-39191] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-39192] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-39193] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-39194] = "fixed-version: Fixed from version 6.5rc7"
> -
> -CVE_STATUS[CVE-2023-39197] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-39198] = "fixed-version: Fixed from version 6.5rc7"
> -
> -CVE_STATUS[CVE-2023-4004] = "fixed-version: Fixed from version 6.5rc3"
> -
> -# CVE-2023-4010 has no known resolution
> -
> -CVE_STATUS[CVE-2023-4015] = "fixed-version: Fixed from version 6.5rc4"
> -
> -CVE_STATUS[CVE-2023-40283] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-40791] = "fixed-version: Fixed from version 6.5rc6"
> -
> -CVE_STATUS[CVE-2023-4128] = "fixed-version: Fixed from version 6.5rc5"
> -
> -CVE_STATUS[CVE-2023-4132] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-4133] = "fixed-version: Fixed from version 6.3"
> -
> -CVE_STATUS[CVE-2023-4134] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-4147] = "fixed-version: Fixed from version 6.5rc4"
> -
> -CVE_STATUS[CVE-2023-4155] = "fixed-version: Fixed from version 6.5rc6"
> -
> -CVE_STATUS[CVE-2023-4194] = "fixed-version: Fixed from version 6.5rc5"
> -
> -CVE_STATUS[CVE-2023-4206] = "fixed-version: Fixed from version 6.5rc5"
> -
> -CVE_STATUS[CVE-2023-4207] = "fixed-version: Fixed from version 6.5rc5"
> -
> -CVE_STATUS[CVE-2023-4208] = "fixed-version: Fixed from version 6.5rc5"
> -
> -CVE_STATUS[CVE-2023-4244] = "fixed-version: Fixed from version 6.5rc7"
> -
> -CVE_STATUS[CVE-2023-4273] = "fixed-version: Fixed from version 6.5rc5"
> -
> -CVE_STATUS[CVE-2023-42752] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-42753] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-42754] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-42755] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-42756] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-4385] = "fixed-version: Fixed from version 5.19rc1"
> -
> -CVE_STATUS[CVE-2023-4387] = "fixed-version: Fixed from version 5.18"
> -
> -CVE_STATUS[CVE-2023-4389] = "fixed-version: Fixed from version 5.18rc3"
> -
> -CVE_STATUS[CVE-2023-4394] = "fixed-version: Fixed from version 6.0rc3"
> -
> -CVE_STATUS[CVE-2023-44466] = "fixed-version: Fixed from version 6.5rc2"
> -
> -CVE_STATUS[CVE-2023-4459] = "fixed-version: Fixed from version 5.18"
> -
> -CVE_STATUS[CVE-2023-4563] = "fixed-version: Fixed from version 6.5rc6"
> -
> -CVE_STATUS[CVE-2023-4569] = "fixed-version: Fixed from version 6.5rc7"
> -
> -CVE_STATUS[CVE-2023-45862] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-45863] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-45871] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-45898] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-4610] = "fixed-version: Fixed from version 6.4"
> -
> -CVE_STATUS[CVE-2023-4611] = "fixed-version: Fixed from version 6.5rc4"
> -
> -CVE_STATUS[CVE-2023-4622] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-4623] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-46343] = "fixed-version: Fixed from version 6.6rc7"
> -
> -CVE_STATUS[CVE-2023-46813] = "fixed-version: Fixed from version 6.6rc7"
> -
> -CVE_STATUS[CVE-2023-46838] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-46862] = "fixed-version: Fixed from version 6.6"
> -
> -CVE_STATUS[CVE-2023-47233] = "cpe-stable-backport: Backported in 6.6.24"
> -
> -CVE_STATUS[CVE-2023-4732] = "fixed-version: Fixed from version 5.14rc1"
> -
> -CVE_STATUS[CVE-2023-4881] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-4921] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-50431] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-5090] = "fixed-version: Fixed from version 6.6rc7"
> -
> -CVE_STATUS[CVE-2023-51042] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2023-51043] = "fixed-version: Fixed from version 6.5rc3"
> -
> -CVE_STATUS[CVE-2023-5158] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-51779] = "cpe-stable-backport: Backported in 6.6.9"
> -
> -CVE_STATUS[CVE-2023-5178] = "fixed-version: Fixed from version 6.6rc7"
> -
> -CVE_STATUS[CVE-2023-51780] = "cpe-stable-backport: Backported in 6.6.8"
> -
> -CVE_STATUS[CVE-2023-51781] = "cpe-stable-backport: Backported in 6.6.8"
> -
> -CVE_STATUS[CVE-2023-51782] = "cpe-stable-backport: Backported in 6.6.8"
> -
> -CVE_STATUS[CVE-2023-5197] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52340] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2023-52429] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2023-52433] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-52434] = "cpe-stable-backport: Backported in 6.6.8"
> -
> -CVE_STATUS[CVE-2023-52435] = "cpe-stable-backport: Backported in 6.6.11"
> -
> -CVE_STATUS[CVE-2023-52436] = "cpe-stable-backport: Backported in 6.6.13"
> -
> -CVE_STATUS[CVE-2023-52438] = "cpe-stable-backport: Backported in 6.6.13"
> -
> -CVE_STATUS[CVE-2023-52439] = "cpe-stable-backport: Backported in 6.6.13"
> -
> -CVE_STATUS[CVE-2023-52440] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-52441] = "fixed-version: Fixed from version 6.5rc4"
> -
> -CVE_STATUS[CVE-2023-52442] = "fixed-version: Fixed from version 6.5rc4"
> -
> -CVE_STATUS[CVE-2023-52443] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52444] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52445] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52446] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52447] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52448] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52449] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52450] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52451] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52452] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52453] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52454] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52455] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52456] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52457] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52458] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52459] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52460] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2023-52461] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2023-52462] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52463] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52464] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52465] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52467] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52468] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52469] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52470] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52471] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2023-52472] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52473] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52474] = "fixed-version: Fixed from version 6.4rc1"
> -
> -CVE_STATUS[CVE-2023-52475] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52476] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52477] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52478] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52479] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52480] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52481] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52482] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-52483] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52484] = "fixed-version: Fixed from version 6.6rc5"
> -
> -# CVE-2023-52485 needs backporting (fixed from 6.8rc1)
> -
> -CVE_STATUS[CVE-2023-52486] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52487] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52488] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52489] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52490] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52491] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52492] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52493] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52494] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52495] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52497] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52498] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52499] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52500] = "fixed-version: Fixed from version 6.6rc2"
> -
> -CVE_STATUS[CVE-2023-52501] = "fixed-version: Fixed from version 6.6rc2"
> -
> -CVE_STATUS[CVE-2023-52502] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52503] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52504] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52505] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52506] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52507] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52508] = "fixed-version: Fixed from version 6.6rc2"
> -
> -CVE_STATUS[CVE-2023-52509] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52510] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52511] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-52512] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-52513] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52515] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52516] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-52517] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-52518] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52519] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52520] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52522] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52523] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52524] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52525] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52526] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52527] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52528] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52529] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52530] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52531] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52532] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52559] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2023-52560] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-52561] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-52562] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-52563] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52564] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-52565] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52566] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-52567] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-52568] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-52569] = "fixed-version: Fixed from version 6.6rc2"
> -
> -CVE_STATUS[CVE-2023-52570] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-52571] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-52572] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52573] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52574] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52575] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52576] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52577] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52578] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52580] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52581] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52582] = "fixed-version: Fixed from version 6.6rc3"
> -
> -CVE_STATUS[CVE-2023-52583] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52584] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -# CVE-2023-52585 needs backporting (fixed from 6.8rc1)
> -
> -# CVE-2023-52586 needs backporting (fixed from 6.8rc1)
> -
> -CVE_STATUS[CVE-2023-52587] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52588] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52589] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -# CVE-2023-52590 needs backporting (fixed from 6.8rc1)
> -
> -CVE_STATUS[CVE-2023-52591] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52593] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52594] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52595] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52596] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52597] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52598] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52599] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52600] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52601] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52602] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52603] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52604] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52606] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52607] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52608] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52609] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52610] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52611] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52612] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52613] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-52614] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52615] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52616] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52617] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52618] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52619] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52620] = "fixed-version: Fixed from version 6.4"
> -
> -CVE_STATUS[CVE-2023-52621] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52622] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52623] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -# CVE-2023-52624 needs backporting (fixed from 6.8rc1)
> -
> -# CVE-2023-52625 needs backporting (fixed from 6.8rc1)
> -
> -CVE_STATUS[CVE-2023-52626] = "fixed-version: only affects 6.7rc2 onwards"
> -
> -CVE_STATUS[CVE-2023-52627] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2023-52628] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-52629] = "fixed-version: Fixed from version 6.6rc1"
> -
> -CVE_STATUS[CVE-2023-52630] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2023-52631] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2023-52632] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52633] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -# CVE-2023-52634 needs backporting (fixed from 6.8rc1)
> -
> -CVE_STATUS[CVE-2023-52635] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2023-52636] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2023-52637] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2023-52638] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2023-52639] = "cpe-stable-backport: Backported in 6.6.22"
> -
> -CVE_STATUS[CVE-2023-52640] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2023-52641] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2023-5345] = "fixed-version: Fixed from version 6.6rc4"
> -
> -CVE_STATUS[CVE-2023-5633] = "fixed-version: Fixed from version 6.6rc6"
> -
> -CVE_STATUS[CVE-2023-5717] = "fixed-version: Fixed from version 6.6rc7"
> -
> -CVE_STATUS[CVE-2023-5972] = "fixed-version: Fixed from version 6.6rc7"
> -
> -CVE_STATUS[CVE-2023-6039] = "fixed-version: Fixed from version 6.5rc5"
> -
> -CVE_STATUS[CVE-2023-6040] = "fixed-version: Fixed from version 5.18rc1"
> -
> -CVE_STATUS[CVE-2023-6111] = "cpe-stable-backport: Backported in 6.6.3"
> -
> -CVE_STATUS[CVE-2023-6121] = "cpe-stable-backport: Backported in 6.6.4"
> -
> -CVE_STATUS[CVE-2023-6176] = "fixed-version: Fixed from version 6.6rc2"
> -
> -CVE_STATUS[CVE-2023-6200] = "cpe-stable-backport: Backported in 6.6.9"
> -
> -# CVE-2023-6238 has no known resolution
> -
> -# CVE-2023-6240 has no known resolution
> -
> -CVE_STATUS[CVE-2023-6270] = "cpe-stable-backport: Backported in 6.6.23"
> -
> -CVE_STATUS[CVE-2023-6356] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-6531] = "cpe-stable-backport: Backported in 6.6.7"
> -
> -# CVE-2023-6535 has no known resolution
> -
> -CVE_STATUS[CVE-2023-6536] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2023-6546] = "fixed-version: Fixed from version 6.5rc7"
> -
> -CVE_STATUS[CVE-2023-6560] = "cpe-stable-backport: Backported in 6.6.5"
> -
> -CVE_STATUS[CVE-2023-6606] = "cpe-stable-backport: Backported in 6.6.9"
> -
> -CVE_STATUS[CVE-2023-6610] = "cpe-stable-backport: Backported in 6.6.13"
> -
> -CVE_STATUS[CVE-2023-6622] = "cpe-stable-backport: Backported in 6.6.7"
> -
> -CVE_STATUS[CVE-2023-6679] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2023-6817] = "cpe-stable-backport: Backported in 6.6.7"
> -
> -CVE_STATUS[CVE-2023-6915] = "cpe-stable-backport: Backported in 6.6.13"
> -
> -CVE_STATUS[CVE-2023-6931] = "cpe-stable-backport: Backported in 6.6.7"
> -
> -CVE_STATUS[CVE-2023-6932] = "cpe-stable-backport: Backported in 6.6.5"
> -
> -CVE_STATUS[CVE-2023-7042] = "cpe-stable-backport: Backported in 6.6.23"
> -
> -CVE_STATUS[CVE-2023-7192] = "fixed-version: Fixed from version 6.3rc1"
> -
> -CVE_STATUS[CVE-2024-0193] = "cpe-stable-backport: Backported in 6.6.10"
> -
> -CVE_STATUS[CVE-2024-0340] = "fixed-version: Fixed from version 6.4rc6"
> -
> -CVE_STATUS[CVE-2024-0443] = "fixed-version: Fixed from version 6.4rc7"
> -
> -CVE_STATUS[CVE-2024-0562] = "fixed-version: Fixed from version 6.0rc3"
> -
> -# CVE-2024-0564 has no known resolution
> -
> -CVE_STATUS[CVE-2024-0565] = "cpe-stable-backport: Backported in 6.6.8"
> -
> -CVE_STATUS[CVE-2024-0582] = "cpe-stable-backport: Backported in 6.6.5"
> -
> -CVE_STATUS[CVE-2024-0584] = "cpe-stable-backport: Backported in 6.6.5"
> -
> -CVE_STATUS[CVE-2024-0607] = "cpe-stable-backport: Backported in 6.6.3"
> -
> -CVE_STATUS[CVE-2024-0639] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2024-0641] = "fixed-version: Fixed from version 6.6rc5"
> -
> -CVE_STATUS[CVE-2024-0646] = "cpe-stable-backport: Backported in 6.6.7"
> -
> -CVE_STATUS[CVE-2024-0775] = "fixed-version: Fixed from version 6.4rc2"
> -
> -CVE_STATUS[CVE-2024-0841] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-1085] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-1086] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-1151] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-1312] = "fixed-version: Fixed from version 6.5rc4"
> -
> -# CVE-2024-21803 has no known resolution
> -
> -# CVE-2024-2193 has no known resolution
> -
> -CVE_STATUS[CVE-2024-22099] = "cpe-stable-backport: Backported in 6.6.23"
> -
> -# CVE-2024-22386 has no known resolution
> -
> -CVE_STATUS[CVE-2024-22705] = "cpe-stable-backport: Backported in 6.6.10"
> -
> -CVE_STATUS[CVE-2024-23196] = "fixed-version: Fixed from version 6.5rc1"
> -
> -CVE_STATUS[CVE-2024-23307] = "cpe-stable-backport: Backported in 6.6.24"
> -
> -# CVE-2024-23848 has no known resolution
> -
> -CVE_STATUS[CVE-2024-23849] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-23850] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-23851] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-24855] = "fixed-version: Fixed from version 6.5rc2"
> -
> -# CVE-2024-24857 has no known resolution
> -
> -# CVE-2024-24858 has no known resolution
> -
> -# CVE-2024-24859 has no known resolution
> -
> -CVE_STATUS[CVE-2024-24860] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-24861] = "cpe-stable-backport: Backported in 6.6.24"
> -
> -# CVE-2024-24864 has no known resolution
> -
> -# CVE-2024-25739 has no known resolution
> -
> -# CVE-2024-25740 has no known resolution
> -
> -# CVE-2024-25741 has no known resolution
> -
> -CVE_STATUS[CVE-2024-25744] = "cpe-stable-backport: Backported in 6.6.7"
> -
> -CVE_STATUS[CVE-2024-26581] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26582] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26583] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26584] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26585] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26586] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26587] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26588] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26589] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26590] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26591] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26592] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26593] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26594] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26595] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -# CVE-2024-26596 needs backporting (fixed from 6.8rc1)
> -
> -CVE_STATUS[CVE-2024-26597] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26598] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26599] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26600] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26601] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26602] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26603] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26604] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26605] = "fixed-version: only affects 6.7 onwards"
> -
> -CVE_STATUS[CVE-2024-26606] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26607] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26608] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26610] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26611] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26612] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26614] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26615] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26616] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26617] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26618] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26619] = "fixed-version: only affects 6.7rc5 onwards"
> -
> -CVE_STATUS[CVE-2024-26620] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26621] = "fixed-version: only affects 6.7 onwards"
> -
> -CVE_STATUS[CVE-2024-26622] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26623] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2024-26625] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2024-26626] = "fixed-version: only affects 6.8rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26627] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2024-26629] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26630] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26631] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26632] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26633] = "cpe-stable-backport: Backported in 6.6.14"
> -
> -CVE_STATUS[CVE-2024-26634] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26635] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26636] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26637] = "fixed-version: only affects 6.7 onwards"
> -
> -CVE_STATUS[CVE-2024-26638] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26639] = "fixed-version: only affects 6.8rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26640] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2024-26641] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2024-26642] = "cpe-stable-backport: Backported in 6.6.24"
> -
> -CVE_STATUS[CVE-2024-26643] = "cpe-stable-backport: Backported in 6.6.24"
> -
> -CVE_STATUS[CVE-2024-26644] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26645] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26646] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26647] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26648] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26649] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26650] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26651] = "cpe-stable-backport: Backported in 6.6.23"
> -
> -CVE_STATUS[CVE-2024-26652] = "cpe-stable-backport: Backported in 6.6.22"
> -
> -CVE_STATUS[CVE-2024-26653] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26654] = "cpe-stable-backport: Backported in 6.6.24"
> -
> -# CVE-2024-26655 needs backporting (fixed from 6.9rc2)
> -
> -CVE_STATUS[CVE-2024-26656] = "cpe-stable-backport: Backported in 6.6.24"
> -
> -CVE_STATUS[CVE-2024-26657] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -# CVE-2024-26658 needs backporting (fixed from 6.8rc1)
> -
> -CVE_STATUS[CVE-2024-26659] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26660] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26661] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26662] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26663] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26664] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26665] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26666] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26667] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26668] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26669] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26670] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26671] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -# CVE-2024-26672 needs backporting (fixed from 6.8rc1)
> -
> -CVE_STATUS[CVE-2024-26673] = "cpe-stable-backport: Backported in 6.6.16"
> -
> -CVE_STATUS[CVE-2024-26674] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26675] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26676] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26677] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26678] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26679] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26680] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26681] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26682] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26683] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26684] = "cpe-stable-backport: Backported in 6.6.17"
> -
> -CVE_STATUS[CVE-2024-26685] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -# CVE-2024-26686 needs backporting (fixed from 6.8rc4)
> -
> -CVE_STATUS[CVE-2024-26687] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26688] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26689] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26690] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26691] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26692] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26693] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26694] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26695] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26696] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26697] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26698] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -# CVE-2024-26699 needs backporting (fixed from 6.8rc5)
> -
> -CVE_STATUS[CVE-2024-26700] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26702] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26703] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26704] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26705] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26706] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26707] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26708] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26709] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26710] = "fixed-version: only affects 6.8rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26711] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26712] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26713] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26714] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26715] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26716] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26717] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26718] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26719] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26720] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26721] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26722] = "fixed-version: only affects 6.7rc5 onwards"
> -
> -CVE_STATUS[CVE-2024-26723] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26724] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26725] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26726] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26727] = "cpe-stable-backport: Backported in 6.6.18"
> -
> -CVE_STATUS[CVE-2024-26728] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26729] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26730] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26731] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26732] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26733] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26734] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26735] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26736] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26737] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26738] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26739] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26740] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26741] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26742] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26743] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26744] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26745] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26746] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26747] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26748] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26749] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26750] = "fixed-version: only affects 6.8rc5 onwards"
> -
> -CVE_STATUS[CVE-2024-26751] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26752] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26753] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26754] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26755] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -# CVE-2024-26756 needs backporting (fixed from 6.8rc6)
> -
> -# CVE-2024-26757 needs backporting (fixed from 6.8rc6)
> -
> -# CVE-2024-26758 needs backporting (fixed from 6.8rc6)
> -
> -CVE_STATUS[CVE-2024-26759] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26760] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26761] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26762] = "fixed-version: only affects 6.7rc1 onwards"
> -
> -CVE_STATUS[CVE-2024-26763] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26764] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26765] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26766] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26767] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26768] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26769] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26770] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26771] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26772] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26773] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26774] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26775] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26776] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26777] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26778] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26779] = "cpe-stable-backport: Backported in 6.6.19"
> -
> -CVE_STATUS[CVE-2024-26780] = "fixed-version: only affects 6.8rc4 onwards"
> -
> -CVE_STATUS[CVE-2024-26781] = "fixed-version: only affects 6.8rc6 onwards"
> -
> -CVE_STATUS[CVE-2024-26782] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26783] = "cpe-stable-backport: Backported in 6.6.22"
> -
> -# CVE-2024-26784 needs backporting (fixed from 6.8rc7)
> -
> -# CVE-2024-26785 needs backporting (fixed from 6.8rc7)
> -
> -CVE_STATUS[CVE-2024-26786] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26787] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26788] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26789] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26790] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26791] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26792] = "fixed-version: only affects 6.8rc4 onwards"
> -
> -CVE_STATUS[CVE-2024-26793] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26794] = "fixed-version: only affects 6.8rc6 onwards"
> -
> -CVE_STATUS[CVE-2024-26795] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26796] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -# CVE-2024-26797 needs backporting (fixed from 6.8rc7)
> -
> -CVE_STATUS[CVE-2024-26798] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26799] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26800] = "fixed-version: only affects 6.8rc5 onwards"
> -
> -CVE_STATUS[CVE-2024-26801] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26802] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26803] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26804] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26805] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -# CVE-2024-26806 needs backporting (fixed from 6.8rc7)
> -
> -CVE_STATUS[CVE-2024-26807] = "cpe-stable-backport: Backported in 6.6.21"
> -
> -CVE_STATUS[CVE-2024-26808] = "cpe-stable-backport: Backported in 6.6.15"
> -
> -CVE_STATUS[CVE-2024-26809] = "cpe-stable-backport: Backported in 6.6.23"
> -
> diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_6.6.bb
> b/meta/recipes-kernel/linux/linux-yocto-rt_6.6.bb
> deleted file mode 100644
> index 46ee088d75..0000000000
> --- a/meta/recipes-kernel/linux/linux-yocto-rt_6.6.bb
> +++ /dev/null
> @@ -1,48 +0,0 @@
> -KBRANCH ?= "v6.6/standard/preempt-rt/base"
> -
> -require recipes-kernel/linux/linux-yocto.inc
> -
> -# CVE exclusions
> -include recipes-kernel/linux/cve-exclusion_6.6.inc
> -
> -# Skip processing of this recipe if it is not explicitly specified as the
> -# PREFERRED_PROVIDER for virtual/kernel. This avoids errors when trying
> -# to build multiple virtual/kernel providers, e.g. as dependency of
> -# core-image-rt-sdk, core-image-rt.
> -python () {
> -    if d.getVar("KERNEL_PACKAGE_NAME") == "kernel" and
> d.getVar("PREFERRED_PROVIDER_virtual/kernel") != "linux-yocto-rt":
> -        raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel
> to linux-yocto-rt to enable it")
> -}
> -
> -SRCREV_machine ?= "0f28e3f97d1e08e950d8ebbe42ec9515bd651e5b"
> -SRCREV_meta ?= "078f986aa4c328285abd0181cc21724d832a3ae0"
> -
> -SRC_URI = "git://
> git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https
> <http://git.yoctoproject.org/linux-yocto.git;branch=$%7BKBRANCH%7D;name=machine;protocol=https>
> \
> -           git://
> git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.6;destsuffix=${KMETA};protocol=https
> <http://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.6;destsuffix=$%7BKMETA%7D;protocol=https>
> "
> -
> -LINUX_VERSION ?= "6.6.74"
> -
> -LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
> -
> -DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '',
> d)}"
> -DEPENDS += "openssl-native util-linux-native"
> -
> -PV = "${LINUX_VERSION}+git"
> -
> -KMETA = "kernel-meta"
> -KCONF_BSP_AUDIT_LEVEL = "1"
> -
> -LINUX_KERNEL_TYPE = "preempt-rt"
> -
> -COMPATIBLE_MACHINE =
> "^(qemux86|qemux86-64|qemuarm|qemuarmv5|qemuarm64|qemuppc|qemumips)$"
> -
> -KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb"
> -
> -# Functionality flags
> -KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc
> features/taskstats/taskstats.scc"
> -KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}"
> -KERNEL_FEATURES:append:qemuall = " cfg/virtio.scc
> features/drm-bochs/drm-bochs.scc"
> -KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc"
> -KERNEL_FEATURES:append:qemux86-64 = " cfg/sound.scc cfg/paravirt_kvm.scc"
> -KERNEL_FEATURES:append = "${@bb.utils.contains("DISTRO_FEATURES",
> "ptest", " features/scsi/scsi-debug.scc", "", d)}"
> -KERNEL_FEATURES:append = "${@bb.utils.contains("DISTRO_FEATURES",
> "ptest", " features/gpio/mockup.scc features/gpio/sim.scc", "", d)}"
> diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_6.6.bb
> b/meta/recipes-kernel/linux/linux-yocto-tiny_6.6.bb
> deleted file mode 100644
> index 6ad4641ef4..0000000000
> --- a/meta/recipes-kernel/linux/linux-yocto-tiny_6.6.bb
> +++ /dev/null
> @@ -1,33 +0,0 @@
> -KBRANCH ?= "v6.6/standard/tiny/base"
> -
> -LINUX_KERNEL_TYPE = "tiny"
> -KCONFIG_MODE = "--allnoconfig"
> -
> -require recipes-kernel/linux/linux-yocto.inc
> -
> -# CVE exclusions
> -include recipes-kernel/linux/cve-exclusion_6.6.inc
> -
> -LINUX_VERSION ?= "6.6.74"
> -LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
> -
> -DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '',
> d)}"
> -DEPENDS += "openssl-native util-linux-native"
> -
> -KMETA = "kernel-meta"
> -KCONF_BSP_AUDIT_LEVEL = "2"
> -
> -SRCREV_machine ?= "88adfb046ab500d81fea869024b0675c618754d9"
> -SRCREV_meta ?= "078f986aa4c328285abd0181cc21724d832a3ae0"
> -
> -PV = "${LINUX_VERSION}+git"
> -
> -SRC_URI = "git://
> git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https
> <http://git.yoctoproject.org/linux-yocto.git;branch=$%7BKBRANCH%7D;name=machine;protocol=https>
> \
> -           git://
> git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.6;destsuffix=${KMETA};protocol=https
> <http://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.6;destsuffix=$%7BKMETA%7D;protocol=https>
> "
> -
> -COMPATIBLE_MACHINE = "^(qemux86|qemux86-64|qemuarm64|qemuarm|qemuarmv5)$"
> -
> -# Functionality flags
> -KERNEL_FEATURES = ""
> -
> -KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb"
> diff --git a/meta/recipes-kernel/linux/linux-yocto_6.6.bb
> b/meta/recipes-kernel/linux/linux-yocto_6.6.bb
> deleted file mode 100644
> index 9f287f2789..0000000000
> --- a/meta/recipes-kernel/linux/linux-yocto_6.6.bb
> +++ /dev/null
> @@ -1,74 +0,0 @@
> -KBRANCH ?= "v6.6/standard/base"
> -
> -require recipes-kernel/linux/linux-yocto.inc
> -
> -# CVE exclusions
> -include recipes-kernel/linux/cve-exclusion.inc
> -include recipes-kernel/linux/cve-exclusion_6.6.inc
> -
> -# board specific branches
> -KBRANCH:qemuarm  ?= "v6.6/standard/arm-versatile-926ejs"
> -KBRANCH:qemuarm64 ?= "v6.6/standard/qemuarm64"
> -KBRANCH:qemumips ?= "v6.6/standard/mti-malta32"
> -KBRANCH:qemuppc  ?= "v6.6/standard/qemuppc"
> -KBRANCH:qemuriscv64  ?= "v6.6/standard/base"
> -KBRANCH:qemuriscv32  ?= "v6.6/standard/base"
> -KBRANCH:qemux86  ?= "v6.6/standard/base"
> -KBRANCH:qemux86-64 ?= "v6.6/standard/base"
> -KBRANCH:qemuloongarch64  ?= "v6.6/standard/base"
> -KBRANCH:qemumips64 ?= "v6.6/standard/mti-malta64"
> -
> -SRCREV_machine:qemuarm ?= "80e490532fddf18ff2565887b38ace8978e0e1bc"
> -SRCREV_machine:qemuarm64 ?= "88adfb046ab500d81fea869024b0675c618754d9"
> -SRCREV_machine:qemuloongarch64 ?=
> "88adfb046ab500d81fea869024b0675c618754d9"
> -SRCREV_machine:qemumips ?= "1cd71fe6a69cc984c96f9942367bd350d13ffa93"
> -SRCREV_machine:qemuppc ?= "88adfb046ab500d81fea869024b0675c618754d9"
> -SRCREV_machine:qemuriscv64 ?= "88adfb046ab500d81fea869024b0675c618754d9"
> -SRCREV_machine:qemuriscv32 ?= "88adfb046ab500d81fea869024b0675c618754d9"
> -SRCREV_machine:qemux86 ?= "88adfb046ab500d81fea869024b0675c618754d9"
> -SRCREV_machine:qemux86-64 ?= "88adfb046ab500d81fea869024b0675c618754d9"
> -SRCREV_machine:qemumips64 ?= "2469f917cf13e4a2c100ddf2d347017f832ca44c"
> -SRCREV_machine ?= "88adfb046ab500d81fea869024b0675c618754d9"
> -SRCREV_meta ?= "078f986aa4c328285abd0181cc21724d832a3ae0"
> -
> -# set your preferred provider of linux-yocto to 'linux-yocto-upstream',
> and you'll
> -# get the <version>/base branch, which is pure upstream -stable, and the
> same
> -# meta SRCREV as the linux-yocto-standard builds. Select your version
> using the
> -# normal PREFERRED_VERSION settings.
> -BBCLASSEXTEND = "devupstream:target"
> -SRCREV_machine:class-devupstream ?=
> "c2e4205116126ab79bfa17a5e8dd73698e3f7299"
> -PN:class-devupstream = "linux-yocto-upstream"
> -KBRANCH:class-devupstream = "v6.6/base"
> -
> -SRC_URI = "git://
> git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH};protocol=https
> <http://git.yoctoproject.org/linux-yocto.git;name=machine;branch=$%7BKBRANCH%7D;protocol=https>
> \
> -           git://
> git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.6;destsuffix=${KMETA};protocol=https
> <http://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.6;destsuffix=$%7BKMETA%7D;protocol=https>
> "
> -
> -LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
> -LINUX_VERSION ?= "6.6.74"
> -
> -PV = "${LINUX_VERSION}+git"
> -
> -KMETA = "kernel-meta"
> -KCONF_BSP_AUDIT_LEVEL = "1"
> -
> -KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb"
> -
> -COMPATIBLE_MACHINE =
> "^(qemuarm|qemuarmv5|qemuarm64|qemux86|qemuppc|qemuppc64|qemumips|qemumips64|qemux86-64|qemuriscv64|qemuriscv32|qemuloongarch64)$"
> -
> -# Functionality flags
> -KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc"
> -KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}"
> -KERNEL_FEATURES:append:qemuall = " cfg/virtio.scc
> features/drm-bochs/drm-bochs.scc cfg/net/mdio.scc"
> -KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc"
> -KERNEL_FEATURES:append:qemux86-64 = " cfg/sound.scc cfg/paravirt_kvm.scc"
> -KERNEL_FEATURES:append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32",
> " cfg/x32.scc", "", d)}"
> -KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES",
> "ptest", " features/scsi/scsi-debug.scc features/nf_tables/nft_test.scc",
> "", d)}"
> -KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES",
> "ptest", " features/gpio/mockup.scc features/gpio/sim.scc", "", d)}"
> -# libteam ptests from meta-oe needs it
> -KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES",
> "ptest", " features/net/team/team.scc", "", d)}"
> -KERNEL_FEATURES:append:powerpc = " arch/powerpc/powerpc-debug.scc"
> -KERNEL_FEATURES:append:powerpc64 = " arch/powerpc/powerpc-debug.scc"
> -KERNEL_FEATURES:append:powerpc64le = " arch/powerpc/powerpc-debug.scc"
> -
> -INSANE_SKIP:kernel-vmlinux:qemuppc64 = "textrel"
> -
> --
> 2.39.2
>
>

-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end
- "Use the force Harry" - Gandalf, Star Trek II

[-- Attachment #2: Type: text/html, Size: 322263 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core] [PATCH 4/5] poky-alt: switch preferred kernel to 6.12
  2025-02-09 23:56 ` [PATCH 4/5] poky-alt: switch preferred kernel to 6.12 bruce.ashfield
  2025-02-10  0:03   ` Patchtest results for " patchtest
@ 2025-02-10  0:32   ` Yoann Congal
  2025-02-10  0:33     ` Bruce Ashfield
  1 sibling, 1 reply; 18+ messages in thread
From: Yoann Congal @ 2025-02-10  0:32 UTC (permalink / raw)
  To: bruce.ashfield, richard.purdie; +Cc: openembedded-core

Hi Bruce,

Le 10/02/2025 à 00:56, Bruce Ashfield via lists.openembedded.org a écrit :
> From: Bruce Ashfield <bruce.ashfield@gmail.com>
> 
> 6.6 is being removed from the upcoming LTS release, so we
> adjust the alt config to use the 6.12 reference.
> 
> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
> ---
>  meta-poky/conf/distro/include/poky-distro-alt-test-config.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc b/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
> index 3e10251e8b..a24d5e15ab 100644
> --- a/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
> +++ b/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
> @@ -2,7 +2,7 @@
>  DISTRO_FEATURES:append = " pam usrmerge"
>  
>  # Use our alternate kernel version
> -PREFERRED_VERSION_linux-yocto = "6.6%"
> +PREFERRED_VERSION_linux-yocto = "6.1%"

Shouldn't this read
PREFERRED_VERSION_linux-yocto = "6.12%"
(a missing "2") ?

>  
>  # Ensure the kernel nfs server is enabled
>  KERNEL_FEATURES:append:pn-linux-yocto = " features/nfsd/nfsd-enable.scc"
> 
> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#211061): https://lists.openembedded.org/g/openembedded-core/message/211061
> Mute This Topic: https://lists.openembedded.org/mt/111094343/4316185
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [yoann.congal@smile.fr]
> -=-=-=-=-=-=-=-=-=-=-=-
> 

-- 
Yoann Congal
Smile ECS - Tech Expert



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core] [PATCH 4/5] poky-alt: switch preferred kernel to 6.12
  2025-02-10  0:32   ` [OE-core] " Yoann Congal
@ 2025-02-10  0:33     ` Bruce Ashfield
  0 siblings, 0 replies; 18+ messages in thread
From: Bruce Ashfield @ 2025-02-10  0:33 UTC (permalink / raw)
  To: Yoann Congal; +Cc: richard.purdie, openembedded-core

[-- Attachment #1: Type: text/plain, Size: 2063 bytes --]

On Sun, Feb 9, 2025 at 7:32 PM Yoann Congal <yoann.congal@smile.fr> wrote:

> Hi Bruce,
>
> Le 10/02/2025 à 00:56, Bruce Ashfield via lists.openembedded.org a écrit :
> > From: Bruce Ashfield <bruce.ashfield@gmail.com>
> >
> > 6.6 is being removed from the upcoming LTS release, so we
> > adjust the alt config to use the 6.12 reference.
> >
> > Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
> > ---
> >  meta-poky/conf/distro/include/poky-distro-alt-test-config.inc | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git
> a/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
> b/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
> > index 3e10251e8b..a24d5e15ab 100644
> > --- a/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
> > +++ b/meta-poky/conf/distro/include/poky-distro-alt-test-config.inc
> > @@ -2,7 +2,7 @@
> >  DISTRO_FEATURES:append = " pam usrmerge"
> >
> >  # Use our alternate kernel version
> > -PREFERRED_VERSION_linux-yocto = "6.6%"
> > +PREFERRED_VERSION_linux-yocto = "6.1%"
>
> Shouldn't this read
> PREFERRED_VERSION_linux-yocto = "6.12%"
> (a missing "2") ?
>

It is!!!

I'll re-send that now.

Bruce



>
> >
> >  # Ensure the kernel nfs server is enabled
> >  KERNEL_FEATURES:append:pn-linux-yocto = " features/nfsd/nfsd-enable.scc"
> >
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#211061):
> https://lists.openembedded.org/g/openembedded-core/message/211061
> > Mute This Topic: https://lists.openembedded.org/mt/111094343/4316185
> > Group Owner: openembedded-core+owner@lists.openembedded.org
> > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [
> yoann.congal@smile.fr]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >
>
> --
> Yoann Congal
> Smile ECS - Tech Expert
>
>

-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end
- "Use the force Harry" - Gandalf, Star Trek II

[-- Attachment #2: Type: text/html, Size: 3993 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2025-02-10  0:33 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-09 23:56 [PATCH 0/5] kernel-yocto: consolidated pull request bruce.ashfield
2025-02-09 23:56 ` [PATCH 1/5] kernel: drop 6.6 reference kernels bruce.ashfield
2025-02-10  0:13   ` Bruce Ashfield
2025-02-09 23:56 ` [PATCH 2/5] kernel: remove unused 6.10 CVE exclusion file bruce.ashfield
2025-02-09 23:56 ` [PATCH 3/5] linux-yocto/6.12: update to v6.12.12 bruce.ashfield
2025-02-09 23:56 ` [PATCH 4/5] poky-alt: switch preferred kernel to 6.12 bruce.ashfield
2025-02-10  0:03   ` Patchtest results for " patchtest
2025-02-10  0:32   ` [OE-core] " Yoann Congal
2025-02-10  0:33     ` Bruce Ashfield
2025-02-09 23:56 ` [PATCH 5/5] yocto-bsp: drop linux-yocto 6.6 bbappend bruce.ashfield
2025-02-10  0:03   ` Patchtest results for " patchtest
  -- strict thread matches above, loose matches on Subject: below --
2024-09-06 17:45 [PATCH 0/5] kernel-yocto: consolidated pull request bruce.ashfield
2024-05-30 21:44 bruce.ashfield
2022-05-19 15:15 bruce.ashfield
2020-08-27 17:53 Bruce Ashfield
2016-11-16 14:24 Bruce Ashfield
2016-09-08  1:08 Bruce Ashfield
2013-02-01 14:02 Bruce Ashfield

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox