diff options
Diffstat (limited to 'meta')
21 files changed, 18335 insertions, 51 deletions
diff --git a/meta/classes-global/base.bbclass b/meta/classes-global/base.bbclass index 6de17d1bb5..cf303c237a 100644 --- a/meta/classes-global/base.bbclass +++ b/meta/classes-global/base.bbclass | |||
| @@ -127,7 +127,11 @@ def setup_hosttools_dir(dest, toolsvar, d, fatal=True): | |||
| 127 | # clean up dead symlink | 127 | # clean up dead symlink |
| 128 | if os.path.islink(desttool): | 128 | if os.path.islink(desttool): |
| 129 | os.unlink(desttool) | 129 | os.unlink(desttool) |
| 130 | srctool = bb.utils.which(path, tool, executable=True) | 130 | |
| 131 | # Prefer gnu-prefixed binaries, if available | ||
| 132 | srctool = (bb.utils.which(path, "gnu" + tool, executable=True) or | ||
| 133 | bb.utils.which(path, tool, executable=True)) | ||
| 134 | |||
| 131 | # gcc/g++ may link to ccache on some hosts, e.g., | 135 | # gcc/g++ may link to ccache on some hosts, e.g., |
| 132 | # /usr/local/bin/ccache/gcc -> /usr/bin/ccache, then which(gcc) | 136 | # /usr/local/bin/ccache/gcc -> /usr/bin/ccache, then which(gcc) |
| 133 | # would return /usr/local/bin/ccache/gcc, but what we need is | 137 | # would return /usr/local/bin/ccache/gcc, but what we need is |
diff --git a/meta/classes-recipe/rootfs-postcommands.bbclass b/meta/classes-recipe/rootfs-postcommands.bbclass index 8b5822a0b5..d3a569ba3e 100644 --- a/meta/classes-recipe/rootfs-postcommands.bbclass +++ b/meta/classes-recipe/rootfs-postcommands.bbclass | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | # | 5 | # |
| 6 | 6 | ||
| 7 | # Zap the root password if empty-root-password feature is not enabled | 7 | # Zap the root password if empty-root-password feature is not enabled |
| 8 | ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("IMAGE_FEATURES", "empty-root-password", "", "zap_empty_root_password ",d)}' | 8 | ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("IMAGE_FEATURES", "empty-root-password", "add_empty_root_password_note", "zap_empty_root_password ",d)}' |
| 9 | 9 | ||
| 10 | # Allow dropbear/openssh to accept logins from accounts with an empty password string if allow-empty-password is enabled | 10 | # Allow dropbear/openssh to accept logins from accounts with an empty password string if allow-empty-password is enabled |
| 11 | ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("IMAGE_FEATURES", "allow-empty-password", "ssh_allow_empty_password ", "",d)}' | 11 | ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("IMAGE_FEATURES", "allow-empty-password", "ssh_allow_empty_password ", "",d)}' |
| @@ -256,6 +256,13 @@ zap_empty_root_password () { | |||
| 256 | } | 256 | } |
| 257 | 257 | ||
| 258 | # | 258 | # |
| 259 | # This function adds a note to the login banner that the system is configured for root logins without password | ||
| 260 | # | ||
| 261 | add_empty_root_password_note () { | ||
| 262 | echo "Type 'root' to login with superuser privileges (no password will be asked).\n" >> ${IMAGE_ROOTFS}/etc/issue | ||
| 263 | } | ||
| 264 | |||
| 265 | # | ||
| 259 | # allow dropbear/openssh to accept logins from accounts with an empty password string | 266 | # allow dropbear/openssh to accept logins from accounts with an empty password string |
| 260 | # | 267 | # |
| 261 | ssh_allow_empty_password () { | 268 | ssh_allow_empty_password () { |
diff --git a/meta/classes-recipe/testimage.bbclass b/meta/classes-recipe/testimage.bbclass index 847a6f18a8..844c0f19ad 100644 --- a/meta/classes-recipe/testimage.bbclass +++ b/meta/classes-recipe/testimage.bbclass | |||
| @@ -131,12 +131,22 @@ do_testimage[depends] += "${TESTIMAGEDEPENDS}" | |||
| 131 | do_testimage[lockfiles] += "${TESTIMAGELOCK}" | 131 | do_testimage[lockfiles] += "${TESTIMAGELOCK}" |
| 132 | 132 | ||
| 133 | def testimage_sanity(d): | 133 | def testimage_sanity(d): |
| 134 | if (d.getVar('TEST_TARGET') == 'simpleremote' | 134 | test_target = d.getVar('TEST_TARGET') |
| 135 | if (test_target == 'simpleremote' | ||
| 135 | and (not d.getVar('TEST_TARGET_IP') | 136 | and (not d.getVar('TEST_TARGET_IP') |
| 136 | or not d.getVar('TEST_SERVER_IP'))): | 137 | or not d.getVar('TEST_SERVER_IP'))): |
| 137 | bb.fatal('When TEST_TARGET is set to "simpleremote" ' | 138 | bb.fatal('When TEST_TARGET is set to "simpleremote" ' |
| 138 | 'TEST_TARGET_IP and TEST_SERVER_IP are needed too.') | 139 | 'TEST_TARGET_IP and TEST_SERVER_IP are needed too.') |
| 139 | 140 | ||
| 141 | image_features = d.getVar('IMAGE_FEATURES') | ||
| 142 | needed_features = "allow-empty-password empty-root-password allow-root-login" | ||
| 143 | present_features = set(image_features.split()) & set(needed_features.split()) | ||
| 144 | if (test_target in ('simpleremote', 'qemu') | ||
| 145 | and (len(present_features) < len(needed_features.split()))): | ||
| 146 | bb.fatal("When TEST_TARGET is '{}', IMAGE_FEATURES need to include '{}', and they are currently set to '{}'. This can be done for all images in a local build by running\n\nbitbake-config-build enable-fragment core/yocto/root-login-with-empty-password\n\nand rebuilding the image-under-test." | ||
| 147 | .format(test_target, needed_features, image_features)) | ||
| 148 | |||
| 149 | |||
| 140 | def get_testimage_configuration(d, test_type, machine): | 150 | def get_testimage_configuration(d, test_type, machine): |
| 141 | import platform | 151 | import platform |
| 142 | from oeqa.utils.metadata import get_layers | 152 | from oeqa.utils.metadata import get_layers |
diff --git a/meta/conf/fragments/yocto/root-login-with-empty-password.conf b/meta/conf/fragments/yocto/root-login-with-empty-password.conf new file mode 100644 index 0000000000..86aec0e152 --- /dev/null +++ b/meta/conf/fragments/yocto/root-login-with-empty-password.conf | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | BB_CONF_FRAGMENT_SUMMARY = "Log in as root without password on serial console and over ssh (use with caution)." | ||
| 2 | BB_CONF_FRAGMENT_DESCRIPTION = "By default images are built such that root login is disabled \ | ||
| 3 | (which is the preferred, secure default). However, for testing and development purposes it can \ | ||
| 4 | be beneficial to be able to log in as root, both on serial console and over ssh connections, \ | ||
| 5 | which is what this fragment enables. Use with great caution, and ideally only in tightly \ | ||
| 6 | controlled local builds and CI testing environments, and never in artefacts that are deployed \ | ||
| 7 | into products. \ | ||
| 8 | " | ||
| 9 | |||
| 10 | EXTRA_IMAGE_FEATURES += "allow-empty-password empty-root-password allow-root-login" | ||
diff --git a/meta/files/layers.example.json b/meta/files/layers.example.json index 0a6a6a7b48..f3b6522083 100644 --- a/meta/files/layers.example.json +++ b/meta/files/layers.example.json | |||
| @@ -24,8 +24,7 @@ | |||
| 24 | } | 24 | } |
| 25 | }, | 25 | }, |
| 26 | "rev": "0a96edae609a3f48befac36af82cf1eed6786b4a" | 26 | "rev": "0a96edae609a3f48befac36af82cf1eed6786b4a" |
| 27 | }, | 27 | } |
| 28 | "path": "meta-intel" | ||
| 29 | }, | 28 | }, |
| 30 | "poky": { | 29 | "poky": { |
| 31 | "git-remote": { | 30 | "git-remote": { |
diff --git a/meta/files/layers.schema.json b/meta/files/layers.schema.json index 659ee8da49..b5c13fdb5c 100644 --- a/meta/files/layers.schema.json +++ b/meta/files/layers.schema.json | |||
| @@ -17,9 +17,6 @@ | |||
| 17 | "type": "object", | 17 | "type": "object", |
| 18 | "description": "The upstream source from which a set of layers may be fetched", | 18 | "description": "The upstream source from which a set of layers may be fetched", |
| 19 | "additionalProperties": false, | 19 | "additionalProperties": false, |
| 20 | "required": [ | ||
| 21 | "path" | ||
| 22 | ], | ||
| 23 | "properties": { | 20 | "properties": { |
| 24 | "path": { | 21 | "path": { |
| 25 | "description": "The path where this layer source will be placed when fetching", | 22 | "description": "The path where this layer source will be placed when fetching", |
diff --git a/meta/lib/bbconfigbuild/configfragments.py b/meta/lib/bbconfigbuild/configfragments.py index 21baedc9a4..6fdac33a5d 100644 --- a/meta/lib/bbconfigbuild/configfragments.py +++ b/meta/lib/bbconfigbuild/configfragments.py | |||
| @@ -97,12 +97,12 @@ class ConfigFragmentsPlugin(LayerPlugin): | |||
| 97 | print_fragment(f, args.verbose, is_enabled=False) | 97 | print_fragment(f, args.verbose, is_enabled=False) |
| 98 | print('') | 98 | print('') |
| 99 | 99 | ||
| 100 | def fragment_exists(self, fragmentname): | 100 | def get_fragment(self, fragmentname, fragments): |
| 101 | for layername, layerdata in self.discover_fragments().items(): | 101 | for layername, layerdata in fragments.items(): |
| 102 | for f in layerdata['fragments']: | 102 | for f in layerdata['fragments']: |
| 103 | if f['name'] == fragmentname: | 103 | if f['name'] == fragmentname: |
| 104 | return True | 104 | return f |
| 105 | return False | 105 | return None |
| 106 | 106 | ||
| 107 | def fragment_prefix(self, fragmentname): | 107 | def fragment_prefix(self, fragmentname): |
| 108 | return fragmentname.split("/",1)[0] | 108 | return fragmentname.split("/",1)[0] |
| @@ -136,14 +136,19 @@ class ConfigFragmentsPlugin(LayerPlugin): | |||
| 136 | enabled_fragments.append(f) | 136 | enabled_fragments.append(f) |
| 137 | return " ".join(enabled_fragments), None, 0, True | 137 | return " ".join(enabled_fragments), None, 0, True |
| 138 | 138 | ||
| 139 | fragments = self.discover_fragments() | ||
| 139 | for f in args.fragmentname: | 140 | for f in args.fragmentname: |
| 140 | if not self.fragment_exists(f) and not self.builtin_fragment_exists(f): | 141 | if not self.get_fragment(f, fragments) and not self.builtin_fragment_exists(f): |
| 141 | raise Exception("Fragment {} does not exist; use 'list-fragments' to see the full list.".format(f)) | 142 | raise Exception("Fragment {} does not exist; use 'list-fragments' to see the full list.".format(f)) |
| 142 | 143 | ||
| 143 | self.create_conf(args.confpath) | 144 | self.create_conf(args.confpath) |
| 144 | modified = bb.utils.edit_metadata_file(args.confpath, ["OE_FRAGMENTS"], enable_helper) | 145 | modified = bb.utils.edit_metadata_file(args.confpath, ["OE_FRAGMENTS"], enable_helper) |
| 145 | if modified: | 146 | if modified: |
| 146 | print("Fragment {} added to {}.".format(", ".join(args.fragmentname), args.confpath)) | 147 | for f in args.fragmentname: |
| 148 | print("Fragment {} added to {}.".format(f, args.confpath)) | ||
| 149 | f_info = self.get_fragment(f, fragments) | ||
| 150 | if f_info and not args.quiet: | ||
| 151 | print('\nFragment summary: {}\n\nFragment description:\n{}\n'.format(f_info['summary'],f_info['description'])) | ||
| 147 | 152 | ||
| 148 | def do_disable_fragment(self, args): | 153 | def do_disable_fragment(self, args): |
| 149 | """ Disable a fragment in the local build configuration """ | 154 | """ Disable a fragment in the local build configuration """ |
| @@ -192,6 +197,7 @@ class ConfigFragmentsPlugin(LayerPlugin): | |||
| 192 | 197 | ||
| 193 | parser_enable_fragment = self.add_command(sp, 'enable-fragment', self.do_enable_fragment, parserecipes=False) | 198 | parser_enable_fragment = self.add_command(sp, 'enable-fragment', self.do_enable_fragment, parserecipes=False) |
| 194 | parser_enable_fragment.add_argument("--confpath", default=default_confpath, help='Configuration file which contains a list of enabled fragments (default is {}).'.format(default_confpath)) | 199 | parser_enable_fragment.add_argument("--confpath", default=default_confpath, help='Configuration file which contains a list of enabled fragments (default is {}).'.format(default_confpath)) |
| 200 | parser_list_fragments.add_argument('--quiet', '-q', action='store_true', help='Do not print descriptions of the newly enabled fragments') | ||
| 195 | parser_enable_fragment.add_argument('fragmentname', help='The name of the fragment (use list-fragments to see them)', nargs='+') | 201 | parser_enable_fragment.add_argument('fragmentname', help='The name of the fragment (use list-fragments to see them)', nargs='+') |
| 196 | 202 | ||
| 197 | parser_disable_fragment = self.add_command(sp, 'disable-fragment', self.do_disable_fragment, parserecipes=False) | 203 | parser_disable_fragment = self.add_command(sp, 'disable-fragment', self.do_disable_fragment, parserecipes=False) |
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/CVE-2025-24912-01.patch b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/CVE-2025-24912-01.patch new file mode 100644 index 0000000000..36660b5880 --- /dev/null +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/CVE-2025-24912-01.patch | |||
| @@ -0,0 +1,79 @@ | |||
| 1 | From 726432d7622cc0088ac353d073b59628b590ea44 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Jouni Malinen <j@w1.fi> | ||
| 3 | Date: Sat, 25 Jan 2025 11:21:16 +0200 | ||
| 4 | Subject: [PATCH] RADIUS: Drop pending request only when accepting the response | ||
| 5 | |||
| 6 | The case of an invalid authenticator in a RADIUS response could imply | ||
| 7 | that the response is not from the correct RADIUS server and as such, | ||
| 8 | such a response should be discarded without changing internal state for | ||
| 9 | the pending request. The case of an unknown response (RADIUS_RX_UNKNOWN) | ||
| 10 | is somewhat more complex since it could have been indicated before | ||
| 11 | validating the authenticator. In any case, it seems better to change the | ||
| 12 | state for the pending request only when we have fully accepted the | ||
| 13 | response. | ||
| 14 | |||
| 15 | Allowing the internal state of pending RADIUS request to change based on | ||
| 16 | responses that are not fully validation could have allow at least a | ||
| 17 | theoretical DoS attack if an attacker were to have means for injecting | ||
| 18 | RADIUS messages to the network using the IP address of the real RADIUS | ||
| 19 | server and being able to do so more quickly than the real server and | ||
| 20 | with the matching identifier from the request header (i.e., either by | ||
| 21 | flooding 256 responses quickly or by having means to capture the RADIUS | ||
| 22 | request). These should not really be realistic options in a properly | ||
| 23 | protected deployment, but nevertheless it is good to be more careful in | ||
| 24 | processing RADIUS responses. | ||
| 25 | |||
| 26 | Remove a pending RADIUS request from the internal list only when having | ||
| 27 | fully accepted a matching RADIUS response, i.e., after one of the | ||
| 28 | registered handlers has confirmed that the authenticator is valid and | ||
| 29 | processing of the response has succeeded. | ||
| 30 | |||
| 31 | Signed-off-by: Jouni Malinen <j@w1.fi> | ||
| 32 | |||
| 33 | CVE: CVE-2025-24912 | ||
| 34 | Upstream-Status: Backport [https://w1.fi/cgit/hostap/commit/?id=726432d7622cc0088ac353d073b59628b590ea44] | ||
| 35 | Signed-off-by: Peter Marko <peter.marko@siemens.com> | ||
| 36 | --- | ||
| 37 | src/radius/radius_client.c | 15 +++++++-------- | ||
| 38 | 1 file changed, 7 insertions(+), 8 deletions(-) | ||
| 39 | |||
| 40 | diff --git a/src/radius/radius_client.c b/src/radius/radius_client.c | ||
| 41 | index 2a7f36170..7909b29a7 100644 | ||
| 42 | --- a/src/radius/radius_client.c | ||
| 43 | +++ b/src/radius/radius_client.c | ||
| 44 | @@ -1259,13 +1259,6 @@ static void radius_client_receive(int sock, void *eloop_ctx, void *sock_ctx) | ||
| 45 | roundtrip / 100, roundtrip % 100); | ||
| 46 | rconf->round_trip_time = roundtrip; | ||
| 47 | |||
| 48 | - /* Remove ACKed RADIUS packet from retransmit list */ | ||
| 49 | - if (prev_req) | ||
| 50 | - prev_req->next = req->next; | ||
| 51 | - else | ||
| 52 | - radius->msgs = req->next; | ||
| 53 | - radius->num_msgs--; | ||
| 54 | - | ||
| 55 | for (i = 0; i < num_handlers; i++) { | ||
| 56 | RadiusRxResult res; | ||
| 57 | res = handlers[i].handler(msg, req->msg, req->shared_secret, | ||
| 58 | @@ -1276,6 +1269,13 @@ static void radius_client_receive(int sock, void *eloop_ctx, void *sock_ctx) | ||
| 59 | radius_msg_free(msg); | ||
| 60 | /* fall through */ | ||
| 61 | case RADIUS_RX_QUEUED: | ||
| 62 | + /* Remove ACKed RADIUS packet from retransmit list */ | ||
| 63 | + if (prev_req) | ||
| 64 | + prev_req->next = req->next; | ||
| 65 | + else | ||
| 66 | + radius->msgs = req->next; | ||
| 67 | + radius->num_msgs--; | ||
| 68 | + | ||
| 69 | radius_client_msg_free(req); | ||
| 70 | return; | ||
| 71 | case RADIUS_RX_INVALID_AUTHENTICATOR: | ||
| 72 | @@ -1297,7 +1297,6 @@ static void radius_client_receive(int sock, void *eloop_ctx, void *sock_ctx) | ||
| 73 | msg_type, hdr->code, hdr->identifier, | ||
| 74 | invalid_authenticator ? " [INVALID AUTHENTICATOR]" : | ||
| 75 | ""); | ||
| 76 | - radius_client_msg_free(req); | ||
| 77 | |||
| 78 | fail: | ||
| 79 | radius_msg_free(msg); | ||
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/CVE-2025-24912-02.patch b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/CVE-2025-24912-02.patch new file mode 100644 index 0000000000..add2e47048 --- /dev/null +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/CVE-2025-24912-02.patch | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | From 339a334551ca911187cc870f4f97ef08e11db109 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Jouni Malinen <quic_jouni@quicinc.com> | ||
| 3 | Date: Wed, 5 Feb 2025 19:23:39 +0200 | ||
| 4 | Subject: [PATCH] RADIUS: Fix pending request dropping | ||
| 5 | |||
| 6 | A recent change to this moved the place where the processed RADIUS | ||
| 7 | request was removed from the pending list to happen after the message | ||
| 8 | handler had been called. This did not take into account possibility of | ||
| 9 | the handler adding a new pending request in the list and the prev_req | ||
| 10 | pointer not necessarily pointing to the correct entry anymore. As such, | ||
| 11 | some of the pending requests could have been lost and that would result | ||
| 12 | in not being able to process responses to those requests and also, to a | ||
| 13 | memory leak. | ||
| 14 | |||
| 15 | Fix this by determining prev_req at the point when the pending request | ||
| 16 | is being removed, i.e., after the handler function has already added a | ||
| 17 | new entry. | ||
| 18 | |||
| 19 | Fixes: 726432d7622c ("RADIUS: Drop pending request only when accepting the response") | ||
| 20 | Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com> | ||
| 21 | |||
| 22 | CVE: CVE-2025-24912 | ||
| 23 | Upstream-Status: Backport [https://w1.fi/cgit/hostap/commit/?id=339a334551ca911187cc870f4f97ef08e11db109] | ||
| 24 | Signed-off-by: Peter Marko <peter.marko@siemens.com> | ||
| 25 | --- | ||
| 26 | src/radius/radius_client.c | 10 +++++++--- | ||
| 27 | 1 file changed, 7 insertions(+), 3 deletions(-) | ||
| 28 | |||
| 29 | diff --git a/src/radius/radius_client.c b/src/radius/radius_client.c | ||
| 30 | index 7909b29a7..d4faa7936 100644 | ||
| 31 | --- a/src/radius/radius_client.c | ||
| 32 | +++ b/src/radius/radius_client.c | ||
| 33 | @@ -1099,7 +1099,7 @@ static void radius_client_receive(int sock, void *eloop_ctx, void *sock_ctx) | ||
| 34 | struct radius_hdr *hdr; | ||
| 35 | struct radius_rx_handler *handlers; | ||
| 36 | size_t num_handlers, i; | ||
| 37 | - struct radius_msg_list *req, *prev_req; | ||
| 38 | + struct radius_msg_list *req, *prev_req, *r; | ||
| 39 | struct os_reltime now; | ||
| 40 | struct hostapd_radius_server *rconf; | ||
| 41 | int invalid_authenticator = 0; | ||
| 42 | @@ -1224,7 +1224,6 @@ static void radius_client_receive(int sock, void *eloop_ctx, void *sock_ctx) | ||
| 43 | break; | ||
| 44 | } | ||
| 45 | |||
| 46 | - prev_req = NULL; | ||
| 47 | req = radius->msgs; | ||
| 48 | while (req) { | ||
| 49 | /* TODO: also match by src addr:port of the packet when using | ||
| 50 | @@ -1236,7 +1235,6 @@ static void radius_client_receive(int sock, void *eloop_ctx, void *sock_ctx) | ||
| 51 | hdr->identifier) | ||
| 52 | break; | ||
| 53 | |||
| 54 | - prev_req = req; | ||
| 55 | req = req->next; | ||
| 56 | } | ||
| 57 | |||
| 58 | @@ -1270,6 +1268,12 @@ static void radius_client_receive(int sock, void *eloop_ctx, void *sock_ctx) | ||
| 59 | /* fall through */ | ||
| 60 | case RADIUS_RX_QUEUED: | ||
| 61 | /* Remove ACKed RADIUS packet from retransmit list */ | ||
| 62 | + prev_req = NULL; | ||
| 63 | + for (r = radius->msgs; r; r = r->next) { | ||
| 64 | + if (r == req) | ||
| 65 | + break; | ||
| 66 | + prev_req = r; | ||
| 67 | + } | ||
| 68 | if (prev_req) | ||
| 69 | prev_req->next = req->next; | ||
| 70 | else | ||
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.11.bb b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.11.bb index 6dc76494f7..ffb1cf617d 100644 --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.11.bb +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant_2.11.bb | |||
| @@ -16,6 +16,8 @@ SRC_URI = "http://w1.fi/releases/wpa_supplicant-${PV}.tar.gz \ | |||
| 16 | file://wpa_supplicant.conf-sane \ | 16 | file://wpa_supplicant.conf-sane \ |
| 17 | file://99_wpa_supplicant \ | 17 | file://99_wpa_supplicant \ |
| 18 | file://0001-macsec_linux-Hardware-offload-requires-Linux-headers.patch \ | 18 | file://0001-macsec_linux-Hardware-offload-requires-Linux-headers.patch \ |
| 19 | file://CVE-2025-24912-01.patch \ | ||
| 20 | file://CVE-2025-24912-02.patch \ | ||
| 19 | " | 21 | " |
| 20 | SRC_URI[sha256sum] = "912ea06f74e30a8e36fbb68064d6cdff218d8d591db0fc5d75dee6c81ac7fc0a" | 22 | SRC_URI[sha256sum] = "912ea06f74e30a8e36fbb68064d6cdff218d8d591db0fc5d75dee6c81ac7fc0a" |
| 21 | 23 | ||
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index c203f2f8f1..22972baaae 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc | |||
| @@ -451,7 +451,7 @@ pkg_postinst:${PN}:prepend () { | |||
| 451 | # Need path to saved utils, but they may have be removed on upgrade of busybox | 451 | # Need path to saved utils, but they may have be removed on upgrade of busybox |
| 452 | # Only use shell to get paths. Also capture if busybox was saved. | 452 | # Only use shell to get paths. Also capture if busybox was saved. |
| 453 | BUSYBOX="" | 453 | BUSYBOX="" |
| 454 | if [ "x$D" = "x" ] ; then | 454 | if [ "x$D" = "x" ] ; then |
| 455 | for busybox_rmdir in /tmp/busyboxrm-*; do | 455 | for busybox_rmdir in /tmp/busyboxrm-*; do |
| 456 | if [ "$busybox_rmdir" != '/tmp/busyboxrm-*' ] ; then | 456 | if [ "$busybox_rmdir" != '/tmp/busyboxrm-*' ] ; then |
| 457 | export PATH=$busybox_rmdir:$PATH | 457 | export PATH=$busybox_rmdir:$PATH |
| @@ -471,7 +471,7 @@ pkg_postinst:${PN}:append () { | |||
| 471 | rm -f $BUSYBOX | 471 | rm -f $BUSYBOX |
| 472 | fi | 472 | fi |
| 473 | fi | 473 | fi |
| 474 | } | 474 | } |
| 475 | 475 | ||
| 476 | pkg_prerm:${PN} () { | 476 | pkg_prerm:${PN} () { |
| 477 | # This is so you can make busybox commit suicide - removing busybox with no other packages | 477 | # This is so you can make busybox commit suicide - removing busybox with no other packages |
| @@ -499,7 +499,7 @@ pkg_prerm:${PN} () { | |||
| 499 | if [ -n "$(readlink -f /bin/sh | grep busybox)" ] ; then | 499 | if [ -n "$(readlink -f /bin/sh | grep busybox)" ] ; then |
| 500 | BUSYBOX=$(readlink -f /bin/sh) | 500 | BUSYBOX=$(readlink -f /bin/sh) |
| 501 | cp $BUSYBOX $tmpdir/$(basename $BUSYBOX) | 501 | cp $BUSYBOX $tmpdir/$(basename $BUSYBOX) |
| 502 | update-alternatives --install /bin/sh sh $tmpdir/$(basename $BUSYBOX) 1 | 502 | update-alternatives --install /bin/sh sh $tmpdir/$(basename $BUSYBOX) 1 |
| 503 | fi | 503 | fi |
| 504 | } | 504 | } |
| 505 | 505 | ||
diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_20251021.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_20251021.bb index 70fd983b0c..66d3be90e7 100644 --- a/meta/recipes-kernel/linux-firmware/linux-firmware_20251021.bb +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_20251021.bb | |||
| @@ -643,7 +643,6 @@ PACKAGES =+ "${PN}-amphion-vpu-license ${PN}-amphion-vpu \ | |||
| 643 | ${PN}-qca-wcn6750 \ | 643 | ${PN}-qca-wcn6750 \ |
| 644 | ${PN}-qca-qca2066 \ | 644 | ${PN}-qca-qca2066 \ |
| 645 | ${PN}-qca-wcn7850 \ | 645 | ${PN}-qca-wcn7850 \ |
| 646 | ${PN}-qca-misc \ | ||
| 647 | \ | 646 | \ |
| 648 | ${PN}-imx-sdma-license ${PN}-imx-sdma-imx6q ${PN}-imx-sdma-imx7d \ | 647 | ${PN}-imx-sdma-license ${PN}-imx-sdma-imx6q ${PN}-imx-sdma-imx7d \ |
| 649 | \ | 648 | \ |
| @@ -934,7 +933,6 @@ LICENSE:${PN}-qca-wcn399x = "Firmware-qualcommAthos_ath10k" | |||
| 934 | LICENSE:${PN}-qca-wcn6750 = "Firmware-qualcommAthos_ath10k" | 933 | LICENSE:${PN}-qca-wcn6750 = "Firmware-qualcommAthos_ath10k" |
| 935 | LICENSE:${PN}-qca-qca2066 = "Firmware-qualcommAthos_ath10k" | 934 | LICENSE:${PN}-qca-qca2066 = "Firmware-qualcommAthos_ath10k" |
| 936 | LICENSE:${PN}-qca-wcn7850 = "Firmware-qcom" | 935 | LICENSE:${PN}-qca-wcn7850 = "Firmware-qcom" |
| 937 | LICENSE:${PN}-qca-misc = "Firmware-qualcommAthos_ath10k & Firmware-qcom" | ||
| 938 | 936 | ||
| 939 | FILES:${PN}-ar3k-license = "${nonarch_base_libdir}/firmware/LICENSE.QualcommAtheros_ar3k" | 937 | FILES:${PN}-ar3k-license = "${nonarch_base_libdir}/firmware/LICENSE.QualcommAtheros_ar3k" |
| 940 | FILES:${PN}-ar3k = " \ | 938 | FILES:${PN}-ar3k = " \ |
| @@ -1061,12 +1059,7 @@ FILES:${PN}-qca-wcn7850 = " \ | |||
| 1061 | ${nonarch_base_libdir}/firmware/qca/hmtnv20.b112* \ | 1059 | ${nonarch_base_libdir}/firmware/qca/hmtnv20.b112* \ |
| 1062 | ${nonarch_base_libdir}/firmware/qca/hmtnv20.bin* \ | 1060 | ${nonarch_base_libdir}/firmware/qca/hmtnv20.bin* \ |
| 1063 | " | 1061 | " |
| 1064 | FILES:${PN}-qca-misc = "${nonarch_base_libdir}/firmware/qca/*" | ||
| 1065 | # -qca is a virtual package that depends upon all qca packages. | ||
| 1066 | ALLOW_EMPTY:${PN}-qca = "1" | 1062 | ALLOW_EMPTY:${PN}-qca = "1" |
| 1067 | # -qca-misc is a catch all package that includes all the qca | ||
| 1068 | # firmwares that are not already included in other -qca- packages. | ||
| 1069 | ALLOW_EMPTY:${PN}-qca-misc = "1" | ||
| 1070 | 1063 | ||
| 1071 | RDEPENDS:${PN}-ar3k += "${PN}-ar3k-license ${PN}-atheros-license" | 1064 | RDEPENDS:${PN}-ar3k += "${PN}-ar3k-license ${PN}-atheros-license" |
| 1072 | RDEPENDS:${PN}-ath10k += "${PN}-ath10k-license" | 1065 | RDEPENDS:${PN}-ath10k += "${PN}-ath10k-license" |
| @@ -1103,7 +1096,6 @@ RDEPENDS:${PN}-qca-wcn399x += "${PN}-ath10k-license" | |||
| 1103 | RDEPENDS:${PN}-qca-wcn6750 += "${PN}-ath10k-license" | 1096 | RDEPENDS:${PN}-qca-wcn6750 += "${PN}-ath10k-license" |
| 1104 | RDEPENDS:${PN}-qca-qca2066 += "${PN}-ath10k-license" | 1097 | RDEPENDS:${PN}-qca-qca2066 += "${PN}-ath10k-license" |
| 1105 | RDEPENDS:${PN}-qca-wcn7850 += "${PN}-qcom-license" | 1098 | RDEPENDS:${PN}-qca-wcn7850 += "${PN}-qcom-license" |
| 1106 | RDEPENDS:${PN}-qca-misc += "${PN}-ath10k-license ${PN}-qcom-license" | ||
| 1107 | # For ralink | 1099 | # For ralink |
| 1108 | LICENSE:${PN}-ralink = "Firmware-ralink-firmware" | 1100 | LICENSE:${PN}-ralink = "Firmware-ralink-firmware" |
| 1109 | LICENSE:${PN}-ralink-license = "Firmware-ralink-firmware" | 1101 | LICENSE:${PN}-ralink-license = "Firmware-ralink-firmware" |
diff --git a/meta/recipes-kernel/linux/cve-exclusion_6.12.inc b/meta/recipes-kernel/linux/cve-exclusion_6.12.inc index f84d42cfe1..1e596c11b7 100644 --- a/meta/recipes-kernel/linux/cve-exclusion_6.12.inc +++ b/meta/recipes-kernel/linux/cve-exclusion_6.12.inc | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | 1 | ||
| 2 | # Auto-generated CVE metadata, DO NOT EDIT BY HAND. | 2 | # Auto-generated CVE metadata, DO NOT EDIT BY HAND. |
| 3 | # Generated at 2025-10-14 01:23:30.027767+00:00 for kernel version 6.12.52 | 3 | # Generated at 2025-10-28 03:21:45.408892+00:00 for kernel version 6.12.55 |
| 4 | # From linux_kernel_cves 2025-10-14_baseline-1-gddc0a257837 | 4 | # From linux_kernel_cves cve_2025-10-28_0200Z-1-g573c9628fcf |
| 5 | 5 | ||
| 6 | 6 | ||
| 7 | python check_kernel_cve_status_version() { | 7 | python check_kernel_cve_status_version() { |
| 8 | this_version = "6.12.52" | 8 | this_version = "6.12.55" |
| 9 | kernel_version = d.getVar("LINUX_VERSION") | 9 | kernel_version = d.getVar("LINUX_VERSION") |
| 10 | if kernel_version != this_version: | 10 | if kernel_version != this_version: |
| 11 | bb.warn("Kernel CVE status needs updating: generated for %s but kernel is %s" % (this_version, kernel_version)) | 11 | bb.warn("Kernel CVE status needs updating: generated for %s but kernel is %s" % (this_version, kernel_version)) |
| @@ -5274,6 +5274,60 @@ CVE_STATUS[CVE-2022-50554] = "fixed-version: Fixed from version 6.2" | |||
| 5274 | 5274 | ||
| 5275 | CVE_STATUS[CVE-2022-50555] = "fixed-version: Fixed from version 6.1" | 5275 | CVE_STATUS[CVE-2022-50555] = "fixed-version: Fixed from version 6.1" |
| 5276 | 5276 | ||
| 5277 | CVE_STATUS[CVE-2022-50556] = "fixed-version: Fixed from version 6.3" | ||
| 5278 | |||
| 5279 | CVE_STATUS[CVE-2022-50557] = "fixed-version: Fixed from version 6.2" | ||
| 5280 | |||
| 5281 | CVE_STATUS[CVE-2022-50558] = "fixed-version: Fixed from version 6.2" | ||
| 5282 | |||
| 5283 | CVE_STATUS[CVE-2022-50559] = "fixed-version: Fixed from version 6.1" | ||
| 5284 | |||
| 5285 | CVE_STATUS[CVE-2022-50560] = "fixed-version: Fixed from version 6.1" | ||
| 5286 | |||
| 5287 | CVE_STATUS[CVE-2022-50561] = "fixed-version: Fixed from version 6.2" | ||
| 5288 | |||
| 5289 | CVE_STATUS[CVE-2022-50562] = "fixed-version: Fixed from version 6.2" | ||
| 5290 | |||
| 5291 | CVE_STATUS[CVE-2022-50563] = "fixed-version: Fixed from version 6.2" | ||
| 5292 | |||
| 5293 | CVE_STATUS[CVE-2022-50564] = "fixed-version: Fixed from version 6.2" | ||
| 5294 | |||
| 5295 | CVE_STATUS[CVE-2022-50565] = "fixed-version: Fixed from version 6.2" | ||
| 5296 | |||
| 5297 | CVE_STATUS[CVE-2022-50566] = "fixed-version: Fixed from version 6.2" | ||
| 5298 | |||
| 5299 | CVE_STATUS[CVE-2022-50567] = "fixed-version: Fixed from version 6.2" | ||
| 5300 | |||
| 5301 | CVE_STATUS[CVE-2022-50568] = "fixed-version: Fixed from version 6.2" | ||
| 5302 | |||
| 5303 | CVE_STATUS[CVE-2022-50569] = "fixed-version: Fixed from version 6.1" | ||
| 5304 | |||
| 5305 | CVE_STATUS[CVE-2022-50570] = "fixed-version: Fixed from version 6.1" | ||
| 5306 | |||
| 5307 | CVE_STATUS[CVE-2022-50571] = "fixed-version: Fixed from version 6.1" | ||
| 5308 | |||
| 5309 | CVE_STATUS[CVE-2022-50572] = "fixed-version: Fixed from version 6.2" | ||
| 5310 | |||
| 5311 | CVE_STATUS[CVE-2022-50573] = "fixed-version: Fixed from version 6.3" | ||
| 5312 | |||
| 5313 | CVE_STATUS[CVE-2022-50574] = "fixed-version: Fixed from version 6.1" | ||
| 5314 | |||
| 5315 | CVE_STATUS[CVE-2022-50575] = "fixed-version: Fixed from version 6.2" | ||
| 5316 | |||
| 5317 | CVE_STATUS[CVE-2022-50576] = "fixed-version: Fixed from version 6.2" | ||
| 5318 | |||
| 5319 | CVE_STATUS[CVE-2022-50577] = "fixed-version: Fixed from version 6.2" | ||
| 5320 | |||
| 5321 | CVE_STATUS[CVE-2022-50578] = "fixed-version: Fixed from version 6.2" | ||
| 5322 | |||
| 5323 | CVE_STATUS[CVE-2022-50579] = "fixed-version: Fixed from version 6.1" | ||
| 5324 | |||
| 5325 | CVE_STATUS[CVE-2022-50580] = "fixed-version: Fixed from version 6.1" | ||
| 5326 | |||
| 5327 | CVE_STATUS[CVE-2022-50581] = "fixed-version: Fixed from version 6.2" | ||
| 5328 | |||
| 5329 | CVE_STATUS[CVE-2022-50582] = "fixed-version: Fixed from version 6.1" | ||
| 5330 | |||
| 5277 | CVE_STATUS[CVE-2023-32246] = "fixed-version: Fixed from version 6.4" | 5331 | CVE_STATUS[CVE-2023-32246] = "fixed-version: Fixed from version 6.4" |
| 5278 | 5332 | ||
| 5279 | CVE_STATUS[CVE-2023-32249] = "fixed-version: Fixed from version 6.4" | 5333 | CVE_STATUS[CVE-2023-32249] = "fixed-version: Fixed from version 6.4" |
| @@ -7540,6 +7594,88 @@ CVE_STATUS[CVE-2023-53686] = "fixed-version: Fixed from version 6.6" | |||
| 7540 | 7594 | ||
| 7541 | CVE_STATUS[CVE-2023-53687] = "fixed-version: Fixed from version 6.5" | 7595 | CVE_STATUS[CVE-2023-53687] = "fixed-version: Fixed from version 6.5" |
| 7542 | 7596 | ||
| 7597 | CVE_STATUS[CVE-2023-53692] = "fixed-version: Fixed from version 6.4" | ||
| 7598 | |||
| 7599 | CVE_STATUS[CVE-2023-53693] = "fixed-version: Fixed from version 6.5" | ||
| 7600 | |||
| 7601 | CVE_STATUS[CVE-2023-53694] = "fixed-version: Fixed from version 6.3" | ||
| 7602 | |||
| 7603 | CVE_STATUS[CVE-2023-53695] = "fixed-version: Fixed from version 6.3" | ||
| 7604 | |||
| 7605 | CVE_STATUS[CVE-2023-53696] = "fixed-version: Fixed from version 6.3" | ||
| 7606 | |||
| 7607 | CVE_STATUS[CVE-2023-53697] = "fixed-version: Fixed from version 6.6" | ||
| 7608 | |||
| 7609 | CVE_STATUS[CVE-2023-53698] = "fixed-version: Fixed from version 6.5" | ||
| 7610 | |||
| 7611 | CVE_STATUS[CVE-2023-53699] = "fixed-version: Fixed from version 6.5" | ||
| 7612 | |||
| 7613 | CVE_STATUS[CVE-2023-53700] = "fixed-version: Fixed from version 6.3" | ||
| 7614 | |||
| 7615 | CVE_STATUS[CVE-2023-53702] = "fixed-version: Fixed from version 6.4" | ||
| 7616 | |||
| 7617 | CVE_STATUS[CVE-2023-53703] = "fixed-version: Fixed from version 6.5" | ||
| 7618 | |||
| 7619 | CVE_STATUS[CVE-2023-53704] = "fixed-version: Fixed from version 6.5" | ||
| 7620 | |||
| 7621 | CVE_STATUS[CVE-2023-53705] = "fixed-version: Fixed from version 6.4" | ||
| 7622 | |||
| 7623 | CVE_STATUS[CVE-2023-53706] = "fixed-version: Fixed from version 6.4" | ||
| 7624 | |||
| 7625 | CVE_STATUS[CVE-2023-53707] = "fixed-version: Fixed from version 6.5" | ||
| 7626 | |||
| 7627 | CVE_STATUS[CVE-2023-53708] = "fixed-version: Fixed from version 6.6" | ||
| 7628 | |||
| 7629 | CVE_STATUS[CVE-2023-53709] = "fixed-version: Fixed from version 6.3" | ||
| 7630 | |||
| 7631 | CVE_STATUS[CVE-2023-53710] = "fixed-version: Fixed from version 6.3" | ||
| 7632 | |||
| 7633 | CVE_STATUS[CVE-2023-53711] = "fixed-version: Fixed from version 6.6" | ||
| 7634 | |||
| 7635 | CVE_STATUS[CVE-2023-53712] = "fixed-version: Fixed from version 6.6" | ||
| 7636 | |||
| 7637 | CVE_STATUS[CVE-2023-53713] = "fixed-version: Fixed from version 6.5" | ||
| 7638 | |||
| 7639 | CVE_STATUS[CVE-2023-53714] = "fixed-version: Fixed from version 6.5" | ||
| 7640 | |||
| 7641 | CVE_STATUS[CVE-2023-53715] = "fixed-version: Fixed from version 6.4" | ||
| 7642 | |||
| 7643 | CVE_STATUS[CVE-2023-53716] = "fixed-version: Fixed from version 6.3.5" | ||
| 7644 | |||
| 7645 | CVE_STATUS[CVE-2023-53717] = "fixed-version: Fixed from version 6.3" | ||
| 7646 | |||
| 7647 | CVE_STATUS[CVE-2023-53718] = "fixed-version: Fixed from version 6.5" | ||
| 7648 | |||
| 7649 | CVE_STATUS[CVE-2023-53719] = "fixed-version: Fixed from version 6.4" | ||
| 7650 | |||
| 7651 | CVE_STATUS[CVE-2023-53720] = "fixed-version: Fixed from version 6.4" | ||
| 7652 | |||
| 7653 | CVE_STATUS[CVE-2023-53721] = "fixed-version: Fixed from version 6.6" | ||
| 7654 | |||
| 7655 | CVE_STATUS[CVE-2023-53722] = "fixed-version: Fixed from version 6.6" | ||
| 7656 | |||
| 7657 | CVE_STATUS[CVE-2023-53723] = "fixed-version: Fixed from version 6.4" | ||
| 7658 | |||
| 7659 | CVE_STATUS[CVE-2023-53724] = "fixed-version: Fixed from version 6.3" | ||
| 7660 | |||
| 7661 | CVE_STATUS[CVE-2023-53725] = "fixed-version: Fixed from version 6.5" | ||
| 7662 | |||
| 7663 | CVE_STATUS[CVE-2023-53726] = "fixed-version: Fixed from version 6.6" | ||
| 7664 | |||
| 7665 | CVE_STATUS[CVE-2023-53727] = "fixed-version: Fixed from version 6.6" | ||
| 7666 | |||
| 7667 | CVE_STATUS[CVE-2023-53728] = "fixed-version: Fixed from version 6.5" | ||
| 7668 | |||
| 7669 | CVE_STATUS[CVE-2023-53729] = "fixed-version: Fixed from version 6.6" | ||
| 7670 | |||
| 7671 | CVE_STATUS[CVE-2023-53730] = "fixed-version: Fixed from version 6.5" | ||
| 7672 | |||
| 7673 | CVE_STATUS[CVE-2023-53731] = "fixed-version: Fixed from version 6.5" | ||
| 7674 | |||
| 7675 | CVE_STATUS[CVE-2023-53732] = "fixed-version: Fixed from version 6.4" | ||
| 7676 | |||
| 7677 | CVE_STATUS[CVE-2023-53733] = "fixed-version: Fixed from version 6.5" | ||
| 7678 | |||
| 7543 | CVE_STATUS[CVE-2024-26581] = "fixed-version: Fixed from version 6.8" | 7679 | CVE_STATUS[CVE-2024-26581] = "fixed-version: Fixed from version 6.8" |
| 7544 | 7680 | ||
| 7545 | CVE_STATUS[CVE-2024-26582] = "fixed-version: Fixed from version 6.8" | 7681 | CVE_STATUS[CVE-2024-26582] = "fixed-version: Fixed from version 6.8" |
| @@ -17138,8 +17274,6 @@ CVE_STATUS[CVE-2025-39896] = "cpe-stable-backport: Backported in 6.12.46" | |||
| 17138 | 17274 | ||
| 17139 | CVE_STATUS[CVE-2025-39897] = "cpe-stable-backport: Backported in 6.12.46" | 17275 | CVE_STATUS[CVE-2025-39897] = "cpe-stable-backport: Backported in 6.12.46" |
| 17140 | 17276 | ||
| 17141 | CVE_STATUS[CVE-2025-39898] = "cpe-stable-backport: Backported in 6.12.46" | ||
| 17142 | |||
| 17143 | CVE_STATUS[CVE-2025-39899] = "cpe-stable-backport: Backported in 6.12.46" | 17277 | CVE_STATUS[CVE-2025-39899] = "cpe-stable-backport: Backported in 6.12.46" |
| 17144 | 17278 | ||
| 17145 | CVE_STATUS[CVE-2025-39900] = "cpe-stable-backport: Backported in 6.12.46" | 17279 | CVE_STATUS[CVE-2025-39900] = "cpe-stable-backport: Backported in 6.12.46" |
| @@ -17274,10 +17408,124 @@ CVE_STATUS[CVE-2025-39964] = "cpe-stable-backport: Backported in 6.12.49" | |||
| 17274 | 17408 | ||
| 17275 | CVE_STATUS[CVE-2025-39965] = "cpe-stable-backport: Backported in 6.12.50" | 17409 | CVE_STATUS[CVE-2025-39965] = "cpe-stable-backport: Backported in 6.12.50" |
| 17276 | 17410 | ||
| 17411 | CVE_STATUS[CVE-2025-39966] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17412 | |||
| 17413 | CVE_STATUS[CVE-2025-39967] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17414 | |||
| 17415 | CVE_STATUS[CVE-2025-39968] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17416 | |||
| 17417 | CVE_STATUS[CVE-2025-39969] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17418 | |||
| 17419 | CVE_STATUS[CVE-2025-39970] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17420 | |||
| 17421 | CVE_STATUS[CVE-2025-39971] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17422 | |||
| 17423 | CVE_STATUS[CVE-2025-39972] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17424 | |||
| 17425 | CVE_STATUS[CVE-2025-39973] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17426 | |||
| 17427 | CVE_STATUS[CVE-2025-39974] = "fixed-version: only affects 6.16 onwards" | ||
| 17428 | |||
| 17429 | CVE_STATUS[CVE-2025-39975] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17430 | |||
| 17431 | CVE_STATUS[CVE-2025-39976] = "fixed-version: only affects 6.16 onwards" | ||
| 17432 | |||
| 17433 | CVE_STATUS[CVE-2025-39977] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17434 | |||
| 17435 | CVE_STATUS[CVE-2025-39978] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17436 | |||
| 17437 | CVE_STATUS[CVE-2025-39979] = "fixed-version: only affects 6.14 onwards" | ||
| 17438 | |||
| 17439 | CVE_STATUS[CVE-2025-39980] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17440 | |||
| 17441 | # CVE-2025-39981 needs backporting (fixed from 6.17) | ||
| 17442 | |||
| 17443 | CVE_STATUS[CVE-2025-39982] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17444 | |||
| 17445 | CVE_STATUS[CVE-2025-39983] = "fixed-version: only affects 6.15 onwards" | ||
| 17446 | |||
| 17447 | CVE_STATUS[CVE-2025-39984] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17448 | |||
| 17449 | CVE_STATUS[CVE-2025-39985] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17450 | |||
| 17451 | CVE_STATUS[CVE-2025-39986] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17452 | |||
| 17453 | CVE_STATUS[CVE-2025-39987] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17454 | |||
| 17455 | CVE_STATUS[CVE-2025-39988] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17456 | |||
| 17277 | CVE_STATUS[CVE-2025-39989] = "cpe-stable-backport: Backported in 6.12.23" | 17457 | CVE_STATUS[CVE-2025-39989] = "cpe-stable-backport: Backported in 6.12.23" |
| 17278 | 17458 | ||
| 17459 | CVE_STATUS[CVE-2025-39990] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17460 | |||
| 17461 | CVE_STATUS[CVE-2025-39991] = "cpe-stable-backport: Backported in 6.12.51" | ||
| 17462 | |||
| 17463 | CVE_STATUS[CVE-2025-39992] = "cpe-stable-backport: Backported in 6.12.51" | ||
| 17464 | |||
| 17465 | CVE_STATUS[CVE-2025-39993] = "cpe-stable-backport: Backported in 6.12.51" | ||
| 17466 | |||
| 17467 | CVE_STATUS[CVE-2025-39994] = "cpe-stable-backport: Backported in 6.12.51" | ||
| 17468 | |||
| 17469 | CVE_STATUS[CVE-2025-39995] = "cpe-stable-backport: Backported in 6.12.52" | ||
| 17470 | |||
| 17471 | CVE_STATUS[CVE-2025-39996] = "cpe-stable-backport: Backported in 6.12.51" | ||
| 17472 | |||
| 17473 | CVE_STATUS[CVE-2025-39997] = "fixed-version: only affects 6.16 onwards" | ||
| 17474 | |||
| 17475 | CVE_STATUS[CVE-2025-39998] = "cpe-stable-backport: Backported in 6.12.51" | ||
| 17476 | |||
| 17477 | CVE_STATUS[CVE-2025-39999] = "fixed-version: only affects 6.16 onwards" | ||
| 17478 | |||
| 17479 | CVE_STATUS[CVE-2025-40000] = "cpe-stable-backport: Backported in 6.12.52" | ||
| 17480 | |||
| 17481 | CVE_STATUS[CVE-2025-40001] = "cpe-stable-backport: Backported in 6.12.54" | ||
| 17482 | |||
| 17483 | CVE_STATUS[CVE-2025-40002] = "fixed-version: only affects 6.14 onwards" | ||
| 17484 | |||
| 17485 | CVE_STATUS[CVE-2025-40003] = "cpe-stable-backport: Backported in 6.12.54" | ||
| 17486 | |||
| 17487 | CVE_STATUS[CVE-2025-40004] = "cpe-stable-backport: Backported in 6.12.53" | ||
| 17488 | |||
| 17489 | # CVE-2025-40005 needs backporting (fixed from 6.17) | ||
| 17490 | |||
| 17491 | CVE_STATUS[CVE-2025-40006] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17492 | |||
| 17493 | CVE_STATUS[CVE-2025-40007] = "fixed-version: only affects 6.16 onwards" | ||
| 17494 | |||
| 17495 | CVE_STATUS[CVE-2025-40008] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17496 | |||
| 17497 | CVE_STATUS[CVE-2025-40009] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17498 | |||
| 17499 | CVE_STATUS[CVE-2025-40010] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17500 | |||
| 17501 | CVE_STATUS[CVE-2025-40011] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17502 | |||
| 17503 | CVE_STATUS[CVE-2025-40012] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17504 | |||
| 17505 | CVE_STATUS[CVE-2025-40013] = "cpe-stable-backport: Backported in 6.12.51" | ||
| 17506 | |||
| 17279 | # CVE-2025-40014 needs backporting (fixed from 6.15) | 17507 | # CVE-2025-40014 needs backporting (fixed from 6.15) |
| 17280 | 17508 | ||
| 17509 | CVE_STATUS[CVE-2025-40015] = "fixed-version: only affects 6.15 onwards" | ||
| 17510 | |||
| 17511 | CVE_STATUS[CVE-2025-40016] = "cpe-stable-backport: Backported in 6.12.51" | ||
| 17512 | |||
| 17513 | CVE_STATUS[CVE-2025-40017] = "fixed-version: only affects 6.15 onwards" | ||
| 17514 | |||
| 17515 | CVE_STATUS[CVE-2025-40018] = "cpe-stable-backport: Backported in 6.12.53" | ||
| 17516 | |||
| 17517 | CVE_STATUS[CVE-2025-40019] = "cpe-stable-backport: Backported in 6.12.54" | ||
| 17518 | |||
| 17519 | CVE_STATUS[CVE-2025-40020] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17520 | |||
| 17521 | CVE_STATUS[CVE-2025-40021] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17522 | |||
| 17523 | CVE_STATUS[CVE-2025-40022] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17524 | |||
| 17525 | CVE_STATUS[CVE-2025-40023] = "fixed-version: only affects 6.16 onwards" | ||
| 17526 | |||
| 17527 | CVE_STATUS[CVE-2025-40024] = "cpe-stable-backport: Backported in 6.12.50" | ||
| 17528 | |||
| 17281 | CVE_STATUS[CVE-2025-40114] = "cpe-stable-backport: Backported in 6.12.23" | 17529 | CVE_STATUS[CVE-2025-40114] = "cpe-stable-backport: Backported in 6.12.23" |
| 17282 | 17530 | ||
| 17283 | CVE_STATUS[CVE-2025-40300] = "cpe-stable-backport: Backported in 6.12.47" | 17531 | CVE_STATUS[CVE-2025-40300] = "cpe-stable-backport: Backported in 6.12.47" |
diff --git a/meta/recipes-kernel/linux/cve-exclusion_6.17.inc b/meta/recipes-kernel/linux/cve-exclusion_6.17.inc new file mode 100644 index 0000000000..126afb8ede --- /dev/null +++ b/meta/recipes-kernel/linux/cve-exclusion_6.17.inc | |||
| @@ -0,0 +1,17698 @@ | |||
| 1 | |||
| 2 | # Auto-generated CVE metadata, DO NOT EDIT BY HAND. | ||
| 3 | # Generated at 2025-10-30 16:47:14.266821+00:00 for kernel version 6.17.6 | ||
| 4 | # From linux_kernel_cves cve_2025-10-30_1600Z-2-g07cefa3115c | ||
| 5 | |||
| 6 | |||
| 7 | python check_kernel_cve_status_version() { | ||
| 8 | this_version = "6.17.6" | ||
| 9 | kernel_version = d.getVar("LINUX_VERSION") | ||
| 10 | if kernel_version != this_version: | ||
| 11 | bb.warn("Kernel CVE status needs updating: generated for %s but kernel is %s" % (this_version, kernel_version)) | ||
| 12 | } | ||
| 13 | do_cve_check[prefuncs] += "check_kernel_cve_status_version" | ||
| 14 | |||
| 15 | CVE_STATUS[CVE-2019-25160] = "fixed-version: Fixed from version 5.0" | ||
| 16 | |||
| 17 | CVE_STATUS[CVE-2019-25162] = "fixed-version: Fixed from version 6.0" | ||
| 18 | |||
| 19 | # CVE-2019-3459 has no known resolution | ||
| 20 | |||
| 21 | # CVE-2019-3460 has no known resolution | ||
| 22 | |||
| 23 | CVE_STATUS[CVE-2020-36775] = "fixed-version: Fixed from version 5.7" | ||
| 24 | |||
| 25 | CVE_STATUS[CVE-2020-36776] = "fixed-version: Fixed from version 5.13" | ||
| 26 | |||
| 27 | CVE_STATUS[CVE-2020-36777] = "fixed-version: Fixed from version 5.13" | ||
| 28 | |||
| 29 | CVE_STATUS[CVE-2020-36778] = "fixed-version: Fixed from version 5.13" | ||
| 30 | |||
| 31 | CVE_STATUS[CVE-2020-36779] = "fixed-version: Fixed from version 5.13" | ||
| 32 | |||
| 33 | CVE_STATUS[CVE-2020-36780] = "fixed-version: Fixed from version 5.13" | ||
| 34 | |||
| 35 | CVE_STATUS[CVE-2020-36781] = "fixed-version: Fixed from version 5.13" | ||
| 36 | |||
| 37 | CVE_STATUS[CVE-2020-36782] = "fixed-version: Fixed from version 5.13" | ||
| 38 | |||
| 39 | CVE_STATUS[CVE-2020-36783] = "fixed-version: Fixed from version 5.13" | ||
| 40 | |||
| 41 | CVE_STATUS[CVE-2020-36784] = "fixed-version: Fixed from version 5.13" | ||
| 42 | |||
| 43 | CVE_STATUS[CVE-2020-36785] = "fixed-version: Fixed from version 5.13" | ||
| 44 | |||
| 45 | CVE_STATUS[CVE-2020-36786] = "fixed-version: Fixed from version 5.13" | ||
| 46 | |||
| 47 | CVE_STATUS[CVE-2020-36787] = "fixed-version: Fixed from version 5.13" | ||
| 48 | |||
| 49 | CVE_STATUS[CVE-2020-36788] = "fixed-version: Fixed from version 5.15" | ||
| 50 | |||
| 51 | CVE_STATUS[CVE-2020-36789] = "fixed-version: Fixed from version 5.10" | ||
| 52 | |||
| 53 | CVE_STATUS[CVE-2020-36790] = "fixed-version: Fixed from version 5.9" | ||
| 54 | |||
| 55 | CVE_STATUS[CVE-2020-36791] = "fixed-version: Fixed from version 5.5.14" | ||
| 56 | |||
| 57 | # CVE-2021-28688 has no known resolution | ||
| 58 | |||
| 59 | # CVE-2021-28691 has no known resolution | ||
| 60 | |||
| 61 | # CVE-2021-28711 has no known resolution | ||
| 62 | |||
| 63 | # CVE-2021-28712 has no known resolution | ||
| 64 | |||
| 65 | # CVE-2021-28713 has no known resolution | ||
| 66 | |||
| 67 | # CVE-2021-28714 has no known resolution | ||
| 68 | |||
| 69 | # CVE-2021-28715 has no known resolution | ||
| 70 | |||
| 71 | CVE_STATUS[CVE-2021-46904] = "fixed-version: Fixed from version 5.12" | ||
| 72 | |||
| 73 | CVE_STATUS[CVE-2021-46905] = "fixed-version: Fixed from version 5.13" | ||
| 74 | |||
| 75 | CVE_STATUS[CVE-2021-46906] = "fixed-version: Fixed from version 5.13" | ||
| 76 | |||
| 77 | CVE_STATUS[CVE-2021-46908] = "fixed-version: Fixed from version 5.12" | ||
| 78 | |||
| 79 | CVE_STATUS[CVE-2021-46909] = "fixed-version: Fixed from version 5.12" | ||
| 80 | |||
| 81 | CVE_STATUS[CVE-2021-46910] = "fixed-version: Fixed from version 5.12" | ||
| 82 | |||
| 83 | CVE_STATUS[CVE-2021-46911] = "fixed-version: Fixed from version 5.12" | ||
| 84 | |||
| 85 | CVE_STATUS[CVE-2021-46912] = "fixed-version: Fixed from version 5.12" | ||
| 86 | |||
| 87 | CVE_STATUS[CVE-2021-46913] = "fixed-version: Fixed from version 5.12" | ||
| 88 | |||
| 89 | CVE_STATUS[CVE-2021-46914] = "fixed-version: Fixed from version 5.12" | ||
| 90 | |||
| 91 | CVE_STATUS[CVE-2021-46915] = "fixed-version: Fixed from version 5.12" | ||
| 92 | |||
| 93 | CVE_STATUS[CVE-2021-46916] = "fixed-version: Fixed from version 5.12" | ||
| 94 | |||
| 95 | CVE_STATUS[CVE-2021-46917] = "fixed-version: Fixed from version 5.12" | ||
| 96 | |||
| 97 | CVE_STATUS[CVE-2021-46918] = "fixed-version: Fixed from version 5.12" | ||
| 98 | |||
| 99 | CVE_STATUS[CVE-2021-46919] = "fixed-version: Fixed from version 5.12" | ||
| 100 | |||
| 101 | CVE_STATUS[CVE-2021-46920] = "fixed-version: Fixed from version 5.12" | ||
| 102 | |||
| 103 | CVE_STATUS[CVE-2021-46921] = "fixed-version: Fixed from version 5.12" | ||
| 104 | |||
| 105 | CVE_STATUS[CVE-2021-46922] = "fixed-version: Fixed from version 5.11.17" | ||
| 106 | |||
| 107 | CVE_STATUS[CVE-2021-46923] = "fixed-version: Fixed from version 5.16" | ||
| 108 | |||
| 109 | CVE_STATUS[CVE-2021-46924] = "fixed-version: Fixed from version 5.16" | ||
| 110 | |||
| 111 | CVE_STATUS[CVE-2021-46925] = "fixed-version: Fixed from version 5.16" | ||
| 112 | |||
| 113 | CVE_STATUS[CVE-2021-46926] = "fixed-version: Fixed from version 5.16" | ||
| 114 | |||
| 115 | CVE_STATUS[CVE-2021-46927] = "fixed-version: Fixed from version 5.16" | ||
| 116 | |||
| 117 | CVE_STATUS[CVE-2021-46928] = "fixed-version: Fixed from version 5.16" | ||
| 118 | |||
| 119 | CVE_STATUS[CVE-2021-46929] = "fixed-version: Fixed from version 5.16" | ||
| 120 | |||
| 121 | CVE_STATUS[CVE-2021-46930] = "fixed-version: Fixed from version 5.16" | ||
| 122 | |||
| 123 | CVE_STATUS[CVE-2021-46931] = "fixed-version: Fixed from version 5.16" | ||
| 124 | |||
| 125 | CVE_STATUS[CVE-2021-46932] = "fixed-version: Fixed from version 5.16" | ||
| 126 | |||
| 127 | CVE_STATUS[CVE-2021-46933] = "fixed-version: Fixed from version 5.16" | ||
| 128 | |||
| 129 | CVE_STATUS[CVE-2021-46934] = "fixed-version: Fixed from version 5.16" | ||
| 130 | |||
| 131 | CVE_STATUS[CVE-2021-46935] = "fixed-version: Fixed from version 5.16" | ||
| 132 | |||
| 133 | CVE_STATUS[CVE-2021-46936] = "fixed-version: Fixed from version 5.16" | ||
| 134 | |||
| 135 | CVE_STATUS[CVE-2021-46937] = "fixed-version: Fixed from version 5.16" | ||
| 136 | |||
| 137 | CVE_STATUS[CVE-2021-46938] = "fixed-version: Fixed from version 5.13" | ||
| 138 | |||
| 139 | CVE_STATUS[CVE-2021-46939] = "fixed-version: Fixed from version 5.13" | ||
| 140 | |||
| 141 | CVE_STATUS[CVE-2021-46940] = "fixed-version: Fixed from version 5.13" | ||
| 142 | |||
| 143 | CVE_STATUS[CVE-2021-46941] = "fixed-version: Fixed from version 5.13" | ||
| 144 | |||
| 145 | CVE_STATUS[CVE-2021-46942] = "fixed-version: Fixed from version 5.13" | ||
| 146 | |||
| 147 | CVE_STATUS[CVE-2021-46943] = "fixed-version: Fixed from version 5.13" | ||
| 148 | |||
| 149 | CVE_STATUS[CVE-2021-46944] = "fixed-version: Fixed from version 5.13" | ||
| 150 | |||
| 151 | CVE_STATUS[CVE-2021-46945] = "fixed-version: Fixed from version 5.13" | ||
| 152 | |||
| 153 | CVE_STATUS[CVE-2021-46947] = "fixed-version: Fixed from version 5.13" | ||
| 154 | |||
| 155 | CVE_STATUS[CVE-2021-46948] = "fixed-version: Fixed from version 5.13" | ||
| 156 | |||
| 157 | CVE_STATUS[CVE-2021-46949] = "fixed-version: Fixed from version 5.13" | ||
| 158 | |||
| 159 | CVE_STATUS[CVE-2021-46950] = "fixed-version: Fixed from version 5.13" | ||
| 160 | |||
| 161 | CVE_STATUS[CVE-2021-46951] = "fixed-version: Fixed from version 5.13" | ||
| 162 | |||
| 163 | CVE_STATUS[CVE-2021-46952] = "fixed-version: Fixed from version 5.13" | ||
| 164 | |||
| 165 | CVE_STATUS[CVE-2021-46953] = "fixed-version: Fixed from version 5.13" | ||
| 166 | |||
| 167 | CVE_STATUS[CVE-2021-46954] = "fixed-version: Fixed from version 5.13" | ||
| 168 | |||
| 169 | CVE_STATUS[CVE-2021-46955] = "fixed-version: Fixed from version 5.13" | ||
| 170 | |||
| 171 | CVE_STATUS[CVE-2021-46956] = "fixed-version: Fixed from version 5.13" | ||
| 172 | |||
| 173 | CVE_STATUS[CVE-2021-46957] = "fixed-version: Fixed from version 5.13" | ||
| 174 | |||
| 175 | CVE_STATUS[CVE-2021-46958] = "fixed-version: Fixed from version 5.13" | ||
| 176 | |||
| 177 | CVE_STATUS[CVE-2021-46959] = "fixed-version: Fixed from version 5.13" | ||
| 178 | |||
| 179 | CVE_STATUS[CVE-2021-46960] = "fixed-version: Fixed from version 5.13" | ||
| 180 | |||
| 181 | CVE_STATUS[CVE-2021-46961] = "fixed-version: Fixed from version 5.13" | ||
| 182 | |||
| 183 | CVE_STATUS[CVE-2021-46962] = "fixed-version: Fixed from version 5.13" | ||
| 184 | |||
| 185 | CVE_STATUS[CVE-2021-46963] = "fixed-version: Fixed from version 5.13" | ||
| 186 | |||
| 187 | CVE_STATUS[CVE-2021-46964] = "fixed-version: Fixed from version 5.13" | ||
| 188 | |||
| 189 | CVE_STATUS[CVE-2021-46965] = "fixed-version: Fixed from version 5.13" | ||
| 190 | |||
| 191 | CVE_STATUS[CVE-2021-46966] = "fixed-version: Fixed from version 5.13" | ||
| 192 | |||
| 193 | CVE_STATUS[CVE-2021-46967] = "fixed-version: Fixed from version 5.13" | ||
| 194 | |||
| 195 | CVE_STATUS[CVE-2021-46968] = "fixed-version: Fixed from version 5.13" | ||
| 196 | |||
| 197 | CVE_STATUS[CVE-2021-46969] = "fixed-version: Fixed from version 5.13" | ||
| 198 | |||
| 199 | CVE_STATUS[CVE-2021-46970] = "fixed-version: Fixed from version 5.13" | ||
| 200 | |||
| 201 | CVE_STATUS[CVE-2021-46971] = "fixed-version: Fixed from version 5.13" | ||
| 202 | |||
| 203 | CVE_STATUS[CVE-2021-46972] = "fixed-version: Fixed from version 5.13" | ||
| 204 | |||
| 205 | CVE_STATUS[CVE-2021-46973] = "fixed-version: Fixed from version 5.13" | ||
| 206 | |||
| 207 | CVE_STATUS[CVE-2021-46974] = "fixed-version: Fixed from version 5.13" | ||
| 208 | |||
| 209 | CVE_STATUS[CVE-2021-46976] = "fixed-version: Fixed from version 5.13" | ||
| 210 | |||
| 211 | CVE_STATUS[CVE-2021-46977] = "fixed-version: Fixed from version 5.13" | ||
| 212 | |||
| 213 | CVE_STATUS[CVE-2021-46978] = "fixed-version: Fixed from version 5.13" | ||
| 214 | |||
| 215 | CVE_STATUS[CVE-2021-46979] = "fixed-version: Fixed from version 5.13" | ||
| 216 | |||
| 217 | CVE_STATUS[CVE-2021-46980] = "fixed-version: Fixed from version 5.13" | ||
| 218 | |||
| 219 | CVE_STATUS[CVE-2021-46981] = "fixed-version: Fixed from version 5.13" | ||
| 220 | |||
| 221 | CVE_STATUS[CVE-2021-46982] = "fixed-version: Fixed from version 5.13" | ||
| 222 | |||
| 223 | CVE_STATUS[CVE-2021-46983] = "fixed-version: Fixed from version 5.13" | ||
| 224 | |||
| 225 | CVE_STATUS[CVE-2021-46984] = "fixed-version: Fixed from version 5.13" | ||
| 226 | |||
| 227 | CVE_STATUS[CVE-2021-46985] = "fixed-version: Fixed from version 5.13" | ||
| 228 | |||
| 229 | CVE_STATUS[CVE-2021-46986] = "fixed-version: Fixed from version 5.13" | ||
| 230 | |||
| 231 | CVE_STATUS[CVE-2021-46987] = "fixed-version: Fixed from version 5.13" | ||
| 232 | |||
| 233 | CVE_STATUS[CVE-2021-46988] = "fixed-version: Fixed from version 5.13" | ||
| 234 | |||
| 235 | CVE_STATUS[CVE-2021-46989] = "fixed-version: Fixed from version 5.13" | ||
| 236 | |||
| 237 | CVE_STATUS[CVE-2021-46990] = "fixed-version: Fixed from version 5.13" | ||
| 238 | |||
| 239 | CVE_STATUS[CVE-2021-46991] = "fixed-version: Fixed from version 5.13" | ||
| 240 | |||
| 241 | CVE_STATUS[CVE-2021-46992] = "fixed-version: Fixed from version 5.13" | ||
| 242 | |||
| 243 | CVE_STATUS[CVE-2021-46993] = "fixed-version: Fixed from version 5.13" | ||
| 244 | |||
| 245 | CVE_STATUS[CVE-2021-46994] = "fixed-version: Fixed from version 5.13" | ||
| 246 | |||
| 247 | CVE_STATUS[CVE-2021-46995] = "fixed-version: Fixed from version 5.13" | ||
| 248 | |||
| 249 | CVE_STATUS[CVE-2021-46996] = "fixed-version: Fixed from version 5.13" | ||
| 250 | |||
| 251 | CVE_STATUS[CVE-2021-46997] = "fixed-version: Fixed from version 5.13" | ||
| 252 | |||
| 253 | CVE_STATUS[CVE-2021-46998] = "fixed-version: Fixed from version 5.13" | ||
| 254 | |||
| 255 | CVE_STATUS[CVE-2021-46999] = "fixed-version: Fixed from version 5.13" | ||
| 256 | |||
| 257 | CVE_STATUS[CVE-2021-47000] = "fixed-version: Fixed from version 5.13" | ||
| 258 | |||
| 259 | CVE_STATUS[CVE-2021-47001] = "fixed-version: Fixed from version 5.13" | ||
| 260 | |||
| 261 | CVE_STATUS[CVE-2021-47002] = "fixed-version: Fixed from version 5.13" | ||
| 262 | |||
| 263 | CVE_STATUS[CVE-2021-47003] = "fixed-version: Fixed from version 5.13" | ||
| 264 | |||
| 265 | CVE_STATUS[CVE-2021-47004] = "fixed-version: Fixed from version 5.13" | ||
| 266 | |||
| 267 | CVE_STATUS[CVE-2021-47005] = "fixed-version: Fixed from version 5.13" | ||
| 268 | |||
| 269 | CVE_STATUS[CVE-2021-47006] = "fixed-version: Fixed from version 5.13" | ||
| 270 | |||
| 271 | CVE_STATUS[CVE-2021-47007] = "fixed-version: Fixed from version 5.13" | ||
| 272 | |||
| 273 | CVE_STATUS[CVE-2021-47008] = "fixed-version: Fixed from version 5.13" | ||
| 274 | |||
| 275 | CVE_STATUS[CVE-2021-47009] = "fixed-version: Fixed from version 5.13" | ||
| 276 | |||
| 277 | CVE_STATUS[CVE-2021-47010] = "fixed-version: Fixed from version 5.13" | ||
| 278 | |||
| 279 | CVE_STATUS[CVE-2021-47011] = "fixed-version: Fixed from version 5.13" | ||
| 280 | |||
| 281 | CVE_STATUS[CVE-2021-47012] = "fixed-version: Fixed from version 5.13" | ||
| 282 | |||
| 283 | CVE_STATUS[CVE-2021-47013] = "fixed-version: Fixed from version 5.13" | ||
| 284 | |||
| 285 | CVE_STATUS[CVE-2021-47014] = "fixed-version: Fixed from version 5.13" | ||
| 286 | |||
| 287 | CVE_STATUS[CVE-2021-47015] = "fixed-version: Fixed from version 5.13" | ||
| 288 | |||
| 289 | CVE_STATUS[CVE-2021-47016] = "fixed-version: Fixed from version 5.13" | ||
| 290 | |||
| 291 | CVE_STATUS[CVE-2021-47017] = "fixed-version: Fixed from version 5.13" | ||
| 292 | |||
| 293 | CVE_STATUS[CVE-2021-47018] = "fixed-version: Fixed from version 5.13" | ||
| 294 | |||
| 295 | CVE_STATUS[CVE-2021-47019] = "fixed-version: Fixed from version 5.13" | ||
| 296 | |||
| 297 | CVE_STATUS[CVE-2021-47020] = "fixed-version: Fixed from version 5.13" | ||
| 298 | |||
| 299 | CVE_STATUS[CVE-2021-47021] = "fixed-version: Fixed from version 5.13" | ||
| 300 | |||
| 301 | CVE_STATUS[CVE-2021-47022] = "fixed-version: Fixed from version 5.13" | ||
| 302 | |||
| 303 | CVE_STATUS[CVE-2021-47023] = "fixed-version: Fixed from version 5.13" | ||
| 304 | |||
| 305 | CVE_STATUS[CVE-2021-47024] = "fixed-version: Fixed from version 5.13" | ||
| 306 | |||
| 307 | CVE_STATUS[CVE-2021-47025] = "fixed-version: Fixed from version 5.13" | ||
| 308 | |||
| 309 | CVE_STATUS[CVE-2021-47026] = "fixed-version: Fixed from version 5.13" | ||
| 310 | |||
| 311 | CVE_STATUS[CVE-2021-47027] = "fixed-version: Fixed from version 5.13" | ||
| 312 | |||
| 313 | CVE_STATUS[CVE-2021-47028] = "fixed-version: Fixed from version 5.13" | ||
| 314 | |||
| 315 | CVE_STATUS[CVE-2021-47029] = "fixed-version: Fixed from version 5.13" | ||
| 316 | |||
| 317 | CVE_STATUS[CVE-2021-47030] = "fixed-version: Fixed from version 5.13" | ||
| 318 | |||
| 319 | CVE_STATUS[CVE-2021-47031] = "fixed-version: Fixed from version 5.13" | ||
| 320 | |||
| 321 | CVE_STATUS[CVE-2021-47032] = "fixed-version: Fixed from version 5.13" | ||
| 322 | |||
| 323 | CVE_STATUS[CVE-2021-47033] = "fixed-version: Fixed from version 5.13" | ||
| 324 | |||
| 325 | CVE_STATUS[CVE-2021-47034] = "fixed-version: Fixed from version 5.13" | ||
| 326 | |||
| 327 | CVE_STATUS[CVE-2021-47035] = "fixed-version: Fixed from version 5.13" | ||
| 328 | |||
| 329 | CVE_STATUS[CVE-2021-47036] = "fixed-version: Fixed from version 5.13" | ||
| 330 | |||
| 331 | CVE_STATUS[CVE-2021-47037] = "fixed-version: Fixed from version 5.13" | ||
| 332 | |||
| 333 | CVE_STATUS[CVE-2021-47038] = "fixed-version: Fixed from version 5.13" | ||
| 334 | |||
| 335 | CVE_STATUS[CVE-2021-47039] = "fixed-version: Fixed from version 5.13" | ||
| 336 | |||
| 337 | CVE_STATUS[CVE-2021-47040] = "fixed-version: Fixed from version 5.13" | ||
| 338 | |||
| 339 | CVE_STATUS[CVE-2021-47041] = "fixed-version: Fixed from version 5.13" | ||
| 340 | |||
| 341 | CVE_STATUS[CVE-2021-47042] = "fixed-version: Fixed from version 5.13" | ||
| 342 | |||
| 343 | CVE_STATUS[CVE-2021-47043] = "fixed-version: Fixed from version 5.13" | ||
| 344 | |||
| 345 | CVE_STATUS[CVE-2021-47044] = "fixed-version: Fixed from version 5.13" | ||
| 346 | |||
| 347 | CVE_STATUS[CVE-2021-47045] = "fixed-version: Fixed from version 5.13" | ||
| 348 | |||
| 349 | CVE_STATUS[CVE-2021-47046] = "fixed-version: Fixed from version 5.13" | ||
| 350 | |||
| 351 | CVE_STATUS[CVE-2021-47047] = "fixed-version: Fixed from version 5.13" | ||
| 352 | |||
| 353 | CVE_STATUS[CVE-2021-47048] = "fixed-version: Fixed from version 5.13" | ||
| 354 | |||
| 355 | CVE_STATUS[CVE-2021-47049] = "fixed-version: Fixed from version 5.13" | ||
| 356 | |||
| 357 | CVE_STATUS[CVE-2021-47050] = "fixed-version: Fixed from version 5.13" | ||
| 358 | |||
| 359 | CVE_STATUS[CVE-2021-47051] = "fixed-version: Fixed from version 5.13" | ||
| 360 | |||
| 361 | CVE_STATUS[CVE-2021-47052] = "fixed-version: Fixed from version 5.13" | ||
| 362 | |||
| 363 | CVE_STATUS[CVE-2021-47053] = "fixed-version: Fixed from version 5.13" | ||
| 364 | |||
| 365 | CVE_STATUS[CVE-2021-47054] = "fixed-version: Fixed from version 5.13" | ||
| 366 | |||
| 367 | CVE_STATUS[CVE-2021-47055] = "fixed-version: Fixed from version 5.13" | ||
| 368 | |||
| 369 | CVE_STATUS[CVE-2021-47056] = "fixed-version: Fixed from version 5.13" | ||
| 370 | |||
| 371 | CVE_STATUS[CVE-2021-47057] = "fixed-version: Fixed from version 5.13" | ||
| 372 | |||
| 373 | CVE_STATUS[CVE-2021-47058] = "fixed-version: Fixed from version 5.13" | ||
| 374 | |||
| 375 | CVE_STATUS[CVE-2021-47059] = "fixed-version: Fixed from version 5.13" | ||
| 376 | |||
| 377 | CVE_STATUS[CVE-2021-47060] = "fixed-version: Fixed from version 5.13" | ||
| 378 | |||
| 379 | CVE_STATUS[CVE-2021-47061] = "fixed-version: Fixed from version 5.13" | ||
| 380 | |||
| 381 | CVE_STATUS[CVE-2021-47062] = "fixed-version: Fixed from version 5.13" | ||
| 382 | |||
| 383 | CVE_STATUS[CVE-2021-47063] = "fixed-version: Fixed from version 5.13" | ||
| 384 | |||
| 385 | CVE_STATUS[CVE-2021-47064] = "fixed-version: Fixed from version 5.13" | ||
| 386 | |||
| 387 | CVE_STATUS[CVE-2021-47065] = "fixed-version: Fixed from version 5.13" | ||
| 388 | |||
| 389 | CVE_STATUS[CVE-2021-47066] = "fixed-version: Fixed from version 5.13" | ||
| 390 | |||
| 391 | CVE_STATUS[CVE-2021-47067] = "fixed-version: Fixed from version 5.13" | ||
| 392 | |||
| 393 | CVE_STATUS[CVE-2021-47068] = "fixed-version: Fixed from version 5.13" | ||
| 394 | |||
| 395 | CVE_STATUS[CVE-2021-47069] = "fixed-version: Fixed from version 5.13" | ||
| 396 | |||
| 397 | CVE_STATUS[CVE-2021-47070] = "fixed-version: Fixed from version 5.13" | ||
| 398 | |||
| 399 | CVE_STATUS[CVE-2021-47071] = "fixed-version: Fixed from version 5.13" | ||
| 400 | |||
| 401 | CVE_STATUS[CVE-2021-47072] = "fixed-version: Fixed from version 5.13" | ||
| 402 | |||
| 403 | CVE_STATUS[CVE-2021-47073] = "fixed-version: Fixed from version 5.13" | ||
| 404 | |||
| 405 | CVE_STATUS[CVE-2021-47074] = "fixed-version: Fixed from version 5.13" | ||
| 406 | |||
| 407 | CVE_STATUS[CVE-2021-47075] = "fixed-version: Fixed from version 5.13" | ||
| 408 | |||
| 409 | CVE_STATUS[CVE-2021-47076] = "fixed-version: Fixed from version 5.13" | ||
| 410 | |||
| 411 | CVE_STATUS[CVE-2021-47077] = "fixed-version: Fixed from version 5.13" | ||
| 412 | |||
| 413 | CVE_STATUS[CVE-2021-47078] = "fixed-version: Fixed from version 5.13" | ||
| 414 | |||
| 415 | CVE_STATUS[CVE-2021-47079] = "fixed-version: Fixed from version 5.13" | ||
| 416 | |||
| 417 | CVE_STATUS[CVE-2021-47080] = "fixed-version: Fixed from version 5.13" | ||
| 418 | |||
| 419 | CVE_STATUS[CVE-2021-47081] = "fixed-version: Fixed from version 5.13" | ||
| 420 | |||
| 421 | CVE_STATUS[CVE-2021-47082] = "fixed-version: Fixed from version 5.16" | ||
| 422 | |||
| 423 | CVE_STATUS[CVE-2021-47083] = "fixed-version: Fixed from version 5.16" | ||
| 424 | |||
| 425 | CVE_STATUS[CVE-2021-47086] = "fixed-version: Fixed from version 5.16" | ||
| 426 | |||
| 427 | CVE_STATUS[CVE-2021-47087] = "fixed-version: Fixed from version 5.16" | ||
| 428 | |||
| 429 | CVE_STATUS[CVE-2021-47088] = "fixed-version: Fixed from version 5.16" | ||
| 430 | |||
| 431 | CVE_STATUS[CVE-2021-47089] = "fixed-version: Fixed from version 5.16" | ||
| 432 | |||
| 433 | CVE_STATUS[CVE-2021-47090] = "fixed-version: Fixed from version 5.16" | ||
| 434 | |||
| 435 | CVE_STATUS[CVE-2021-47091] = "fixed-version: Fixed from version 5.16" | ||
| 436 | |||
| 437 | CVE_STATUS[CVE-2021-47092] = "fixed-version: Fixed from version 5.16" | ||
| 438 | |||
| 439 | CVE_STATUS[CVE-2021-47093] = "fixed-version: Fixed from version 5.16" | ||
| 440 | |||
| 441 | CVE_STATUS[CVE-2021-47094] = "fixed-version: Fixed from version 5.16" | ||
| 442 | |||
| 443 | CVE_STATUS[CVE-2021-47095] = "fixed-version: Fixed from version 5.16" | ||
| 444 | |||
| 445 | CVE_STATUS[CVE-2021-47096] = "fixed-version: Fixed from version 5.16" | ||
| 446 | |||
| 447 | CVE_STATUS[CVE-2021-47097] = "fixed-version: Fixed from version 5.16" | ||
| 448 | |||
| 449 | CVE_STATUS[CVE-2021-47098] = "fixed-version: Fixed from version 5.16" | ||
| 450 | |||
| 451 | CVE_STATUS[CVE-2021-47099] = "fixed-version: Fixed from version 5.16" | ||
| 452 | |||
| 453 | CVE_STATUS[CVE-2021-47100] = "fixed-version: Fixed from version 5.16" | ||
| 454 | |||
| 455 | CVE_STATUS[CVE-2021-47101] = "fixed-version: Fixed from version 5.16" | ||
| 456 | |||
| 457 | CVE_STATUS[CVE-2021-47102] = "fixed-version: Fixed from version 5.16" | ||
| 458 | |||
| 459 | CVE_STATUS[CVE-2021-47103] = "fixed-version: Fixed from version 5.16" | ||
| 460 | |||
| 461 | CVE_STATUS[CVE-2021-47104] = "fixed-version: Fixed from version 5.16" | ||
| 462 | |||
| 463 | CVE_STATUS[CVE-2021-47105] = "fixed-version: Fixed from version 5.16" | ||
| 464 | |||
| 465 | CVE_STATUS[CVE-2021-47106] = "fixed-version: Fixed from version 5.16" | ||
| 466 | |||
| 467 | CVE_STATUS[CVE-2021-47107] = "fixed-version: Fixed from version 5.16" | ||
| 468 | |||
| 469 | CVE_STATUS[CVE-2021-47108] = "fixed-version: Fixed from version 5.16" | ||
| 470 | |||
| 471 | CVE_STATUS[CVE-2021-47109] = "fixed-version: Fixed from version 5.13" | ||
| 472 | |||
| 473 | CVE_STATUS[CVE-2021-47110] = "fixed-version: Fixed from version 5.13" | ||
| 474 | |||
| 475 | CVE_STATUS[CVE-2021-47111] = "fixed-version: Fixed from version 5.13" | ||
| 476 | |||
| 477 | CVE_STATUS[CVE-2021-47112] = "fixed-version: Fixed from version 5.13" | ||
| 478 | |||
| 479 | CVE_STATUS[CVE-2021-47113] = "fixed-version: Fixed from version 5.13" | ||
| 480 | |||
| 481 | CVE_STATUS[CVE-2021-47114] = "fixed-version: Fixed from version 5.13" | ||
| 482 | |||
| 483 | CVE_STATUS[CVE-2021-47116] = "fixed-version: Fixed from version 5.13" | ||
| 484 | |||
| 485 | CVE_STATUS[CVE-2021-47117] = "fixed-version: Fixed from version 5.13" | ||
| 486 | |||
| 487 | CVE_STATUS[CVE-2021-47118] = "fixed-version: Fixed from version 5.13" | ||
| 488 | |||
| 489 | CVE_STATUS[CVE-2021-47119] = "fixed-version: Fixed from version 5.13" | ||
| 490 | |||
| 491 | CVE_STATUS[CVE-2021-47120] = "fixed-version: Fixed from version 5.13" | ||
| 492 | |||
| 493 | CVE_STATUS[CVE-2021-47121] = "fixed-version: Fixed from version 5.13" | ||
| 494 | |||
| 495 | CVE_STATUS[CVE-2021-47122] = "fixed-version: Fixed from version 5.13" | ||
| 496 | |||
| 497 | CVE_STATUS[CVE-2021-47123] = "fixed-version: Fixed from version 5.13" | ||
| 498 | |||
| 499 | CVE_STATUS[CVE-2021-47124] = "fixed-version: Fixed from version 5.13" | ||
| 500 | |||
| 501 | CVE_STATUS[CVE-2021-47125] = "fixed-version: Fixed from version 5.13" | ||
| 502 | |||
| 503 | CVE_STATUS[CVE-2021-47126] = "fixed-version: Fixed from version 5.13" | ||
| 504 | |||
| 505 | CVE_STATUS[CVE-2021-47127] = "fixed-version: Fixed from version 5.13" | ||
| 506 | |||
| 507 | CVE_STATUS[CVE-2021-47128] = "fixed-version: Fixed from version 5.13" | ||
| 508 | |||
| 509 | CVE_STATUS[CVE-2021-47129] = "fixed-version: Fixed from version 5.13" | ||
| 510 | |||
| 511 | CVE_STATUS[CVE-2021-47130] = "fixed-version: Fixed from version 5.13" | ||
| 512 | |||
| 513 | CVE_STATUS[CVE-2021-47131] = "fixed-version: Fixed from version 5.13" | ||
| 514 | |||
| 515 | CVE_STATUS[CVE-2021-47132] = "fixed-version: Fixed from version 5.13" | ||
| 516 | |||
| 517 | CVE_STATUS[CVE-2021-47133] = "fixed-version: Fixed from version 5.13" | ||
| 518 | |||
| 519 | CVE_STATUS[CVE-2021-47134] = "fixed-version: Fixed from version 5.13" | ||
| 520 | |||
| 521 | CVE_STATUS[CVE-2021-47135] = "fixed-version: Fixed from version 5.13" | ||
| 522 | |||
| 523 | CVE_STATUS[CVE-2021-47136] = "fixed-version: Fixed from version 5.13" | ||
| 524 | |||
| 525 | CVE_STATUS[CVE-2021-47137] = "fixed-version: Fixed from version 5.13" | ||
| 526 | |||
| 527 | CVE_STATUS[CVE-2021-47138] = "fixed-version: Fixed from version 5.13" | ||
| 528 | |||
| 529 | CVE_STATUS[CVE-2021-47139] = "fixed-version: Fixed from version 5.13" | ||
| 530 | |||
| 531 | CVE_STATUS[CVE-2021-47140] = "fixed-version: Fixed from version 5.13" | ||
| 532 | |||
| 533 | CVE_STATUS[CVE-2021-47141] = "fixed-version: Fixed from version 5.13" | ||
| 534 | |||
| 535 | CVE_STATUS[CVE-2021-47142] = "fixed-version: Fixed from version 5.13" | ||
| 536 | |||
| 537 | CVE_STATUS[CVE-2021-47143] = "fixed-version: Fixed from version 5.13" | ||
| 538 | |||
| 539 | CVE_STATUS[CVE-2021-47145] = "fixed-version: Fixed from version 5.13" | ||
| 540 | |||
| 541 | CVE_STATUS[CVE-2021-47146] = "fixed-version: Fixed from version 5.13" | ||
| 542 | |||
| 543 | CVE_STATUS[CVE-2021-47147] = "fixed-version: Fixed from version 5.13" | ||
| 544 | |||
| 545 | CVE_STATUS[CVE-2021-47148] = "fixed-version: Fixed from version 5.13" | ||
| 546 | |||
| 547 | CVE_STATUS[CVE-2021-47149] = "fixed-version: Fixed from version 5.13" | ||
| 548 | |||
| 549 | CVE_STATUS[CVE-2021-47150] = "fixed-version: Fixed from version 5.13" | ||
| 550 | |||
| 551 | CVE_STATUS[CVE-2021-47151] = "fixed-version: Fixed from version 5.13" | ||
| 552 | |||
| 553 | CVE_STATUS[CVE-2021-47152] = "fixed-version: Fixed from version 5.13" | ||
| 554 | |||
| 555 | CVE_STATUS[CVE-2021-47153] = "fixed-version: Fixed from version 5.13" | ||
| 556 | |||
| 557 | CVE_STATUS[CVE-2021-47158] = "fixed-version: Fixed from version 5.13" | ||
| 558 | |||
| 559 | CVE_STATUS[CVE-2021-47159] = "fixed-version: Fixed from version 5.13" | ||
| 560 | |||
| 561 | CVE_STATUS[CVE-2021-47160] = "fixed-version: Fixed from version 5.13" | ||
| 562 | |||
| 563 | CVE_STATUS[CVE-2021-47161] = "fixed-version: Fixed from version 5.13" | ||
| 564 | |||
| 565 | CVE_STATUS[CVE-2021-47162] = "fixed-version: Fixed from version 5.13" | ||
| 566 | |||
| 567 | CVE_STATUS[CVE-2021-47163] = "fixed-version: Fixed from version 5.13" | ||
| 568 | |||
| 569 | CVE_STATUS[CVE-2021-47164] = "fixed-version: Fixed from version 5.13" | ||
| 570 | |||
| 571 | CVE_STATUS[CVE-2021-47165] = "fixed-version: Fixed from version 5.13" | ||
| 572 | |||
| 573 | CVE_STATUS[CVE-2021-47166] = "fixed-version: Fixed from version 5.13" | ||
| 574 | |||
| 575 | CVE_STATUS[CVE-2021-47167] = "fixed-version: Fixed from version 5.13" | ||
| 576 | |||
| 577 | CVE_STATUS[CVE-2021-47168] = "fixed-version: Fixed from version 5.13" | ||
| 578 | |||
| 579 | CVE_STATUS[CVE-2021-47169] = "fixed-version: Fixed from version 5.13" | ||
| 580 | |||
| 581 | CVE_STATUS[CVE-2021-47170] = "fixed-version: Fixed from version 5.13" | ||
| 582 | |||
| 583 | CVE_STATUS[CVE-2021-47171] = "fixed-version: Fixed from version 5.13" | ||
| 584 | |||
| 585 | CVE_STATUS[CVE-2021-47172] = "fixed-version: Fixed from version 5.13" | ||
| 586 | |||
| 587 | CVE_STATUS[CVE-2021-47173] = "fixed-version: Fixed from version 5.13" | ||
| 588 | |||
| 589 | CVE_STATUS[CVE-2021-47174] = "fixed-version: Fixed from version 5.13" | ||
| 590 | |||
| 591 | CVE_STATUS[CVE-2021-47175] = "fixed-version: Fixed from version 5.13" | ||
| 592 | |||
| 593 | CVE_STATUS[CVE-2021-47176] = "fixed-version: Fixed from version 5.13" | ||
| 594 | |||
| 595 | CVE_STATUS[CVE-2021-47177] = "fixed-version: Fixed from version 5.13" | ||
| 596 | |||
| 597 | CVE_STATUS[CVE-2021-47178] = "fixed-version: Fixed from version 5.13" | ||
| 598 | |||
| 599 | CVE_STATUS[CVE-2021-47179] = "fixed-version: Fixed from version 5.12.9" | ||
| 600 | |||
| 601 | CVE_STATUS[CVE-2021-47180] = "fixed-version: Fixed from version 5.13" | ||
| 602 | |||
| 603 | CVE_STATUS[CVE-2021-47181] = "fixed-version: Fixed from version 5.16" | ||
| 604 | |||
| 605 | CVE_STATUS[CVE-2021-47182] = "fixed-version: Fixed from version 5.16" | ||
| 606 | |||
| 607 | CVE_STATUS[CVE-2021-47183] = "fixed-version: Fixed from version 5.16" | ||
| 608 | |||
| 609 | CVE_STATUS[CVE-2021-47184] = "fixed-version: Fixed from version 5.16" | ||
| 610 | |||
| 611 | CVE_STATUS[CVE-2021-47185] = "fixed-version: Fixed from version 5.16" | ||
| 612 | |||
| 613 | CVE_STATUS[CVE-2021-47186] = "fixed-version: Fixed from version 5.16" | ||
| 614 | |||
| 615 | CVE_STATUS[CVE-2021-47187] = "fixed-version: Fixed from version 5.16" | ||
| 616 | |||
| 617 | CVE_STATUS[CVE-2021-47188] = "fixed-version: Fixed from version 5.16" | ||
| 618 | |||
| 619 | CVE_STATUS[CVE-2021-47189] = "fixed-version: Fixed from version 5.16" | ||
| 620 | |||
| 621 | CVE_STATUS[CVE-2021-47190] = "fixed-version: Fixed from version 5.16" | ||
| 622 | |||
| 623 | CVE_STATUS[CVE-2021-47191] = "fixed-version: Fixed from version 5.16" | ||
| 624 | |||
| 625 | CVE_STATUS[CVE-2021-47192] = "fixed-version: Fixed from version 5.16" | ||
| 626 | |||
| 627 | CVE_STATUS[CVE-2021-47193] = "fixed-version: Fixed from version 5.16" | ||
| 628 | |||
| 629 | CVE_STATUS[CVE-2021-47194] = "fixed-version: Fixed from version 5.16" | ||
| 630 | |||
| 631 | CVE_STATUS[CVE-2021-47195] = "fixed-version: Fixed from version 5.16" | ||
| 632 | |||
| 633 | CVE_STATUS[CVE-2021-47196] = "fixed-version: Fixed from version 5.16" | ||
| 634 | |||
| 635 | CVE_STATUS[CVE-2021-47197] = "fixed-version: Fixed from version 5.16" | ||
| 636 | |||
| 637 | CVE_STATUS[CVE-2021-47198] = "fixed-version: Fixed from version 5.16" | ||
| 638 | |||
| 639 | CVE_STATUS[CVE-2021-47199] = "fixed-version: Fixed from version 5.16" | ||
| 640 | |||
| 641 | CVE_STATUS[CVE-2021-47200] = "fixed-version: Fixed from version 5.16" | ||
| 642 | |||
| 643 | CVE_STATUS[CVE-2021-47201] = "fixed-version: Fixed from version 5.16" | ||
| 644 | |||
| 645 | CVE_STATUS[CVE-2021-47202] = "fixed-version: Fixed from version 5.16" | ||
| 646 | |||
| 647 | CVE_STATUS[CVE-2021-47203] = "fixed-version: Fixed from version 5.16" | ||
| 648 | |||
| 649 | CVE_STATUS[CVE-2021-47204] = "fixed-version: Fixed from version 5.16" | ||
| 650 | |||
| 651 | CVE_STATUS[CVE-2021-47205] = "fixed-version: Fixed from version 5.16" | ||
| 652 | |||
| 653 | CVE_STATUS[CVE-2021-47206] = "fixed-version: Fixed from version 5.16" | ||
| 654 | |||
| 655 | CVE_STATUS[CVE-2021-47207] = "fixed-version: Fixed from version 5.16" | ||
| 656 | |||
| 657 | CVE_STATUS[CVE-2021-47209] = "fixed-version: Fixed from version 5.16" | ||
| 658 | |||
| 659 | CVE_STATUS[CVE-2021-47210] = "fixed-version: Fixed from version 5.16" | ||
| 660 | |||
| 661 | CVE_STATUS[CVE-2021-47211] = "fixed-version: Fixed from version 5.16" | ||
| 662 | |||
| 663 | CVE_STATUS[CVE-2021-47212] = "fixed-version: Fixed from version 5.16" | ||
| 664 | |||
| 665 | CVE_STATUS[CVE-2021-47214] = "fixed-version: Fixed from version 5.16" | ||
| 666 | |||
| 667 | CVE_STATUS[CVE-2021-47215] = "fixed-version: Fixed from version 5.16" | ||
| 668 | |||
| 669 | CVE_STATUS[CVE-2021-47216] = "fixed-version: Fixed from version 5.16" | ||
| 670 | |||
| 671 | CVE_STATUS[CVE-2021-47217] = "fixed-version: Fixed from version 5.16" | ||
| 672 | |||
| 673 | CVE_STATUS[CVE-2021-47218] = "fixed-version: Fixed from version 5.16" | ||
| 674 | |||
| 675 | CVE_STATUS[CVE-2021-47219] = "fixed-version: Fixed from version 5.16" | ||
| 676 | |||
| 677 | CVE_STATUS[CVE-2021-47221] = "fixed-version: Fixed from version 5.13" | ||
| 678 | |||
| 679 | CVE_STATUS[CVE-2021-47222] = "fixed-version: Fixed from version 5.13" | ||
| 680 | |||
| 681 | CVE_STATUS[CVE-2021-47223] = "fixed-version: Fixed from version 5.13" | ||
| 682 | |||
| 683 | CVE_STATUS[CVE-2021-47224] = "fixed-version: Fixed from version 5.13" | ||
| 684 | |||
| 685 | CVE_STATUS[CVE-2021-47225] = "fixed-version: Fixed from version 5.13" | ||
| 686 | |||
| 687 | CVE_STATUS[CVE-2021-47226] = "fixed-version: Fixed from version 5.13" | ||
| 688 | |||
| 689 | CVE_STATUS[CVE-2021-47227] = "fixed-version: Fixed from version 5.13" | ||
| 690 | |||
| 691 | CVE_STATUS[CVE-2021-47228] = "fixed-version: Fixed from version 5.13" | ||
| 692 | |||
| 693 | CVE_STATUS[CVE-2021-47229] = "fixed-version: Fixed from version 5.13" | ||
| 694 | |||
| 695 | CVE_STATUS[CVE-2021-47230] = "fixed-version: Fixed from version 5.13" | ||
| 696 | |||
| 697 | CVE_STATUS[CVE-2021-47231] = "fixed-version: Fixed from version 5.13" | ||
| 698 | |||
| 699 | CVE_STATUS[CVE-2021-47232] = "fixed-version: Fixed from version 5.13" | ||
| 700 | |||
| 701 | CVE_STATUS[CVE-2021-47233] = "fixed-version: Fixed from version 5.13" | ||
| 702 | |||
| 703 | CVE_STATUS[CVE-2021-47234] = "fixed-version: Fixed from version 5.13" | ||
| 704 | |||
| 705 | CVE_STATUS[CVE-2021-47235] = "fixed-version: Fixed from version 5.13" | ||
| 706 | |||
| 707 | CVE_STATUS[CVE-2021-47236] = "fixed-version: Fixed from version 5.13" | ||
| 708 | |||
| 709 | CVE_STATUS[CVE-2021-47237] = "fixed-version: Fixed from version 5.13" | ||
| 710 | |||
| 711 | CVE_STATUS[CVE-2021-47238] = "fixed-version: Fixed from version 5.13" | ||
| 712 | |||
| 713 | CVE_STATUS[CVE-2021-47239] = "fixed-version: Fixed from version 5.12.13" | ||
| 714 | |||
| 715 | CVE_STATUS[CVE-2021-47240] = "fixed-version: Fixed from version 5.13" | ||
| 716 | |||
| 717 | CVE_STATUS[CVE-2021-47241] = "fixed-version: Fixed from version 5.13" | ||
| 718 | |||
| 719 | CVE_STATUS[CVE-2021-47242] = "fixed-version: Fixed from version 5.13" | ||
| 720 | |||
| 721 | CVE_STATUS[CVE-2021-47243] = "fixed-version: Fixed from version 5.13" | ||
| 722 | |||
| 723 | CVE_STATUS[CVE-2021-47244] = "fixed-version: Fixed from version 5.13" | ||
| 724 | |||
| 725 | CVE_STATUS[CVE-2021-47245] = "fixed-version: Fixed from version 5.13" | ||
| 726 | |||
| 727 | CVE_STATUS[CVE-2021-47246] = "fixed-version: Fixed from version 5.13" | ||
| 728 | |||
| 729 | CVE_STATUS[CVE-2021-47247] = "fixed-version: Fixed from version 5.13" | ||
| 730 | |||
| 731 | CVE_STATUS[CVE-2021-47248] = "fixed-version: Fixed from version 5.13" | ||
| 732 | |||
| 733 | CVE_STATUS[CVE-2021-47249] = "fixed-version: Fixed from version 5.13" | ||
| 734 | |||
| 735 | CVE_STATUS[CVE-2021-47250] = "fixed-version: Fixed from version 5.13" | ||
| 736 | |||
| 737 | CVE_STATUS[CVE-2021-47251] = "fixed-version: Fixed from version 5.13" | ||
| 738 | |||
| 739 | CVE_STATUS[CVE-2021-47252] = "fixed-version: Fixed from version 5.13" | ||
| 740 | |||
| 741 | CVE_STATUS[CVE-2021-47253] = "fixed-version: Fixed from version 5.13" | ||
| 742 | |||
| 743 | CVE_STATUS[CVE-2021-47254] = "fixed-version: Fixed from version 5.13" | ||
| 744 | |||
| 745 | CVE_STATUS[CVE-2021-47255] = "fixed-version: Fixed from version 5.13" | ||
| 746 | |||
| 747 | CVE_STATUS[CVE-2021-47256] = "fixed-version: Fixed from version 5.13" | ||
| 748 | |||
| 749 | CVE_STATUS[CVE-2021-47257] = "fixed-version: Fixed from version 5.13" | ||
| 750 | |||
| 751 | CVE_STATUS[CVE-2021-47258] = "fixed-version: Fixed from version 5.13" | ||
| 752 | |||
| 753 | CVE_STATUS[CVE-2021-47259] = "fixed-version: Fixed from version 5.13" | ||
| 754 | |||
| 755 | CVE_STATUS[CVE-2021-47260] = "fixed-version: Fixed from version 5.13" | ||
| 756 | |||
| 757 | CVE_STATUS[CVE-2021-47261] = "fixed-version: Fixed from version 5.13" | ||
| 758 | |||
| 759 | CVE_STATUS[CVE-2021-47262] = "fixed-version: Fixed from version 5.13" | ||
| 760 | |||
| 761 | CVE_STATUS[CVE-2021-47263] = "fixed-version: Fixed from version 5.13" | ||
| 762 | |||
| 763 | CVE_STATUS[CVE-2021-47264] = "fixed-version: Fixed from version 5.13" | ||
| 764 | |||
| 765 | CVE_STATUS[CVE-2021-47265] = "fixed-version: Fixed from version 5.13" | ||
| 766 | |||
| 767 | CVE_STATUS[CVE-2021-47266] = "fixed-version: Fixed from version 5.13" | ||
| 768 | |||
| 769 | CVE_STATUS[CVE-2021-47267] = "fixed-version: Fixed from version 5.13" | ||
| 770 | |||
| 771 | CVE_STATUS[CVE-2021-47268] = "fixed-version: Fixed from version 5.13" | ||
| 772 | |||
| 773 | CVE_STATUS[CVE-2021-47269] = "fixed-version: Fixed from version 5.13" | ||
| 774 | |||
| 775 | CVE_STATUS[CVE-2021-47270] = "fixed-version: Fixed from version 5.13" | ||
| 776 | |||
| 777 | CVE_STATUS[CVE-2021-47271] = "fixed-version: Fixed from version 5.13" | ||
| 778 | |||
| 779 | CVE_STATUS[CVE-2021-47272] = "fixed-version: Fixed from version 5.13" | ||
| 780 | |||
| 781 | CVE_STATUS[CVE-2021-47273] = "fixed-version: Fixed from version 5.13" | ||
| 782 | |||
| 783 | CVE_STATUS[CVE-2021-47274] = "fixed-version: Fixed from version 5.13" | ||
| 784 | |||
| 785 | CVE_STATUS[CVE-2021-47275] = "fixed-version: Fixed from version 5.13" | ||
| 786 | |||
| 787 | CVE_STATUS[CVE-2021-47276] = "fixed-version: Fixed from version 5.13" | ||
| 788 | |||
| 789 | CVE_STATUS[CVE-2021-47277] = "fixed-version: Fixed from version 5.13" | ||
| 790 | |||
| 791 | CVE_STATUS[CVE-2021-47278] = "fixed-version: Fixed from version 5.13" | ||
| 792 | |||
| 793 | CVE_STATUS[CVE-2021-47279] = "fixed-version: Fixed from version 5.13" | ||
| 794 | |||
| 795 | CVE_STATUS[CVE-2021-47280] = "fixed-version: Fixed from version 5.13" | ||
| 796 | |||
| 797 | CVE_STATUS[CVE-2021-47281] = "fixed-version: Fixed from version 5.13" | ||
| 798 | |||
| 799 | CVE_STATUS[CVE-2021-47282] = "fixed-version: Fixed from version 5.13" | ||
| 800 | |||
| 801 | CVE_STATUS[CVE-2021-47283] = "fixed-version: Fixed from version 5.13" | ||
| 802 | |||
| 803 | CVE_STATUS[CVE-2021-47284] = "fixed-version: Fixed from version 5.13" | ||
| 804 | |||
| 805 | CVE_STATUS[CVE-2021-47286] = "fixed-version: Fixed from version 5.14" | ||
| 806 | |||
| 807 | CVE_STATUS[CVE-2021-47287] = "fixed-version: Fixed from version 5.14" | ||
| 808 | |||
| 809 | CVE_STATUS[CVE-2021-47288] = "fixed-version: Fixed from version 5.14" | ||
| 810 | |||
| 811 | CVE_STATUS[CVE-2021-47289] = "fixed-version: Fixed from version 5.14" | ||
| 812 | |||
| 813 | CVE_STATUS[CVE-2021-47290] = "fixed-version: Fixed from version 5.14" | ||
| 814 | |||
| 815 | CVE_STATUS[CVE-2021-47291] = "fixed-version: Fixed from version 5.14" | ||
| 816 | |||
| 817 | CVE_STATUS[CVE-2021-47292] = "fixed-version: Fixed from version 5.14" | ||
| 818 | |||
| 819 | CVE_STATUS[CVE-2021-47293] = "fixed-version: Fixed from version 5.14" | ||
| 820 | |||
| 821 | CVE_STATUS[CVE-2021-47294] = "fixed-version: Fixed from version 5.14" | ||
| 822 | |||
| 823 | CVE_STATUS[CVE-2021-47295] = "fixed-version: Fixed from version 5.14" | ||
| 824 | |||
| 825 | CVE_STATUS[CVE-2021-47296] = "fixed-version: Fixed from version 5.14" | ||
| 826 | |||
| 827 | CVE_STATUS[CVE-2021-47297] = "fixed-version: Fixed from version 5.14" | ||
| 828 | |||
| 829 | CVE_STATUS[CVE-2021-47298] = "fixed-version: Fixed from version 5.14" | ||
| 830 | |||
| 831 | CVE_STATUS[CVE-2021-47299] = "fixed-version: Fixed from version 5.14" | ||
| 832 | |||
| 833 | CVE_STATUS[CVE-2021-47300] = "fixed-version: Fixed from version 5.14" | ||
| 834 | |||
| 835 | CVE_STATUS[CVE-2021-47301] = "fixed-version: Fixed from version 5.14" | ||
| 836 | |||
| 837 | CVE_STATUS[CVE-2021-47302] = "fixed-version: Fixed from version 5.14" | ||
| 838 | |||
| 839 | CVE_STATUS[CVE-2021-47303] = "fixed-version: Fixed from version 5.14" | ||
| 840 | |||
| 841 | CVE_STATUS[CVE-2021-47304] = "fixed-version: Fixed from version 5.14" | ||
| 842 | |||
| 843 | CVE_STATUS[CVE-2021-47305] = "fixed-version: Fixed from version 5.14" | ||
| 844 | |||
| 845 | CVE_STATUS[CVE-2021-47306] = "fixed-version: Fixed from version 5.14" | ||
| 846 | |||
| 847 | CVE_STATUS[CVE-2021-47307] = "fixed-version: Fixed from version 5.14" | ||
| 848 | |||
| 849 | CVE_STATUS[CVE-2021-47308] = "fixed-version: Fixed from version 5.14" | ||
| 850 | |||
| 851 | CVE_STATUS[CVE-2021-47309] = "fixed-version: Fixed from version 5.14" | ||
| 852 | |||
| 853 | CVE_STATUS[CVE-2021-47310] = "fixed-version: Fixed from version 5.14" | ||
| 854 | |||
| 855 | CVE_STATUS[CVE-2021-47311] = "fixed-version: Fixed from version 5.14" | ||
| 856 | |||
| 857 | CVE_STATUS[CVE-2021-47312] = "fixed-version: Fixed from version 5.13.5" | ||
| 858 | |||
| 859 | CVE_STATUS[CVE-2021-47313] = "fixed-version: Fixed from version 5.14" | ||
| 860 | |||
| 861 | CVE_STATUS[CVE-2021-47314] = "fixed-version: Fixed from version 5.14" | ||
| 862 | |||
| 863 | CVE_STATUS[CVE-2021-47315] = "fixed-version: Fixed from version 5.14" | ||
| 864 | |||
| 865 | CVE_STATUS[CVE-2021-47316] = "fixed-version: Fixed from version 5.14" | ||
| 866 | |||
| 867 | CVE_STATUS[CVE-2021-47317] = "fixed-version: Fixed from version 5.14" | ||
| 868 | |||
| 869 | CVE_STATUS[CVE-2021-47318] = "fixed-version: Fixed from version 5.14" | ||
| 870 | |||
| 871 | CVE_STATUS[CVE-2021-47319] = "fixed-version: Fixed from version 5.14" | ||
| 872 | |||
| 873 | CVE_STATUS[CVE-2021-47320] = "fixed-version: Fixed from version 5.14" | ||
| 874 | |||
| 875 | CVE_STATUS[CVE-2021-47321] = "fixed-version: Fixed from version 5.14" | ||
| 876 | |||
| 877 | CVE_STATUS[CVE-2021-47322] = "fixed-version: Fixed from version 5.14" | ||
| 878 | |||
| 879 | CVE_STATUS[CVE-2021-47323] = "fixed-version: Fixed from version 5.14" | ||
| 880 | |||
| 881 | CVE_STATUS[CVE-2021-47324] = "fixed-version: Fixed from version 5.14" | ||
| 882 | |||
| 883 | CVE_STATUS[CVE-2021-47325] = "fixed-version: Fixed from version 5.14" | ||
| 884 | |||
| 885 | CVE_STATUS[CVE-2021-47327] = "fixed-version: Fixed from version 5.14" | ||
| 886 | |||
| 887 | CVE_STATUS[CVE-2021-47328] = "fixed-version: Fixed from version 5.14" | ||
| 888 | |||
| 889 | CVE_STATUS[CVE-2021-47329] = "fixed-version: Fixed from version 5.14" | ||
| 890 | |||
| 891 | CVE_STATUS[CVE-2021-47330] = "fixed-version: Fixed from version 5.14" | ||
| 892 | |||
| 893 | CVE_STATUS[CVE-2021-47331] = "fixed-version: Fixed from version 5.14" | ||
| 894 | |||
| 895 | CVE_STATUS[CVE-2021-47332] = "fixed-version: Fixed from version 5.14" | ||
| 896 | |||
| 897 | CVE_STATUS[CVE-2021-47333] = "fixed-version: Fixed from version 5.14" | ||
| 898 | |||
| 899 | CVE_STATUS[CVE-2021-47334] = "fixed-version: Fixed from version 5.14" | ||
| 900 | |||
| 901 | CVE_STATUS[CVE-2021-47335] = "fixed-version: Fixed from version 5.14" | ||
| 902 | |||
| 903 | CVE_STATUS[CVE-2021-47336] = "fixed-version: Fixed from version 5.14" | ||
| 904 | |||
| 905 | CVE_STATUS[CVE-2021-47337] = "fixed-version: Fixed from version 5.14" | ||
| 906 | |||
| 907 | CVE_STATUS[CVE-2021-47338] = "fixed-version: Fixed from version 5.14" | ||
| 908 | |||
| 909 | CVE_STATUS[CVE-2021-47339] = "fixed-version: Fixed from version 5.14" | ||
| 910 | |||
| 911 | CVE_STATUS[CVE-2021-47340] = "fixed-version: Fixed from version 5.14" | ||
| 912 | |||
| 913 | CVE_STATUS[CVE-2021-47341] = "fixed-version: Fixed from version 5.14" | ||
| 914 | |||
| 915 | CVE_STATUS[CVE-2021-47342] = "fixed-version: Fixed from version 5.10.77" | ||
| 916 | |||
| 917 | CVE_STATUS[CVE-2021-47343] = "fixed-version: Fixed from version 5.14" | ||
| 918 | |||
| 919 | CVE_STATUS[CVE-2021-47344] = "fixed-version: Fixed from version 5.14" | ||
| 920 | |||
| 921 | CVE_STATUS[CVE-2021-47345] = "fixed-version: Fixed from version 5.14" | ||
| 922 | |||
| 923 | CVE_STATUS[CVE-2021-47346] = "fixed-version: Fixed from version 5.14" | ||
| 924 | |||
| 925 | CVE_STATUS[CVE-2021-47347] = "fixed-version: Fixed from version 5.14" | ||
| 926 | |||
| 927 | CVE_STATUS[CVE-2021-47348] = "fixed-version: Fixed from version 5.14" | ||
| 928 | |||
| 929 | CVE_STATUS[CVE-2021-47349] = "fixed-version: Fixed from version 5.14" | ||
| 930 | |||
| 931 | CVE_STATUS[CVE-2021-47350] = "fixed-version: Fixed from version 5.14" | ||
| 932 | |||
| 933 | CVE_STATUS[CVE-2021-47351] = "fixed-version: Fixed from version 5.14" | ||
| 934 | |||
| 935 | CVE_STATUS[CVE-2021-47352] = "fixed-version: Fixed from version 5.14" | ||
| 936 | |||
| 937 | CVE_STATUS[CVE-2021-47353] = "fixed-version: Fixed from version 5.14" | ||
| 938 | |||
| 939 | CVE_STATUS[CVE-2021-47354] = "fixed-version: Fixed from version 5.14" | ||
| 940 | |||
| 941 | CVE_STATUS[CVE-2021-47355] = "fixed-version: Fixed from version 5.14" | ||
| 942 | |||
| 943 | CVE_STATUS[CVE-2021-47356] = "fixed-version: Fixed from version 5.14" | ||
| 944 | |||
| 945 | CVE_STATUS[CVE-2021-47357] = "fixed-version: Fixed from version 5.14" | ||
| 946 | |||
| 947 | CVE_STATUS[CVE-2021-47358] = "fixed-version: Fixed from version 5.15" | ||
| 948 | |||
| 949 | CVE_STATUS[CVE-2021-47359] = "fixed-version: Fixed from version 5.15" | ||
| 950 | |||
| 951 | CVE_STATUS[CVE-2021-47360] = "fixed-version: Fixed from version 5.15" | ||
| 952 | |||
| 953 | CVE_STATUS[CVE-2021-47361] = "fixed-version: Fixed from version 5.15" | ||
| 954 | |||
| 955 | CVE_STATUS[CVE-2021-47362] = "fixed-version: Fixed from version 5.15" | ||
| 956 | |||
| 957 | CVE_STATUS[CVE-2021-47363] = "fixed-version: Fixed from version 5.15" | ||
| 958 | |||
| 959 | CVE_STATUS[CVE-2021-47364] = "fixed-version: Fixed from version 5.15" | ||
| 960 | |||
| 961 | CVE_STATUS[CVE-2021-47365] = "fixed-version: Fixed from version 5.15" | ||
| 962 | |||
| 963 | CVE_STATUS[CVE-2021-47366] = "fixed-version: Fixed from version 5.15" | ||
| 964 | |||
| 965 | CVE_STATUS[CVE-2021-47367] = "fixed-version: Fixed from version 5.15" | ||
| 966 | |||
| 967 | CVE_STATUS[CVE-2021-47368] = "fixed-version: Fixed from version 5.15" | ||
| 968 | |||
| 969 | CVE_STATUS[CVE-2021-47369] = "fixed-version: Fixed from version 5.15" | ||
| 970 | |||
| 971 | CVE_STATUS[CVE-2021-47370] = "fixed-version: Fixed from version 5.14.9" | ||
| 972 | |||
| 973 | CVE_STATUS[CVE-2021-47371] = "fixed-version: Fixed from version 5.15" | ||
| 974 | |||
| 975 | CVE_STATUS[CVE-2021-47372] = "fixed-version: Fixed from version 5.15" | ||
| 976 | |||
| 977 | CVE_STATUS[CVE-2021-47373] = "fixed-version: Fixed from version 5.15" | ||
| 978 | |||
| 979 | CVE_STATUS[CVE-2021-47374] = "fixed-version: Fixed from version 5.15" | ||
| 980 | |||
| 981 | CVE_STATUS[CVE-2021-47375] = "fixed-version: Fixed from version 5.15" | ||
| 982 | |||
| 983 | CVE_STATUS[CVE-2021-47376] = "fixed-version: Fixed from version 5.15" | ||
| 984 | |||
| 985 | CVE_STATUS[CVE-2021-47378] = "fixed-version: Fixed from version 5.15" | ||
| 986 | |||
| 987 | CVE_STATUS[CVE-2021-47379] = "fixed-version: Fixed from version 5.15" | ||
| 988 | |||
| 989 | CVE_STATUS[CVE-2021-47380] = "fixed-version: Fixed from version 5.15" | ||
| 990 | |||
| 991 | CVE_STATUS[CVE-2021-47381] = "fixed-version: Fixed from version 5.15" | ||
| 992 | |||
| 993 | CVE_STATUS[CVE-2021-47382] = "fixed-version: Fixed from version 5.15" | ||
| 994 | |||
| 995 | CVE_STATUS[CVE-2021-47383] = "fixed-version: Fixed from version 5.15" | ||
| 996 | |||
| 997 | CVE_STATUS[CVE-2021-47384] = "fixed-version: Fixed from version 5.15" | ||
| 998 | |||
| 999 | CVE_STATUS[CVE-2021-47385] = "fixed-version: Fixed from version 5.15" | ||
| 1000 | |||
| 1001 | CVE_STATUS[CVE-2021-47386] = "fixed-version: Fixed from version 5.15" | ||
| 1002 | |||
| 1003 | CVE_STATUS[CVE-2021-47387] = "fixed-version: Fixed from version 5.15" | ||
| 1004 | |||
| 1005 | CVE_STATUS[CVE-2021-47388] = "fixed-version: Fixed from version 5.15" | ||
| 1006 | |||
| 1007 | CVE_STATUS[CVE-2021-47389] = "fixed-version: Fixed from version 5.15" | ||
| 1008 | |||
| 1009 | CVE_STATUS[CVE-2021-47390] = "fixed-version: Fixed from version 5.15" | ||
| 1010 | |||
| 1011 | CVE_STATUS[CVE-2021-47391] = "fixed-version: Fixed from version 5.15" | ||
| 1012 | |||
| 1013 | CVE_STATUS[CVE-2021-47392] = "fixed-version: Fixed from version 5.15" | ||
| 1014 | |||
| 1015 | CVE_STATUS[CVE-2021-47393] = "fixed-version: Fixed from version 5.15" | ||
| 1016 | |||
| 1017 | CVE_STATUS[CVE-2021-47394] = "fixed-version: Fixed from version 5.15" | ||
| 1018 | |||
| 1019 | CVE_STATUS[CVE-2021-47395] = "fixed-version: Fixed from version 5.15" | ||
| 1020 | |||
| 1021 | CVE_STATUS[CVE-2021-47396] = "fixed-version: Fixed from version 5.15" | ||
| 1022 | |||
| 1023 | CVE_STATUS[CVE-2021-47397] = "fixed-version: Fixed from version 5.15" | ||
| 1024 | |||
| 1025 | CVE_STATUS[CVE-2021-47398] = "fixed-version: Fixed from version 5.15" | ||
| 1026 | |||
| 1027 | CVE_STATUS[CVE-2021-47399] = "fixed-version: Fixed from version 5.15" | ||
| 1028 | |||
| 1029 | CVE_STATUS[CVE-2021-47400] = "fixed-version: Fixed from version 5.15" | ||
| 1030 | |||
| 1031 | CVE_STATUS[CVE-2021-47401] = "fixed-version: Fixed from version 5.15" | ||
| 1032 | |||
| 1033 | CVE_STATUS[CVE-2021-47402] = "fixed-version: Fixed from version 5.15" | ||
| 1034 | |||
| 1035 | CVE_STATUS[CVE-2021-47403] = "fixed-version: Fixed from version 5.15" | ||
| 1036 | |||
| 1037 | CVE_STATUS[CVE-2021-47404] = "fixed-version: Fixed from version 5.15" | ||
| 1038 | |||
| 1039 | CVE_STATUS[CVE-2021-47405] = "fixed-version: Fixed from version 5.15" | ||
| 1040 | |||
| 1041 | CVE_STATUS[CVE-2021-47406] = "fixed-version: Fixed from version 5.15" | ||
| 1042 | |||
| 1043 | CVE_STATUS[CVE-2021-47407] = "fixed-version: Fixed from version 5.15" | ||
| 1044 | |||
| 1045 | CVE_STATUS[CVE-2021-47408] = "fixed-version: Fixed from version 5.15" | ||
| 1046 | |||
| 1047 | CVE_STATUS[CVE-2021-47409] = "fixed-version: Fixed from version 5.15" | ||
| 1048 | |||
| 1049 | CVE_STATUS[CVE-2021-47410] = "fixed-version: Fixed from version 5.15" | ||
| 1050 | |||
| 1051 | CVE_STATUS[CVE-2021-47412] = "fixed-version: Fixed from version 5.15" | ||
| 1052 | |||
| 1053 | CVE_STATUS[CVE-2021-47413] = "fixed-version: Fixed from version 5.15" | ||
| 1054 | |||
| 1055 | CVE_STATUS[CVE-2021-47414] = "fixed-version: Fixed from version 5.15" | ||
| 1056 | |||
| 1057 | CVE_STATUS[CVE-2021-47415] = "fixed-version: Fixed from version 5.15" | ||
| 1058 | |||
| 1059 | CVE_STATUS[CVE-2021-47416] = "fixed-version: Fixed from version 5.15" | ||
| 1060 | |||
| 1061 | CVE_STATUS[CVE-2021-47417] = "fixed-version: Fixed from version 5.15" | ||
| 1062 | |||
| 1063 | CVE_STATUS[CVE-2021-47418] = "fixed-version: Fixed from version 5.15" | ||
| 1064 | |||
| 1065 | CVE_STATUS[CVE-2021-47419] = "fixed-version: Fixed from version 5.15" | ||
| 1066 | |||
| 1067 | CVE_STATUS[CVE-2021-47420] = "fixed-version: Fixed from version 5.15" | ||
| 1068 | |||
| 1069 | CVE_STATUS[CVE-2021-47421] = "fixed-version: Fixed from version 5.15" | ||
| 1070 | |||
| 1071 | CVE_STATUS[CVE-2021-47422] = "fixed-version: Fixed from version 5.15" | ||
| 1072 | |||
| 1073 | CVE_STATUS[CVE-2021-47423] = "fixed-version: Fixed from version 5.15" | ||
| 1074 | |||
| 1075 | CVE_STATUS[CVE-2021-47424] = "fixed-version: Fixed from version 5.15" | ||
| 1076 | |||
| 1077 | CVE_STATUS[CVE-2021-47425] = "fixed-version: Fixed from version 5.15" | ||
| 1078 | |||
| 1079 | CVE_STATUS[CVE-2021-47426] = "fixed-version: Fixed from version 5.15" | ||
| 1080 | |||
| 1081 | CVE_STATUS[CVE-2021-47427] = "fixed-version: Fixed from version 5.15" | ||
| 1082 | |||
| 1083 | CVE_STATUS[CVE-2021-47428] = "fixed-version: Fixed from version 5.15" | ||
| 1084 | |||
| 1085 | CVE_STATUS[CVE-2021-47429] = "fixed-version: Fixed from version 5.15" | ||
| 1086 | |||
| 1087 | CVE_STATUS[CVE-2021-47430] = "fixed-version: Fixed from version 5.15" | ||
| 1088 | |||
| 1089 | CVE_STATUS[CVE-2021-47431] = "fixed-version: Fixed from version 5.15" | ||
| 1090 | |||
| 1091 | CVE_STATUS[CVE-2021-47432] = "fixed-version: Fixed from version 6.7" | ||
| 1092 | |||
| 1093 | CVE_STATUS[CVE-2021-47433] = "fixed-version: Fixed from version 5.15" | ||
| 1094 | |||
| 1095 | CVE_STATUS[CVE-2021-47434] = "fixed-version: Fixed from version 5.15" | ||
| 1096 | |||
| 1097 | CVE_STATUS[CVE-2021-47435] = "fixed-version: Fixed from version 5.15" | ||
| 1098 | |||
| 1099 | CVE_STATUS[CVE-2021-47436] = "fixed-version: Fixed from version 5.14.14" | ||
| 1100 | |||
| 1101 | CVE_STATUS[CVE-2021-47437] = "fixed-version: Fixed from version 5.15" | ||
| 1102 | |||
| 1103 | CVE_STATUS[CVE-2021-47438] = "fixed-version: Fixed from version 5.15" | ||
| 1104 | |||
| 1105 | CVE_STATUS[CVE-2021-47439] = "fixed-version: Fixed from version 5.15" | ||
| 1106 | |||
| 1107 | CVE_STATUS[CVE-2021-47440] = "fixed-version: Fixed from version 5.15" | ||
| 1108 | |||
| 1109 | CVE_STATUS[CVE-2021-47441] = "fixed-version: Fixed from version 5.15" | ||
| 1110 | |||
| 1111 | CVE_STATUS[CVE-2021-47442] = "fixed-version: Fixed from version 5.15" | ||
| 1112 | |||
| 1113 | CVE_STATUS[CVE-2021-47443] = "fixed-version: Fixed from version 5.15" | ||
| 1114 | |||
| 1115 | CVE_STATUS[CVE-2021-47444] = "fixed-version: Fixed from version 5.15" | ||
| 1116 | |||
| 1117 | CVE_STATUS[CVE-2021-47445] = "fixed-version: Fixed from version 5.15" | ||
| 1118 | |||
| 1119 | CVE_STATUS[CVE-2021-47446] = "fixed-version: Fixed from version 5.15" | ||
| 1120 | |||
| 1121 | CVE_STATUS[CVE-2021-47447] = "fixed-version: Fixed from version 5.15" | ||
| 1122 | |||
| 1123 | CVE_STATUS[CVE-2021-47448] = "fixed-version: Fixed from version 5.15" | ||
| 1124 | |||
| 1125 | CVE_STATUS[CVE-2021-47449] = "fixed-version: Fixed from version 5.14.14" | ||
| 1126 | |||
| 1127 | CVE_STATUS[CVE-2021-47450] = "fixed-version: Fixed from version 5.15" | ||
| 1128 | |||
| 1129 | CVE_STATUS[CVE-2021-47451] = "fixed-version: Fixed from version 5.15" | ||
| 1130 | |||
| 1131 | CVE_STATUS[CVE-2021-47452] = "fixed-version: Fixed from version 5.15" | ||
| 1132 | |||
| 1133 | CVE_STATUS[CVE-2021-47453] = "fixed-version: Fixed from version 5.15" | ||
| 1134 | |||
| 1135 | CVE_STATUS[CVE-2021-47454] = "fixed-version: Fixed from version 5.15" | ||
| 1136 | |||
| 1137 | CVE_STATUS[CVE-2021-47455] = "fixed-version: Fixed from version 5.15" | ||
| 1138 | |||
| 1139 | CVE_STATUS[CVE-2021-47456] = "fixed-version: Fixed from version 5.15" | ||
| 1140 | |||
| 1141 | CVE_STATUS[CVE-2021-47457] = "fixed-version: Fixed from version 5.15" | ||
| 1142 | |||
| 1143 | CVE_STATUS[CVE-2021-47458] = "fixed-version: Fixed from version 5.15" | ||
| 1144 | |||
| 1145 | CVE_STATUS[CVE-2021-47459] = "fixed-version: Fixed from version 5.15" | ||
| 1146 | |||
| 1147 | CVE_STATUS[CVE-2021-47460] = "fixed-version: Fixed from version 5.15" | ||
| 1148 | |||
| 1149 | CVE_STATUS[CVE-2021-47461] = "fixed-version: Fixed from version 5.15" | ||
| 1150 | |||
| 1151 | CVE_STATUS[CVE-2021-47462] = "fixed-version: Fixed from version 5.15" | ||
| 1152 | |||
| 1153 | CVE_STATUS[CVE-2021-47463] = "fixed-version: Fixed from version 5.15" | ||
| 1154 | |||
| 1155 | CVE_STATUS[CVE-2021-47464] = "fixed-version: Fixed from version 5.15" | ||
| 1156 | |||
| 1157 | CVE_STATUS[CVE-2021-47465] = "fixed-version: Fixed from version 5.15" | ||
| 1158 | |||
| 1159 | CVE_STATUS[CVE-2021-47466] = "fixed-version: Fixed from version 5.15" | ||
| 1160 | |||
| 1161 | CVE_STATUS[CVE-2021-47467] = "fixed-version: Fixed from version 5.15" | ||
| 1162 | |||
| 1163 | CVE_STATUS[CVE-2021-47468] = "fixed-version: Fixed from version 5.15" | ||
| 1164 | |||
| 1165 | CVE_STATUS[CVE-2021-47470] = "fixed-version: Fixed from version 5.15" | ||
| 1166 | |||
| 1167 | CVE_STATUS[CVE-2021-47471] = "fixed-version: Fixed from version 5.15" | ||
| 1168 | |||
| 1169 | CVE_STATUS[CVE-2021-47473] = "fixed-version: Fixed from version 5.15" | ||
| 1170 | |||
| 1171 | CVE_STATUS[CVE-2021-47474] = "fixed-version: Fixed from version 5.16" | ||
| 1172 | |||
| 1173 | CVE_STATUS[CVE-2021-47475] = "fixed-version: Fixed from version 5.16" | ||
| 1174 | |||
| 1175 | CVE_STATUS[CVE-2021-47476] = "fixed-version: Fixed from version 5.16" | ||
| 1176 | |||
| 1177 | CVE_STATUS[CVE-2021-47477] = "fixed-version: Fixed from version 5.16" | ||
| 1178 | |||
| 1179 | CVE_STATUS[CVE-2021-47478] = "fixed-version: Fixed from version 5.16" | ||
| 1180 | |||
| 1181 | CVE_STATUS[CVE-2021-47479] = "fixed-version: Fixed from version 5.16" | ||
| 1182 | |||
| 1183 | CVE_STATUS[CVE-2021-47480] = "fixed-version: Fixed from version 5.15" | ||
| 1184 | |||
| 1185 | CVE_STATUS[CVE-2021-47481] = "fixed-version: Fixed from version 5.15" | ||
| 1186 | |||
| 1187 | CVE_STATUS[CVE-2021-47482] = "fixed-version: Fixed from version 5.15" | ||
| 1188 | |||
| 1189 | CVE_STATUS[CVE-2021-47483] = "fixed-version: Fixed from version 5.15" | ||
| 1190 | |||
| 1191 | CVE_STATUS[CVE-2021-47484] = "fixed-version: Fixed from version 5.15" | ||
| 1192 | |||
| 1193 | CVE_STATUS[CVE-2021-47485] = "fixed-version: Fixed from version 5.15" | ||
| 1194 | |||
| 1195 | CVE_STATUS[CVE-2021-47486] = "fixed-version: Fixed from version 5.15" | ||
| 1196 | |||
| 1197 | CVE_STATUS[CVE-2021-47489] = "fixed-version: Fixed from version 5.15" | ||
| 1198 | |||
| 1199 | CVE_STATUS[CVE-2021-47490] = "fixed-version: Fixed from version 5.15" | ||
| 1200 | |||
| 1201 | CVE_STATUS[CVE-2021-47491] = "fixed-version: Fixed from version 5.15" | ||
| 1202 | |||
| 1203 | CVE_STATUS[CVE-2021-47492] = "fixed-version: Fixed from version 5.15" | ||
| 1204 | |||
| 1205 | CVE_STATUS[CVE-2021-47493] = "fixed-version: Fixed from version 5.15" | ||
| 1206 | |||
| 1207 | CVE_STATUS[CVE-2021-47494] = "fixed-version: Fixed from version 5.15" | ||
| 1208 | |||
| 1209 | CVE_STATUS[CVE-2021-47495] = "fixed-version: Fixed from version 5.15" | ||
| 1210 | |||
| 1211 | CVE_STATUS[CVE-2021-47496] = "fixed-version: Fixed from version 5.15" | ||
| 1212 | |||
| 1213 | CVE_STATUS[CVE-2021-47497] = "fixed-version: Fixed from version 5.15" | ||
| 1214 | |||
| 1215 | CVE_STATUS[CVE-2021-47498] = "fixed-version: Fixed from version 5.15" | ||
| 1216 | |||
| 1217 | CVE_STATUS[CVE-2021-47499] = "fixed-version: Fixed from version 5.16" | ||
| 1218 | |||
| 1219 | CVE_STATUS[CVE-2021-47500] = "fixed-version: Fixed from version 5.16" | ||
| 1220 | |||
| 1221 | CVE_STATUS[CVE-2021-47501] = "fixed-version: Fixed from version 5.16" | ||
| 1222 | |||
| 1223 | CVE_STATUS[CVE-2021-47502] = "fixed-version: Fixed from version 5.16" | ||
| 1224 | |||
| 1225 | CVE_STATUS[CVE-2021-47503] = "fixed-version: Fixed from version 5.16" | ||
| 1226 | |||
| 1227 | CVE_STATUS[CVE-2021-47504] = "fixed-version: Fixed from version 5.16" | ||
| 1228 | |||
| 1229 | CVE_STATUS[CVE-2021-47505] = "fixed-version: Fixed from version 5.16" | ||
| 1230 | |||
| 1231 | CVE_STATUS[CVE-2021-47506] = "fixed-version: Fixed from version 5.16" | ||
| 1232 | |||
| 1233 | CVE_STATUS[CVE-2021-47507] = "fixed-version: Fixed from version 5.16" | ||
| 1234 | |||
| 1235 | CVE_STATUS[CVE-2021-47508] = "fixed-version: Fixed from version 5.16" | ||
| 1236 | |||
| 1237 | CVE_STATUS[CVE-2021-47509] = "fixed-version: Fixed from version 5.16" | ||
| 1238 | |||
| 1239 | CVE_STATUS[CVE-2021-47510] = "fixed-version: Fixed from version 5.16" | ||
| 1240 | |||
| 1241 | CVE_STATUS[CVE-2021-47511] = "fixed-version: Fixed from version 5.16" | ||
| 1242 | |||
| 1243 | CVE_STATUS[CVE-2021-47512] = "fixed-version: Fixed from version 5.16" | ||
| 1244 | |||
| 1245 | CVE_STATUS[CVE-2021-47513] = "fixed-version: Fixed from version 5.16" | ||
| 1246 | |||
| 1247 | CVE_STATUS[CVE-2021-47514] = "fixed-version: Fixed from version 5.16" | ||
| 1248 | |||
| 1249 | CVE_STATUS[CVE-2021-47515] = "fixed-version: Fixed from version 5.16" | ||
| 1250 | |||
| 1251 | CVE_STATUS[CVE-2021-47516] = "fixed-version: Fixed from version 5.16" | ||
| 1252 | |||
| 1253 | CVE_STATUS[CVE-2021-47517] = "fixed-version: Fixed from version 5.16" | ||
| 1254 | |||
| 1255 | CVE_STATUS[CVE-2021-47518] = "fixed-version: Fixed from version 5.16" | ||
| 1256 | |||
| 1257 | CVE_STATUS[CVE-2021-47519] = "fixed-version: Fixed from version 5.16" | ||
| 1258 | |||
| 1259 | CVE_STATUS[CVE-2021-47520] = "fixed-version: Fixed from version 5.16" | ||
| 1260 | |||
| 1261 | CVE_STATUS[CVE-2021-47521] = "fixed-version: Fixed from version 5.16" | ||
| 1262 | |||
| 1263 | CVE_STATUS[CVE-2021-47522] = "fixed-version: Fixed from version 5.16" | ||
| 1264 | |||
| 1265 | CVE_STATUS[CVE-2021-47523] = "fixed-version: Fixed from version 5.16" | ||
| 1266 | |||
| 1267 | CVE_STATUS[CVE-2021-47524] = "fixed-version: Fixed from version 5.16" | ||
| 1268 | |||
| 1269 | CVE_STATUS[CVE-2021-47525] = "fixed-version: Fixed from version 5.16" | ||
| 1270 | |||
| 1271 | CVE_STATUS[CVE-2021-47526] = "fixed-version: Fixed from version 5.16" | ||
| 1272 | |||
| 1273 | CVE_STATUS[CVE-2021-47527] = "fixed-version: Fixed from version 5.16" | ||
| 1274 | |||
| 1275 | CVE_STATUS[CVE-2021-47528] = "fixed-version: Fixed from version 5.16" | ||
| 1276 | |||
| 1277 | CVE_STATUS[CVE-2021-47529] = "fixed-version: Fixed from version 5.16" | ||
| 1278 | |||
| 1279 | CVE_STATUS[CVE-2021-47530] = "fixed-version: Fixed from version 5.16" | ||
| 1280 | |||
| 1281 | CVE_STATUS[CVE-2021-47531] = "fixed-version: Fixed from version 5.16" | ||
| 1282 | |||
| 1283 | CVE_STATUS[CVE-2021-47532] = "fixed-version: Fixed from version 5.16" | ||
| 1284 | |||
| 1285 | CVE_STATUS[CVE-2021-47533] = "fixed-version: Fixed from version 5.16" | ||
| 1286 | |||
| 1287 | CVE_STATUS[CVE-2021-47534] = "fixed-version: Fixed from version 5.16" | ||
| 1288 | |||
| 1289 | CVE_STATUS[CVE-2021-47535] = "fixed-version: Fixed from version 5.16" | ||
| 1290 | |||
| 1291 | CVE_STATUS[CVE-2021-47536] = "fixed-version: Fixed from version 5.16" | ||
| 1292 | |||
| 1293 | CVE_STATUS[CVE-2021-47537] = "fixed-version: Fixed from version 5.16" | ||
| 1294 | |||
| 1295 | CVE_STATUS[CVE-2021-47538] = "fixed-version: Fixed from version 5.16" | ||
| 1296 | |||
| 1297 | CVE_STATUS[CVE-2021-47539] = "fixed-version: Fixed from version 5.16" | ||
| 1298 | |||
| 1299 | CVE_STATUS[CVE-2021-47540] = "fixed-version: Fixed from version 5.16" | ||
| 1300 | |||
| 1301 | CVE_STATUS[CVE-2021-47541] = "fixed-version: Fixed from version 5.16" | ||
| 1302 | |||
| 1303 | CVE_STATUS[CVE-2021-47542] = "fixed-version: Fixed from version 5.16" | ||
| 1304 | |||
| 1305 | CVE_STATUS[CVE-2021-47544] = "fixed-version: Fixed from version 5.16" | ||
| 1306 | |||
| 1307 | CVE_STATUS[CVE-2021-47546] = "fixed-version: Fixed from version 5.16" | ||
| 1308 | |||
| 1309 | CVE_STATUS[CVE-2021-47547] = "fixed-version: Fixed from version 5.16" | ||
| 1310 | |||
| 1311 | CVE_STATUS[CVE-2021-47548] = "fixed-version: Fixed from version 5.16" | ||
| 1312 | |||
| 1313 | CVE_STATUS[CVE-2021-47549] = "fixed-version: Fixed from version 5.16" | ||
| 1314 | |||
| 1315 | CVE_STATUS[CVE-2021-47550] = "fixed-version: Fixed from version 5.16" | ||
| 1316 | |||
| 1317 | CVE_STATUS[CVE-2021-47551] = "fixed-version: Fixed from version 5.16" | ||
| 1318 | |||
| 1319 | CVE_STATUS[CVE-2021-47552] = "fixed-version: Fixed from version 5.16" | ||
| 1320 | |||
| 1321 | CVE_STATUS[CVE-2021-47553] = "fixed-version: Fixed from version 5.16" | ||
| 1322 | |||
| 1323 | CVE_STATUS[CVE-2021-47554] = "fixed-version: Fixed from version 5.16" | ||
| 1324 | |||
| 1325 | CVE_STATUS[CVE-2021-47555] = "fixed-version: Fixed from version 5.15.6" | ||
| 1326 | |||
| 1327 | CVE_STATUS[CVE-2021-47556] = "fixed-version: Fixed from version 5.16" | ||
| 1328 | |||
| 1329 | CVE_STATUS[CVE-2021-47557] = "fixed-version: Fixed from version 5.16" | ||
| 1330 | |||
| 1331 | CVE_STATUS[CVE-2021-47558] = "fixed-version: Fixed from version 5.16" | ||
| 1332 | |||
| 1333 | CVE_STATUS[CVE-2021-47559] = "fixed-version: Fixed from version 5.16" | ||
| 1334 | |||
| 1335 | CVE_STATUS[CVE-2021-47560] = "fixed-version: Fixed from version 5.16" | ||
| 1336 | |||
| 1337 | CVE_STATUS[CVE-2021-47561] = "fixed-version: Fixed from version 5.16" | ||
| 1338 | |||
| 1339 | CVE_STATUS[CVE-2021-47562] = "fixed-version: Fixed from version 5.16" | ||
| 1340 | |||
| 1341 | CVE_STATUS[CVE-2021-47563] = "fixed-version: Fixed from version 5.16" | ||
| 1342 | |||
| 1343 | CVE_STATUS[CVE-2021-47564] = "fixed-version: Fixed from version 5.16" | ||
| 1344 | |||
| 1345 | CVE_STATUS[CVE-2021-47565] = "fixed-version: Fixed from version 5.16" | ||
| 1346 | |||
| 1347 | CVE_STATUS[CVE-2021-47566] = "fixed-version: Fixed from version 5.16" | ||
| 1348 | |||
| 1349 | CVE_STATUS[CVE-2021-47567] = "fixed-version: Fixed from version 5.16" | ||
| 1350 | |||
| 1351 | CVE_STATUS[CVE-2021-47568] = "fixed-version: Fixed from version 5.16" | ||
| 1352 | |||
| 1353 | CVE_STATUS[CVE-2021-47569] = "fixed-version: Fixed from version 5.16" | ||
| 1354 | |||
| 1355 | CVE_STATUS[CVE-2021-47570] = "fixed-version: Fixed from version 5.16" | ||
| 1356 | |||
| 1357 | CVE_STATUS[CVE-2021-47571] = "fixed-version: Fixed from version 5.16" | ||
| 1358 | |||
| 1359 | CVE_STATUS[CVE-2021-47572] = "fixed-version: Fixed from version 5.16" | ||
| 1360 | |||
| 1361 | CVE_STATUS[CVE-2021-47576] = "fixed-version: Fixed from version 5.16" | ||
| 1362 | |||
| 1363 | CVE_STATUS[CVE-2021-47577] = "fixed-version: Fixed from version 5.16" | ||
| 1364 | |||
| 1365 | CVE_STATUS[CVE-2021-47578] = "fixed-version: Fixed from version 5.16" | ||
| 1366 | |||
| 1367 | CVE_STATUS[CVE-2021-47579] = "fixed-version: Fixed from version 5.16" | ||
| 1368 | |||
| 1369 | CVE_STATUS[CVE-2021-47580] = "fixed-version: Fixed from version 5.16" | ||
| 1370 | |||
| 1371 | CVE_STATUS[CVE-2021-47582] = "fixed-version: Fixed from version 5.16" | ||
| 1372 | |||
| 1373 | CVE_STATUS[CVE-2021-47583] = "fixed-version: Fixed from version 5.16" | ||
| 1374 | |||
| 1375 | CVE_STATUS[CVE-2021-47584] = "fixed-version: Fixed from version 5.16" | ||
| 1376 | |||
| 1377 | CVE_STATUS[CVE-2021-47585] = "fixed-version: Fixed from version 5.16" | ||
| 1378 | |||
| 1379 | CVE_STATUS[CVE-2021-47586] = "fixed-version: Fixed from version 5.16" | ||
| 1380 | |||
| 1381 | CVE_STATUS[CVE-2021-47587] = "fixed-version: Fixed from version 5.16" | ||
| 1382 | |||
| 1383 | CVE_STATUS[CVE-2021-47588] = "fixed-version: Fixed from version 5.16" | ||
| 1384 | |||
| 1385 | CVE_STATUS[CVE-2021-47589] = "fixed-version: Fixed from version 5.16" | ||
| 1386 | |||
| 1387 | CVE_STATUS[CVE-2021-47590] = "fixed-version: Fixed from version 5.16" | ||
| 1388 | |||
| 1389 | CVE_STATUS[CVE-2021-47591] = "fixed-version: Fixed from version 5.16" | ||
| 1390 | |||
| 1391 | CVE_STATUS[CVE-2021-47592] = "fixed-version: Fixed from version 5.16" | ||
| 1392 | |||
| 1393 | CVE_STATUS[CVE-2021-47593] = "fixed-version: Fixed from version 5.16" | ||
| 1394 | |||
| 1395 | CVE_STATUS[CVE-2021-47594] = "fixed-version: Fixed from version 5.16" | ||
| 1396 | |||
| 1397 | CVE_STATUS[CVE-2021-47595] = "fixed-version: Fixed from version 5.15.11" | ||
| 1398 | |||
| 1399 | CVE_STATUS[CVE-2021-47596] = "fixed-version: Fixed from version 5.16" | ||
| 1400 | |||
| 1401 | CVE_STATUS[CVE-2021-47597] = "fixed-version: Fixed from version 5.16" | ||
| 1402 | |||
| 1403 | CVE_STATUS[CVE-2021-47598] = "fixed-version: Fixed from version 5.16" | ||
| 1404 | |||
| 1405 | CVE_STATUS[CVE-2021-47599] = "fixed-version: Fixed from version 5.16" | ||
| 1406 | |||
| 1407 | CVE_STATUS[CVE-2021-47600] = "fixed-version: Fixed from version 5.16" | ||
| 1408 | |||
| 1409 | CVE_STATUS[CVE-2021-47601] = "fixed-version: Fixed from version 5.16" | ||
| 1410 | |||
| 1411 | CVE_STATUS[CVE-2021-47602] = "fixed-version: Fixed from version 5.16" | ||
| 1412 | |||
| 1413 | CVE_STATUS[CVE-2021-47603] = "fixed-version: Fixed from version 5.16" | ||
| 1414 | |||
| 1415 | CVE_STATUS[CVE-2021-47604] = "fixed-version: Fixed from version 5.16" | ||
| 1416 | |||
| 1417 | CVE_STATUS[CVE-2021-47605] = "fixed-version: Fixed from version 5.16" | ||
| 1418 | |||
| 1419 | CVE_STATUS[CVE-2021-47606] = "fixed-version: Fixed from version 5.16" | ||
| 1420 | |||
| 1421 | CVE_STATUS[CVE-2021-47607] = "fixed-version: Fixed from version 5.16" | ||
| 1422 | |||
| 1423 | CVE_STATUS[CVE-2021-47608] = "fixed-version: Fixed from version 5.16" | ||
| 1424 | |||
| 1425 | CVE_STATUS[CVE-2021-47609] = "fixed-version: Fixed from version 5.16" | ||
| 1426 | |||
| 1427 | CVE_STATUS[CVE-2021-47610] = "fixed-version: Fixed from version 5.16" | ||
| 1428 | |||
| 1429 | CVE_STATUS[CVE-2021-47611] = "fixed-version: Fixed from version 5.16" | ||
| 1430 | |||
| 1431 | CVE_STATUS[CVE-2021-47612] = "fixed-version: Fixed from version 5.16" | ||
| 1432 | |||
| 1433 | CVE_STATUS[CVE-2021-47613] = "fixed-version: Fixed from version 5.16" | ||
| 1434 | |||
| 1435 | CVE_STATUS[CVE-2021-47614] = "fixed-version: Fixed from version 5.16" | ||
| 1436 | |||
| 1437 | CVE_STATUS[CVE-2021-47616] = "fixed-version: Fixed from version 5.16" | ||
| 1438 | |||
| 1439 | CVE_STATUS[CVE-2021-47617] = "fixed-version: Fixed from version 5.17" | ||
| 1440 | |||
| 1441 | CVE_STATUS[CVE-2021-47618] = "fixed-version: Fixed from version 5.17" | ||
| 1442 | |||
| 1443 | CVE_STATUS[CVE-2021-47619] = "fixed-version: Fixed from version 5.17" | ||
| 1444 | |||
| 1445 | CVE_STATUS[CVE-2021-47620] = "fixed-version: Fixed from version 5.17" | ||
| 1446 | |||
| 1447 | CVE_STATUS[CVE-2021-47622] = "fixed-version: Fixed from version 5.17" | ||
| 1448 | |||
| 1449 | CVE_STATUS[CVE-2021-47623] = "fixed-version: Fixed from version 5.17" | ||
| 1450 | |||
| 1451 | CVE_STATUS[CVE-2021-47624] = "fixed-version: Fixed from version 5.17" | ||
| 1452 | |||
| 1453 | CVE_STATUS[CVE-2021-47631] = "fixed-version: Fixed from version 5.18" | ||
| 1454 | |||
| 1455 | CVE_STATUS[CVE-2021-47632] = "fixed-version: Fixed from version 5.18" | ||
| 1456 | |||
| 1457 | CVE_STATUS[CVE-2021-47633] = "fixed-version: Fixed from version 5.18" | ||
| 1458 | |||
| 1459 | CVE_STATUS[CVE-2021-47634] = "fixed-version: Fixed from version 5.18" | ||
| 1460 | |||
| 1461 | CVE_STATUS[CVE-2021-47635] = "fixed-version: Fixed from version 5.18" | ||
| 1462 | |||
| 1463 | CVE_STATUS[CVE-2021-47636] = "fixed-version: Fixed from version 5.18" | ||
| 1464 | |||
| 1465 | CVE_STATUS[CVE-2021-47637] = "fixed-version: Fixed from version 5.18" | ||
| 1466 | |||
| 1467 | CVE_STATUS[CVE-2021-47638] = "fixed-version: Fixed from version 5.18" | ||
| 1468 | |||
| 1469 | CVE_STATUS[CVE-2021-47639] = "fixed-version: Fixed from version 5.18" | ||
| 1470 | |||
| 1471 | CVE_STATUS[CVE-2021-47640] = "fixed-version: Fixed from version 5.18" | ||
| 1472 | |||
| 1473 | CVE_STATUS[CVE-2021-47641] = "fixed-version: Fixed from version 5.18" | ||
| 1474 | |||
| 1475 | CVE_STATUS[CVE-2021-47642] = "fixed-version: Fixed from version 5.18" | ||
| 1476 | |||
| 1477 | CVE_STATUS[CVE-2021-47643] = "fixed-version: Fixed from version 5.18" | ||
| 1478 | |||
| 1479 | CVE_STATUS[CVE-2021-47644] = "fixed-version: Fixed from version 5.18" | ||
| 1480 | |||
| 1481 | CVE_STATUS[CVE-2021-47645] = "fixed-version: Fixed from version 5.18" | ||
| 1482 | |||
| 1483 | CVE_STATUS[CVE-2021-47646] = "fixed-version: Fixed from version 5.18" | ||
| 1484 | |||
| 1485 | CVE_STATUS[CVE-2021-47647] = "fixed-version: Fixed from version 5.18" | ||
| 1486 | |||
| 1487 | CVE_STATUS[CVE-2021-47648] = "fixed-version: Fixed from version 5.18" | ||
| 1488 | |||
| 1489 | CVE_STATUS[CVE-2021-47649] = "fixed-version: Fixed from version 5.18" | ||
| 1490 | |||
| 1491 | CVE_STATUS[CVE-2021-47650] = "fixed-version: Fixed from version 5.18" | ||
| 1492 | |||
| 1493 | CVE_STATUS[CVE-2021-47651] = "fixed-version: Fixed from version 5.18" | ||
| 1494 | |||
| 1495 | CVE_STATUS[CVE-2021-47652] = "fixed-version: Fixed from version 5.18" | ||
| 1496 | |||
| 1497 | CVE_STATUS[CVE-2021-47653] = "fixed-version: Fixed from version 5.18" | ||
| 1498 | |||
| 1499 | CVE_STATUS[CVE-2021-47654] = "fixed-version: Fixed from version 5.18" | ||
| 1500 | |||
| 1501 | CVE_STATUS[CVE-2021-47655] = "fixed-version: Fixed from version 5.18" | ||
| 1502 | |||
| 1503 | CVE_STATUS[CVE-2021-47656] = "fixed-version: Fixed from version 5.18" | ||
| 1504 | |||
| 1505 | CVE_STATUS[CVE-2021-47657] = "fixed-version: Fixed from version 5.18" | ||
| 1506 | |||
| 1507 | CVE_STATUS[CVE-2021-47658] = "fixed-version: Fixed from version 5.17" | ||
| 1508 | |||
| 1509 | CVE_STATUS[CVE-2021-47659] = "fixed-version: Fixed from version 5.19" | ||
| 1510 | |||
| 1511 | CVE_STATUS[CVE-2021-47660] = "fixed-version: Fixed from version 5.19" | ||
| 1512 | |||
| 1513 | CVE_STATUS[CVE-2021-47668] = "fixed-version: Fixed from version 5.11" | ||
| 1514 | |||
| 1515 | CVE_STATUS[CVE-2021-47669] = "fixed-version: Fixed from version 5.11" | ||
| 1516 | |||
| 1517 | CVE_STATUS[CVE-2021-47670] = "fixed-version: Fixed from version 5.11" | ||
| 1518 | |||
| 1519 | CVE_STATUS[CVE-2021-47671] = "fixed-version: Fixed from version 5.16" | ||
| 1520 | |||
| 1521 | CVE_STATUS[CVE-2021-4439] = "fixed-version: Fixed from version 5.15" | ||
| 1522 | |||
| 1523 | CVE_STATUS[CVE-2021-4440] = "fixed-version: Fixed from version 5.10.218" | ||
| 1524 | |||
| 1525 | CVE_STATUS[CVE-2021-4441] = "fixed-version: Fixed from version 5.17" | ||
| 1526 | |||
| 1527 | CVE_STATUS[CVE-2021-4442] = "fixed-version: Fixed from version 5.12" | ||
| 1528 | |||
| 1529 | CVE_STATUS[CVE-2021-4453] = "fixed-version: Fixed from version 5.16" | ||
| 1530 | |||
| 1531 | CVE_STATUS[CVE-2021-4454] = "fixed-version: Fixed from version 6.2" | ||
| 1532 | |||
| 1533 | CVE_STATUS[CVE-2021-4460] = "fixed-version: Fixed from version 5.13" | ||
| 1534 | |||
| 1535 | CVE_STATUS[CVE-2022-21546] = "fixed-version: Fixed from version 5.19" | ||
| 1536 | |||
| 1537 | # CVE-2022-26365 has no known resolution | ||
| 1538 | |||
| 1539 | # CVE-2022-33740 has no known resolution | ||
| 1540 | |||
| 1541 | # CVE-2022-33741 has no known resolution | ||
| 1542 | |||
| 1543 | # CVE-2022-33742 has no known resolution | ||
| 1544 | |||
| 1545 | # CVE-2022-33743 has no known resolution | ||
| 1546 | |||
| 1547 | # CVE-2022-33744 has no known resolution | ||
| 1548 | |||
| 1549 | # CVE-2022-3643 has no known resolution | ||
| 1550 | |||
| 1551 | # CVE-2022-42328 has no known resolution | ||
| 1552 | |||
| 1553 | # CVE-2022-42329 has no known resolution | ||
| 1554 | |||
| 1555 | CVE_STATUS[CVE-2022-48626] = "fixed-version: Fixed from version 5.17" | ||
| 1556 | |||
| 1557 | CVE_STATUS[CVE-2022-48627] = "fixed-version: Fixed from version 5.19" | ||
| 1558 | |||
| 1559 | CVE_STATUS[CVE-2022-48628] = "fixed-version: Fixed from version 6.6" | ||
| 1560 | |||
| 1561 | CVE_STATUS[CVE-2022-48629] = "fixed-version: Fixed from version 5.17" | ||
| 1562 | |||
| 1563 | CVE_STATUS[CVE-2022-48630] = "fixed-version: Fixed from version 5.18" | ||
| 1564 | |||
| 1565 | CVE_STATUS[CVE-2022-48631] = "fixed-version: Fixed from version 6.0" | ||
| 1566 | |||
| 1567 | CVE_STATUS[CVE-2022-48632] = "fixed-version: Fixed from version 6.0" | ||
| 1568 | |||
| 1569 | CVE_STATUS[CVE-2022-48633] = "fixed-version: Fixed from version 6.0" | ||
| 1570 | |||
| 1571 | CVE_STATUS[CVE-2022-48634] = "fixed-version: Fixed from version 6.0" | ||
| 1572 | |||
| 1573 | CVE_STATUS[CVE-2022-48635] = "fixed-version: Fixed from version 6.0" | ||
| 1574 | |||
| 1575 | CVE_STATUS[CVE-2022-48636] = "fixed-version: Fixed from version 6.0" | ||
| 1576 | |||
| 1577 | CVE_STATUS[CVE-2022-48637] = "fixed-version: Fixed from version 6.0" | ||
| 1578 | |||
| 1579 | CVE_STATUS[CVE-2022-48638] = "fixed-version: Fixed from version 6.0" | ||
| 1580 | |||
| 1581 | CVE_STATUS[CVE-2022-48639] = "fixed-version: Fixed from version 6.0" | ||
| 1582 | |||
| 1583 | CVE_STATUS[CVE-2022-48640] = "fixed-version: Fixed from version 6.0" | ||
| 1584 | |||
| 1585 | CVE_STATUS[CVE-2022-48641] = "fixed-version: Fixed from version 5.19.12" | ||
| 1586 | |||
| 1587 | CVE_STATUS[CVE-2022-48642] = "fixed-version: Fixed from version 6.0" | ||
| 1588 | |||
| 1589 | CVE_STATUS[CVE-2022-48643] = "fixed-version: Fixed from version 5.19.12" | ||
| 1590 | |||
| 1591 | CVE_STATUS[CVE-2022-48644] = "fixed-version: Fixed from version 6.0" | ||
| 1592 | |||
| 1593 | CVE_STATUS[CVE-2022-48645] = "fixed-version: Fixed from version 6.0" | ||
| 1594 | |||
| 1595 | CVE_STATUS[CVE-2022-48646] = "fixed-version: Fixed from version 6.0" | ||
| 1596 | |||
| 1597 | CVE_STATUS[CVE-2022-48647] = "fixed-version: Fixed from version 6.0" | ||
| 1598 | |||
| 1599 | CVE_STATUS[CVE-2022-48648] = "fixed-version: Fixed from version 6.0" | ||
| 1600 | |||
| 1601 | CVE_STATUS[CVE-2022-48649] = "fixed-version: Fixed from version 5.19.12" | ||
| 1602 | |||
| 1603 | CVE_STATUS[CVE-2022-48650] = "fixed-version: Fixed from version 6.0" | ||
| 1604 | |||
| 1605 | CVE_STATUS[CVE-2022-48651] = "fixed-version: Fixed from version 6.0" | ||
| 1606 | |||
| 1607 | CVE_STATUS[CVE-2022-48652] = "fixed-version: Fixed from version 6.0" | ||
| 1608 | |||
| 1609 | CVE_STATUS[CVE-2022-48653] = "fixed-version: Fixed from version 6.0" | ||
| 1610 | |||
| 1611 | CVE_STATUS[CVE-2022-48654] = "fixed-version: Fixed from version 6.0" | ||
| 1612 | |||
| 1613 | CVE_STATUS[CVE-2022-48655] = "fixed-version: Fixed from version 6.0" | ||
| 1614 | |||
| 1615 | CVE_STATUS[CVE-2022-48656] = "fixed-version: Fixed from version 6.0" | ||
| 1616 | |||
| 1617 | CVE_STATUS[CVE-2022-48657] = "fixed-version: Fixed from version 6.0" | ||
| 1618 | |||
| 1619 | CVE_STATUS[CVE-2022-48658] = "fixed-version: Fixed from version 6.0" | ||
| 1620 | |||
| 1621 | CVE_STATUS[CVE-2022-48659] = "fixed-version: Fixed from version 6.0" | ||
| 1622 | |||
| 1623 | CVE_STATUS[CVE-2022-48660] = "fixed-version: Fixed from version 6.0" | ||
| 1624 | |||
| 1625 | CVE_STATUS[CVE-2022-48661] = "fixed-version: Fixed from version 6.0" | ||
| 1626 | |||
| 1627 | CVE_STATUS[CVE-2022-48662] = "fixed-version: Fixed from version 6.0" | ||
| 1628 | |||
| 1629 | CVE_STATUS[CVE-2022-48663] = "fixed-version: Fixed from version 5.19.12" | ||
| 1630 | |||
| 1631 | CVE_STATUS[CVE-2022-48664] = "fixed-version: Fixed from version 6.0" | ||
| 1632 | |||
| 1633 | CVE_STATUS[CVE-2022-48665] = "fixed-version: Fixed from version 6.0" | ||
| 1634 | |||
| 1635 | CVE_STATUS[CVE-2022-48666] = "fixed-version: Fixed from version 6.0" | ||
| 1636 | |||
| 1637 | CVE_STATUS[CVE-2022-48667] = "fixed-version: Fixed from version 6.0" | ||
| 1638 | |||
| 1639 | CVE_STATUS[CVE-2022-48668] = "fixed-version: Fixed from version 6.0" | ||
| 1640 | |||
| 1641 | CVE_STATUS[CVE-2022-48669] = "fixed-version: Fixed from version 6.9" | ||
| 1642 | |||
| 1643 | CVE_STATUS[CVE-2022-48670] = "fixed-version: Fixed from version 6.0" | ||
| 1644 | |||
| 1645 | CVE_STATUS[CVE-2022-48671] = "fixed-version: Fixed from version 5.19.11" | ||
| 1646 | |||
| 1647 | CVE_STATUS[CVE-2022-48672] = "fixed-version: Fixed from version 6.0" | ||
| 1648 | |||
| 1649 | CVE_STATUS[CVE-2022-48673] = "fixed-version: Fixed from version 6.0" | ||
| 1650 | |||
| 1651 | CVE_STATUS[CVE-2022-48674] = "fixed-version: Fixed from version 6.0" | ||
| 1652 | |||
| 1653 | CVE_STATUS[CVE-2022-48675] = "fixed-version: Fixed from version 6.0" | ||
| 1654 | |||
| 1655 | CVE_STATUS[CVE-2022-48686] = "fixed-version: Fixed from version 6.0" | ||
| 1656 | |||
| 1657 | CVE_STATUS[CVE-2022-48687] = "fixed-version: Fixed from version 6.0" | ||
| 1658 | |||
| 1659 | CVE_STATUS[CVE-2022-48688] = "fixed-version: Fixed from version 6.0" | ||
| 1660 | |||
| 1661 | CVE_STATUS[CVE-2022-48689] = "fixed-version: Fixed from version 6.0" | ||
| 1662 | |||
| 1663 | CVE_STATUS[CVE-2022-48690] = "fixed-version: Fixed from version 6.0" | ||
| 1664 | |||
| 1665 | CVE_STATUS[CVE-2022-48691] = "fixed-version: Fixed from version 6.0" | ||
| 1666 | |||
| 1667 | CVE_STATUS[CVE-2022-48692] = "fixed-version: Fixed from version 6.0" | ||
| 1668 | |||
| 1669 | CVE_STATUS[CVE-2022-48693] = "fixed-version: Fixed from version 6.0" | ||
| 1670 | |||
| 1671 | CVE_STATUS[CVE-2022-48694] = "fixed-version: Fixed from version 6.0" | ||
| 1672 | |||
| 1673 | CVE_STATUS[CVE-2022-48695] = "fixed-version: Fixed from version 6.0" | ||
| 1674 | |||
| 1675 | CVE_STATUS[CVE-2022-48696] = "fixed-version: Fixed from version 6.0" | ||
| 1676 | |||
| 1677 | CVE_STATUS[CVE-2022-48697] = "fixed-version: Fixed from version 6.0" | ||
| 1678 | |||
| 1679 | CVE_STATUS[CVE-2022-48698] = "fixed-version: Fixed from version 6.0" | ||
| 1680 | |||
| 1681 | CVE_STATUS[CVE-2022-48699] = "fixed-version: Fixed from version 6.0" | ||
| 1682 | |||
| 1683 | CVE_STATUS[CVE-2022-48701] = "fixed-version: Fixed from version 6.0" | ||
| 1684 | |||
| 1685 | CVE_STATUS[CVE-2022-48702] = "fixed-version: Fixed from version 6.0" | ||
| 1686 | |||
| 1687 | CVE_STATUS[CVE-2022-48703] = "fixed-version: Fixed from version 6.0" | ||
| 1688 | |||
| 1689 | CVE_STATUS[CVE-2022-48704] = "fixed-version: Fixed from version 6.0" | ||
| 1690 | |||
| 1691 | CVE_STATUS[CVE-2022-48705] = "fixed-version: Fixed from version 6.0" | ||
| 1692 | |||
| 1693 | CVE_STATUS[CVE-2022-48706] = "fixed-version: Fixed from version 6.2" | ||
| 1694 | |||
| 1695 | CVE_STATUS[CVE-2022-48707] = "fixed-version: Fixed from version 6.2" | ||
| 1696 | |||
| 1697 | CVE_STATUS[CVE-2022-48708] = "fixed-version: Fixed from version 6.2" | ||
| 1698 | |||
| 1699 | CVE_STATUS[CVE-2022-48709] = "fixed-version: Fixed from version 6.2" | ||
| 1700 | |||
| 1701 | CVE_STATUS[CVE-2022-48710] = "fixed-version: Fixed from version 5.19" | ||
| 1702 | |||
| 1703 | CVE_STATUS[CVE-2022-48711] = "fixed-version: Fixed from version 5.17" | ||
| 1704 | |||
| 1705 | CVE_STATUS[CVE-2022-48712] = "fixed-version: Fixed from version 5.17" | ||
| 1706 | |||
| 1707 | CVE_STATUS[CVE-2022-48713] = "fixed-version: Fixed from version 5.17" | ||
| 1708 | |||
| 1709 | CVE_STATUS[CVE-2022-48714] = "fixed-version: Fixed from version 5.17" | ||
| 1710 | |||
| 1711 | CVE_STATUS[CVE-2022-48715] = "fixed-version: Fixed from version 5.17" | ||
| 1712 | |||
| 1713 | CVE_STATUS[CVE-2022-48716] = "fixed-version: Fixed from version 5.17" | ||
| 1714 | |||
| 1715 | CVE_STATUS[CVE-2022-48717] = "fixed-version: Fixed from version 5.17" | ||
| 1716 | |||
| 1717 | CVE_STATUS[CVE-2022-48718] = "fixed-version: Fixed from version 5.17" | ||
| 1718 | |||
| 1719 | CVE_STATUS[CVE-2022-48719] = "fixed-version: Fixed from version 5.17" | ||
| 1720 | |||
| 1721 | CVE_STATUS[CVE-2022-48720] = "fixed-version: Fixed from version 5.17" | ||
| 1722 | |||
| 1723 | CVE_STATUS[CVE-2022-48721] = "fixed-version: Fixed from version 5.17" | ||
| 1724 | |||
| 1725 | CVE_STATUS[CVE-2022-48722] = "fixed-version: Fixed from version 5.17" | ||
| 1726 | |||
| 1727 | CVE_STATUS[CVE-2022-48723] = "fixed-version: Fixed from version 5.17" | ||
| 1728 | |||
| 1729 | CVE_STATUS[CVE-2022-48724] = "fixed-version: Fixed from version 5.17" | ||
| 1730 | |||
| 1731 | CVE_STATUS[CVE-2022-48725] = "fixed-version: Fixed from version 5.17" | ||
| 1732 | |||
| 1733 | CVE_STATUS[CVE-2022-48726] = "fixed-version: Fixed from version 5.17" | ||
| 1734 | |||
| 1735 | CVE_STATUS[CVE-2022-48727] = "fixed-version: Fixed from version 5.17" | ||
| 1736 | |||
| 1737 | CVE_STATUS[CVE-2022-48728] = "fixed-version: Fixed from version 5.17" | ||
| 1738 | |||
| 1739 | CVE_STATUS[CVE-2022-48729] = "fixed-version: Fixed from version 5.17" | ||
| 1740 | |||
| 1741 | CVE_STATUS[CVE-2022-48730] = "fixed-version: Fixed from version 5.17" | ||
| 1742 | |||
| 1743 | CVE_STATUS[CVE-2022-48731] = "fixed-version: Fixed from version 5.17" | ||
| 1744 | |||
| 1745 | CVE_STATUS[CVE-2022-48732] = "fixed-version: Fixed from version 5.17" | ||
| 1746 | |||
| 1747 | CVE_STATUS[CVE-2022-48733] = "fixed-version: Fixed from version 5.17" | ||
| 1748 | |||
| 1749 | CVE_STATUS[CVE-2022-48734] = "fixed-version: Fixed from version 5.17" | ||
| 1750 | |||
| 1751 | CVE_STATUS[CVE-2022-48735] = "fixed-version: Fixed from version 5.17" | ||
| 1752 | |||
| 1753 | CVE_STATUS[CVE-2022-48738] = "fixed-version: Fixed from version 5.17" | ||
| 1754 | |||
| 1755 | CVE_STATUS[CVE-2022-48739] = "fixed-version: Fixed from version 5.17" | ||
| 1756 | |||
| 1757 | CVE_STATUS[CVE-2022-48740] = "fixed-version: Fixed from version 5.17" | ||
| 1758 | |||
| 1759 | CVE_STATUS[CVE-2022-48741] = "fixed-version: Fixed from version 5.17" | ||
| 1760 | |||
| 1761 | CVE_STATUS[CVE-2022-48742] = "fixed-version: Fixed from version 5.17" | ||
| 1762 | |||
| 1763 | CVE_STATUS[CVE-2022-48743] = "fixed-version: Fixed from version 5.17" | ||
| 1764 | |||
| 1765 | CVE_STATUS[CVE-2022-48744] = "fixed-version: Fixed from version 5.17" | ||
| 1766 | |||
| 1767 | CVE_STATUS[CVE-2022-48745] = "fixed-version: Fixed from version 5.17" | ||
| 1768 | |||
| 1769 | CVE_STATUS[CVE-2022-48746] = "fixed-version: Fixed from version 5.17" | ||
| 1770 | |||
| 1771 | CVE_STATUS[CVE-2022-48747] = "fixed-version: Fixed from version 5.17" | ||
| 1772 | |||
| 1773 | CVE_STATUS[CVE-2022-48748] = "fixed-version: Fixed from version 5.17" | ||
| 1774 | |||
| 1775 | CVE_STATUS[CVE-2022-48749] = "fixed-version: Fixed from version 5.17" | ||
| 1776 | |||
| 1777 | CVE_STATUS[CVE-2022-48750] = "fixed-version: Fixed from version 5.17" | ||
| 1778 | |||
| 1779 | CVE_STATUS[CVE-2022-48751] = "fixed-version: Fixed from version 5.17" | ||
| 1780 | |||
| 1781 | CVE_STATUS[CVE-2022-48752] = "fixed-version: Fixed from version 5.16.5" | ||
| 1782 | |||
| 1783 | CVE_STATUS[CVE-2022-48753] = "fixed-version: Fixed from version 5.17" | ||
| 1784 | |||
| 1785 | CVE_STATUS[CVE-2022-48754] = "fixed-version: Fixed from version 5.17" | ||
| 1786 | |||
| 1787 | CVE_STATUS[CVE-2022-48755] = "fixed-version: Fixed from version 5.17" | ||
| 1788 | |||
| 1789 | CVE_STATUS[CVE-2022-48756] = "fixed-version: Fixed from version 5.17" | ||
| 1790 | |||
| 1791 | CVE_STATUS[CVE-2022-48757] = "fixed-version: Fixed from version 5.17" | ||
| 1792 | |||
| 1793 | CVE_STATUS[CVE-2022-48758] = "fixed-version: Fixed from version 5.17" | ||
| 1794 | |||
| 1795 | CVE_STATUS[CVE-2022-48759] = "fixed-version: Fixed from version 5.17" | ||
| 1796 | |||
| 1797 | CVE_STATUS[CVE-2022-48760] = "fixed-version: Fixed from version 5.17" | ||
| 1798 | |||
| 1799 | CVE_STATUS[CVE-2022-48761] = "fixed-version: Fixed from version 5.17" | ||
| 1800 | |||
| 1801 | CVE_STATUS[CVE-2022-48762] = "fixed-version: Fixed from version 5.17" | ||
| 1802 | |||
| 1803 | CVE_STATUS[CVE-2022-48763] = "fixed-version: Fixed from version 5.17" | ||
| 1804 | |||
| 1805 | CVE_STATUS[CVE-2022-48764] = "fixed-version: Fixed from version 5.16.5" | ||
| 1806 | |||
| 1807 | CVE_STATUS[CVE-2022-48765] = "fixed-version: Fixed from version 5.17" | ||
| 1808 | |||
| 1809 | CVE_STATUS[CVE-2022-48766] = "fixed-version: Fixed from version 5.17" | ||
| 1810 | |||
| 1811 | CVE_STATUS[CVE-2022-48767] = "fixed-version: Fixed from version 5.17" | ||
| 1812 | |||
| 1813 | CVE_STATUS[CVE-2022-48768] = "fixed-version: Fixed from version 5.17" | ||
| 1814 | |||
| 1815 | CVE_STATUS[CVE-2022-48769] = "fixed-version: Fixed from version 5.17" | ||
| 1816 | |||
| 1817 | CVE_STATUS[CVE-2022-48770] = "fixed-version: Fixed from version 5.17" | ||
| 1818 | |||
| 1819 | CVE_STATUS[CVE-2022-48771] = "fixed-version: Fixed from version 5.17" | ||
| 1820 | |||
| 1821 | CVE_STATUS[CVE-2022-48772] = "fixed-version: Fixed from version 6.10" | ||
| 1822 | |||
| 1823 | CVE_STATUS[CVE-2022-48773] = "fixed-version: Fixed from version 5.17" | ||
| 1824 | |||
| 1825 | CVE_STATUS[CVE-2022-48774] = "fixed-version: Fixed from version 5.17" | ||
| 1826 | |||
| 1827 | CVE_STATUS[CVE-2022-48775] = "fixed-version: Fixed from version 5.17" | ||
| 1828 | |||
| 1829 | CVE_STATUS[CVE-2022-48776] = "fixed-version: Fixed from version 5.17" | ||
| 1830 | |||
| 1831 | CVE_STATUS[CVE-2022-48777] = "fixed-version: Fixed from version 5.17" | ||
| 1832 | |||
| 1833 | CVE_STATUS[CVE-2022-48778] = "fixed-version: Fixed from version 5.16.11" | ||
| 1834 | |||
| 1835 | CVE_STATUS[CVE-2022-48779] = "fixed-version: Fixed from version 5.17" | ||
| 1836 | |||
| 1837 | CVE_STATUS[CVE-2022-48780] = "fixed-version: Fixed from version 5.16.11" | ||
| 1838 | |||
| 1839 | CVE_STATUS[CVE-2022-48781] = "fixed-version: Fixed from version 5.17" | ||
| 1840 | |||
| 1841 | CVE_STATUS[CVE-2022-48782] = "fixed-version: Fixed from version 5.17" | ||
| 1842 | |||
| 1843 | CVE_STATUS[CVE-2022-48783] = "fixed-version: Fixed from version 5.16.11" | ||
| 1844 | |||
| 1845 | CVE_STATUS[CVE-2022-48784] = "fixed-version: Fixed from version 5.17" | ||
| 1846 | |||
| 1847 | CVE_STATUS[CVE-2022-48785] = "fixed-version: Fixed from version 5.17" | ||
| 1848 | |||
| 1849 | CVE_STATUS[CVE-2022-48786] = "fixed-version: Fixed from version 5.17" | ||
| 1850 | |||
| 1851 | CVE_STATUS[CVE-2022-48787] = "fixed-version: Fixed from version 5.16.11" | ||
| 1852 | |||
| 1853 | CVE_STATUS[CVE-2022-48788] = "fixed-version: Fixed from version 5.17" | ||
| 1854 | |||
| 1855 | CVE_STATUS[CVE-2022-48789] = "fixed-version: Fixed from version 5.17" | ||
| 1856 | |||
| 1857 | CVE_STATUS[CVE-2022-48790] = "fixed-version: Fixed from version 5.17" | ||
| 1858 | |||
| 1859 | CVE_STATUS[CVE-2022-48791] = "fixed-version: Fixed from version 5.17" | ||
| 1860 | |||
| 1861 | CVE_STATUS[CVE-2022-48792] = "fixed-version: Fixed from version 5.17" | ||
| 1862 | |||
| 1863 | CVE_STATUS[CVE-2022-48793] = "fixed-version: Fixed from version 5.17" | ||
| 1864 | |||
| 1865 | CVE_STATUS[CVE-2022-48794] = "fixed-version: Fixed from version 5.17" | ||
| 1866 | |||
| 1867 | CVE_STATUS[CVE-2022-48795] = "fixed-version: Fixed from version 5.17" | ||
| 1868 | |||
| 1869 | CVE_STATUS[CVE-2022-48796] = "fixed-version: Fixed from version 5.17" | ||
| 1870 | |||
| 1871 | CVE_STATUS[CVE-2022-48797] = "fixed-version: Fixed from version 5.17" | ||
| 1872 | |||
| 1873 | CVE_STATUS[CVE-2022-48798] = "fixed-version: Fixed from version 5.17" | ||
| 1874 | |||
| 1875 | CVE_STATUS[CVE-2022-48799] = "fixed-version: Fixed from version 5.17" | ||
| 1876 | |||
| 1877 | CVE_STATUS[CVE-2022-48800] = "fixed-version: Fixed from version 5.17" | ||
| 1878 | |||
| 1879 | CVE_STATUS[CVE-2022-48801] = "fixed-version: Fixed from version 5.17" | ||
| 1880 | |||
| 1881 | CVE_STATUS[CVE-2022-48802] = "fixed-version: Fixed from version 5.17" | ||
| 1882 | |||
| 1883 | CVE_STATUS[CVE-2022-48803] = "fixed-version: Fixed from version 5.17" | ||
| 1884 | |||
| 1885 | CVE_STATUS[CVE-2022-48804] = "fixed-version: Fixed from version 5.17" | ||
| 1886 | |||
| 1887 | CVE_STATUS[CVE-2022-48805] = "fixed-version: Fixed from version 5.17" | ||
| 1888 | |||
| 1889 | CVE_STATUS[CVE-2022-48806] = "fixed-version: Fixed from version 5.16.10" | ||
| 1890 | |||
| 1891 | CVE_STATUS[CVE-2022-48807] = "fixed-version: Fixed from version 5.17" | ||
| 1892 | |||
| 1893 | CVE_STATUS[CVE-2022-48808] = "fixed-version: Fixed from version 5.17" | ||
| 1894 | |||
| 1895 | CVE_STATUS[CVE-2022-48809] = "fixed-version: Fixed from version 5.17" | ||
| 1896 | |||
| 1897 | CVE_STATUS[CVE-2022-48810] = "fixed-version: Fixed from version 5.17" | ||
| 1898 | |||
| 1899 | CVE_STATUS[CVE-2022-48811] = "fixed-version: Fixed from version 5.17" | ||
| 1900 | |||
| 1901 | CVE_STATUS[CVE-2022-48812] = "fixed-version: Fixed from version 5.17" | ||
| 1902 | |||
| 1903 | CVE_STATUS[CVE-2022-48813] = "fixed-version: Fixed from version 5.17" | ||
| 1904 | |||
| 1905 | CVE_STATUS[CVE-2022-48814] = "fixed-version: Fixed from version 5.17" | ||
| 1906 | |||
| 1907 | CVE_STATUS[CVE-2022-48815] = "fixed-version: Fixed from version 5.17" | ||
| 1908 | |||
| 1909 | CVE_STATUS[CVE-2022-48816] = "fixed-version: Fixed from version 5.17" | ||
| 1910 | |||
| 1911 | CVE_STATUS[CVE-2022-48817] = "fixed-version: Fixed from version 5.17" | ||
| 1912 | |||
| 1913 | CVE_STATUS[CVE-2022-48818] = "fixed-version: Fixed from version 5.17" | ||
| 1914 | |||
| 1915 | CVE_STATUS[CVE-2022-48819] = "fixed-version: Fixed from version 5.17" | ||
| 1916 | |||
| 1917 | CVE_STATUS[CVE-2022-48820] = "fixed-version: Fixed from version 5.17" | ||
| 1918 | |||
| 1919 | CVE_STATUS[CVE-2022-48821] = "fixed-version: Fixed from version 5.17" | ||
| 1920 | |||
| 1921 | CVE_STATUS[CVE-2022-48822] = "fixed-version: Fixed from version 5.17" | ||
| 1922 | |||
| 1923 | CVE_STATUS[CVE-2022-48823] = "fixed-version: Fixed from version 5.17" | ||
| 1924 | |||
| 1925 | CVE_STATUS[CVE-2022-48824] = "fixed-version: Fixed from version 5.17" | ||
| 1926 | |||
| 1927 | CVE_STATUS[CVE-2022-48825] = "fixed-version: Fixed from version 5.17" | ||
| 1928 | |||
| 1929 | CVE_STATUS[CVE-2022-48826] = "fixed-version: Fixed from version 5.17" | ||
| 1930 | |||
| 1931 | CVE_STATUS[CVE-2022-48827] = "fixed-version: Fixed from version 5.17" | ||
| 1932 | |||
| 1933 | CVE_STATUS[CVE-2022-48828] = "fixed-version: Fixed from version 5.17" | ||
| 1934 | |||
| 1935 | CVE_STATUS[CVE-2022-48829] = "fixed-version: Fixed from version 5.17" | ||
| 1936 | |||
| 1937 | CVE_STATUS[CVE-2022-48830] = "fixed-version: Fixed from version 5.17" | ||
| 1938 | |||
| 1939 | CVE_STATUS[CVE-2022-48831] = "fixed-version: Fixed from version 5.17" | ||
| 1940 | |||
| 1941 | CVE_STATUS[CVE-2022-48832] = "fixed-version: Fixed from version 5.17" | ||
| 1942 | |||
| 1943 | CVE_STATUS[CVE-2022-48833] = "fixed-version: Fixed from version 5.17" | ||
| 1944 | |||
| 1945 | CVE_STATUS[CVE-2022-48834] = "fixed-version: Fixed from version 5.17" | ||
| 1946 | |||
| 1947 | CVE_STATUS[CVE-2022-48835] = "fixed-version: Fixed from version 5.17" | ||
| 1948 | |||
| 1949 | CVE_STATUS[CVE-2022-48836] = "fixed-version: Fixed from version 5.17" | ||
| 1950 | |||
| 1951 | CVE_STATUS[CVE-2022-48837] = "fixed-version: Fixed from version 5.16.17" | ||
| 1952 | |||
| 1953 | CVE_STATUS[CVE-2022-48838] = "fixed-version: Fixed from version 5.17" | ||
| 1954 | |||
| 1955 | CVE_STATUS[CVE-2022-48839] = "fixed-version: Fixed from version 5.17" | ||
| 1956 | |||
| 1957 | CVE_STATUS[CVE-2022-48840] = "fixed-version: Fixed from version 5.16.17" | ||
| 1958 | |||
| 1959 | CVE_STATUS[CVE-2022-48841] = "fixed-version: Fixed from version 5.17" | ||
| 1960 | |||
| 1961 | CVE_STATUS[CVE-2022-48842] = "fixed-version: Fixed from version 5.16.16" | ||
| 1962 | |||
| 1963 | CVE_STATUS[CVE-2022-48843] = "fixed-version: Fixed from version 5.17" | ||
| 1964 | |||
| 1965 | CVE_STATUS[CVE-2022-48844] = "fixed-version: Fixed from version 5.17" | ||
| 1966 | |||
| 1967 | CVE_STATUS[CVE-2022-48845] = "fixed-version: Fixed from version 5.17" | ||
| 1968 | |||
| 1969 | CVE_STATUS[CVE-2022-48846] = "fixed-version: Fixed from version 5.17" | ||
| 1970 | |||
| 1971 | CVE_STATUS[CVE-2022-48847] = "fixed-version: Fixed from version 5.17" | ||
| 1972 | |||
| 1973 | CVE_STATUS[CVE-2022-48848] = "fixed-version: Fixed from version 5.17" | ||
| 1974 | |||
| 1975 | CVE_STATUS[CVE-2022-48849] = "fixed-version: Fixed from version 5.17" | ||
| 1976 | |||
| 1977 | CVE_STATUS[CVE-2022-48850] = "fixed-version: Fixed from version 5.17" | ||
| 1978 | |||
| 1979 | CVE_STATUS[CVE-2022-48851] = "fixed-version: Fixed from version 5.17" | ||
| 1980 | |||
| 1981 | CVE_STATUS[CVE-2022-48852] = "fixed-version: Fixed from version 5.17" | ||
| 1982 | |||
| 1983 | CVE_STATUS[CVE-2022-48853] = "fixed-version: Fixed from version 5.17" | ||
| 1984 | |||
| 1985 | CVE_STATUS[CVE-2022-48854] = "fixed-version: Fixed from version 5.17" | ||
| 1986 | |||
| 1987 | CVE_STATUS[CVE-2022-48855] = "fixed-version: Fixed from version 5.17" | ||
| 1988 | |||
| 1989 | CVE_STATUS[CVE-2022-48856] = "fixed-version: Fixed from version 5.17" | ||
| 1990 | |||
| 1991 | CVE_STATUS[CVE-2022-48857] = "fixed-version: Fixed from version 5.17" | ||
| 1992 | |||
| 1993 | CVE_STATUS[CVE-2022-48858] = "fixed-version: Fixed from version 5.17" | ||
| 1994 | |||
| 1995 | CVE_STATUS[CVE-2022-48859] = "fixed-version: Fixed from version 5.17" | ||
| 1996 | |||
| 1997 | CVE_STATUS[CVE-2022-48860] = "fixed-version: Fixed from version 5.17" | ||
| 1998 | |||
| 1999 | CVE_STATUS[CVE-2022-48861] = "fixed-version: Fixed from version 5.17" | ||
| 2000 | |||
| 2001 | CVE_STATUS[CVE-2022-48862] = "fixed-version: Fixed from version 5.17" | ||
| 2002 | |||
| 2003 | CVE_STATUS[CVE-2022-48863] = "fixed-version: Fixed from version 5.17" | ||
| 2004 | |||
| 2005 | CVE_STATUS[CVE-2022-48864] = "fixed-version: Fixed from version 5.17" | ||
| 2006 | |||
| 2007 | CVE_STATUS[CVE-2022-48865] = "fixed-version: Fixed from version 5.17" | ||
| 2008 | |||
| 2009 | CVE_STATUS[CVE-2022-48866] = "fixed-version: Fixed from version 5.17" | ||
| 2010 | |||
| 2011 | CVE_STATUS[CVE-2022-48867] = "fixed-version: Fixed from version 6.2" | ||
| 2012 | |||
| 2013 | CVE_STATUS[CVE-2022-48868] = "fixed-version: Fixed from version 6.2" | ||
| 2014 | |||
| 2015 | CVE_STATUS[CVE-2022-48869] = "fixed-version: Fixed from version 6.2" | ||
| 2016 | |||
| 2017 | CVE_STATUS[CVE-2022-48870] = "fixed-version: Fixed from version 6.2" | ||
| 2018 | |||
| 2019 | CVE_STATUS[CVE-2022-48871] = "fixed-version: Fixed from version 6.2" | ||
| 2020 | |||
| 2021 | CVE_STATUS[CVE-2022-48872] = "fixed-version: Fixed from version 6.2" | ||
| 2022 | |||
| 2023 | CVE_STATUS[CVE-2022-48873] = "fixed-version: Fixed from version 6.2" | ||
| 2024 | |||
| 2025 | CVE_STATUS[CVE-2022-48874] = "fixed-version: Fixed from version 6.2" | ||
| 2026 | |||
| 2027 | CVE_STATUS[CVE-2022-48875] = "fixed-version: Fixed from version 6.2" | ||
| 2028 | |||
| 2029 | CVE_STATUS[CVE-2022-48876] = "fixed-version: Fixed from version 6.2" | ||
| 2030 | |||
| 2031 | CVE_STATUS[CVE-2022-48877] = "fixed-version: Fixed from version 6.2" | ||
| 2032 | |||
| 2033 | CVE_STATUS[CVE-2022-48878] = "fixed-version: Fixed from version 6.2" | ||
| 2034 | |||
| 2035 | CVE_STATUS[CVE-2022-48879] = "fixed-version: Fixed from version 6.2" | ||
| 2036 | |||
| 2037 | CVE_STATUS[CVE-2022-48880] = "fixed-version: Fixed from version 6.2" | ||
| 2038 | |||
| 2039 | CVE_STATUS[CVE-2022-48881] = "fixed-version: Fixed from version 6.2" | ||
| 2040 | |||
| 2041 | CVE_STATUS[CVE-2022-48882] = "fixed-version: Fixed from version 6.2" | ||
| 2042 | |||
| 2043 | CVE_STATUS[CVE-2022-48883] = "fixed-version: Fixed from version 6.2" | ||
| 2044 | |||
| 2045 | CVE_STATUS[CVE-2022-48884] = "fixed-version: Fixed from version 6.2" | ||
| 2046 | |||
| 2047 | CVE_STATUS[CVE-2022-48885] = "fixed-version: Fixed from version 6.2" | ||
| 2048 | |||
| 2049 | CVE_STATUS[CVE-2022-48886] = "fixed-version: Fixed from version 6.2" | ||
| 2050 | |||
| 2051 | CVE_STATUS[CVE-2022-48887] = "fixed-version: Fixed from version 6.2" | ||
| 2052 | |||
| 2053 | CVE_STATUS[CVE-2022-48888] = "fixed-version: Fixed from version 6.2" | ||
| 2054 | |||
| 2055 | CVE_STATUS[CVE-2022-48889] = "fixed-version: Fixed from version 6.2" | ||
| 2056 | |||
| 2057 | CVE_STATUS[CVE-2022-48890] = "fixed-version: Fixed from version 6.2" | ||
| 2058 | |||
| 2059 | CVE_STATUS[CVE-2022-48891] = "fixed-version: Fixed from version 6.2" | ||
| 2060 | |||
| 2061 | CVE_STATUS[CVE-2022-48892] = "fixed-version: Fixed from version 6.2" | ||
| 2062 | |||
| 2063 | CVE_STATUS[CVE-2022-48893] = "fixed-version: Fixed from version 6.2" | ||
| 2064 | |||
| 2065 | CVE_STATUS[CVE-2022-48894] = "fixed-version: Fixed from version 6.2" | ||
| 2066 | |||
| 2067 | CVE_STATUS[CVE-2022-48895] = "fixed-version: Fixed from version 6.2" | ||
| 2068 | |||
| 2069 | CVE_STATUS[CVE-2022-48896] = "fixed-version: Fixed from version 6.2" | ||
| 2070 | |||
| 2071 | CVE_STATUS[CVE-2022-48897] = "fixed-version: Fixed from version 6.2" | ||
| 2072 | |||
| 2073 | CVE_STATUS[CVE-2022-48898] = "fixed-version: Fixed from version 6.2" | ||
| 2074 | |||
| 2075 | CVE_STATUS[CVE-2022-48899] = "fixed-version: Fixed from version 6.2" | ||
| 2076 | |||
| 2077 | CVE_STATUS[CVE-2022-48901] = "fixed-version: Fixed from version 5.17" | ||
| 2078 | |||
| 2079 | CVE_STATUS[CVE-2022-48902] = "fixed-version: Fixed from version 5.17" | ||
| 2080 | |||
| 2081 | CVE_STATUS[CVE-2022-48903] = "fixed-version: Fixed from version 5.17" | ||
| 2082 | |||
| 2083 | CVE_STATUS[CVE-2022-48904] = "fixed-version: Fixed from version 5.17" | ||
| 2084 | |||
| 2085 | CVE_STATUS[CVE-2022-48905] = "fixed-version: Fixed from version 5.17" | ||
| 2086 | |||
| 2087 | CVE_STATUS[CVE-2022-48906] = "fixed-version: Fixed from version 5.17" | ||
| 2088 | |||
| 2089 | CVE_STATUS[CVE-2022-48907] = "fixed-version: Fixed from version 5.17" | ||
| 2090 | |||
| 2091 | CVE_STATUS[CVE-2022-48908] = "fixed-version: Fixed from version 5.17" | ||
| 2092 | |||
| 2093 | CVE_STATUS[CVE-2022-48909] = "fixed-version: Fixed from version 5.17" | ||
| 2094 | |||
| 2095 | CVE_STATUS[CVE-2022-48910] = "fixed-version: Fixed from version 5.17" | ||
| 2096 | |||
| 2097 | CVE_STATUS[CVE-2022-48911] = "fixed-version: Fixed from version 5.17" | ||
| 2098 | |||
| 2099 | CVE_STATUS[CVE-2022-48912] = "fixed-version: Fixed from version 5.17" | ||
| 2100 | |||
| 2101 | CVE_STATUS[CVE-2022-48913] = "fixed-version: Fixed from version 5.17" | ||
| 2102 | |||
| 2103 | CVE_STATUS[CVE-2022-48914] = "fixed-version: Fixed from version 5.16.13" | ||
| 2104 | |||
| 2105 | CVE_STATUS[CVE-2022-48915] = "fixed-version: Fixed from version 5.17" | ||
| 2106 | |||
| 2107 | CVE_STATUS[CVE-2022-48916] = "fixed-version: Fixed from version 5.17" | ||
| 2108 | |||
| 2109 | CVE_STATUS[CVE-2022-48918] = "fixed-version: Fixed from version 5.17" | ||
| 2110 | |||
| 2111 | CVE_STATUS[CVE-2022-48919] = "fixed-version: Fixed from version 5.17" | ||
| 2112 | |||
| 2113 | CVE_STATUS[CVE-2022-48920] = "fixed-version: Fixed from version 5.17" | ||
| 2114 | |||
| 2115 | CVE_STATUS[CVE-2022-48921] = "fixed-version: Fixed from version 5.17" | ||
| 2116 | |||
| 2117 | CVE_STATUS[CVE-2022-48922] = "fixed-version: Fixed from version 5.17" | ||
| 2118 | |||
| 2119 | CVE_STATUS[CVE-2022-48923] = "fixed-version: Fixed from version 5.17" | ||
| 2120 | |||
| 2121 | CVE_STATUS[CVE-2022-48924] = "fixed-version: Fixed from version 5.17" | ||
| 2122 | |||
| 2123 | CVE_STATUS[CVE-2022-48925] = "fixed-version: Fixed from version 5.17" | ||
| 2124 | |||
| 2125 | CVE_STATUS[CVE-2022-48926] = "fixed-version: Fixed from version 5.17" | ||
| 2126 | |||
| 2127 | CVE_STATUS[CVE-2022-48927] = "fixed-version: Fixed from version 5.17" | ||
| 2128 | |||
| 2129 | CVE_STATUS[CVE-2022-48928] = "fixed-version: Fixed from version 5.17" | ||
| 2130 | |||
| 2131 | CVE_STATUS[CVE-2022-48929] = "fixed-version: Fixed from version 5.16.12" | ||
| 2132 | |||
| 2133 | CVE_STATUS[CVE-2022-48930] = "fixed-version: Fixed from version 5.17" | ||
| 2134 | |||
| 2135 | CVE_STATUS[CVE-2022-48931] = "fixed-version: Fixed from version 5.17" | ||
| 2136 | |||
| 2137 | CVE_STATUS[CVE-2022-48932] = "fixed-version: Fixed from version 5.17" | ||
| 2138 | |||
| 2139 | CVE_STATUS[CVE-2022-48933] = "fixed-version: Fixed from version 5.17" | ||
| 2140 | |||
| 2141 | CVE_STATUS[CVE-2022-48934] = "fixed-version: Fixed from version 5.17" | ||
| 2142 | |||
| 2143 | CVE_STATUS[CVE-2022-48935] = "fixed-version: Fixed from version 5.17" | ||
| 2144 | |||
| 2145 | CVE_STATUS[CVE-2022-48937] = "fixed-version: Fixed from version 5.17" | ||
| 2146 | |||
| 2147 | CVE_STATUS[CVE-2022-48938] = "fixed-version: Fixed from version 5.17" | ||
| 2148 | |||
| 2149 | CVE_STATUS[CVE-2022-48939] = "fixed-version: Fixed from version 5.17" | ||
| 2150 | |||
| 2151 | CVE_STATUS[CVE-2022-48940] = "fixed-version: Fixed from version 5.17" | ||
| 2152 | |||
| 2153 | CVE_STATUS[CVE-2022-48941] = "fixed-version: Fixed from version 5.17" | ||
| 2154 | |||
| 2155 | CVE_STATUS[CVE-2022-48942] = "fixed-version: Fixed from version 5.17" | ||
| 2156 | |||
| 2157 | CVE_STATUS[CVE-2022-48943] = "fixed-version: Fixed from version 5.17" | ||
| 2158 | |||
| 2159 | CVE_STATUS[CVE-2022-48944] = "fixed-version: Fixed from version 5.17" | ||
| 2160 | |||
| 2161 | CVE_STATUS[CVE-2022-48945] = "fixed-version: Fixed from version 6.2" | ||
| 2162 | |||
| 2163 | CVE_STATUS[CVE-2022-48946] = "fixed-version: Fixed from version 6.2" | ||
| 2164 | |||
| 2165 | CVE_STATUS[CVE-2022-48947] = "fixed-version: Fixed from version 6.1" | ||
| 2166 | |||
| 2167 | CVE_STATUS[CVE-2022-48948] = "fixed-version: Fixed from version 6.2" | ||
| 2168 | |||
| 2169 | CVE_STATUS[CVE-2022-48949] = "fixed-version: Fixed from version 6.2" | ||
| 2170 | |||
| 2171 | CVE_STATUS[CVE-2022-48950] = "fixed-version: Fixed from version 6.1" | ||
| 2172 | |||
| 2173 | CVE_STATUS[CVE-2022-48951] = "fixed-version: Fixed from version 6.1" | ||
| 2174 | |||
| 2175 | CVE_STATUS[CVE-2022-48952] = "fixed-version: Fixed from version 6.2" | ||
| 2176 | |||
| 2177 | CVE_STATUS[CVE-2022-48953] = "fixed-version: Fixed from version 6.1" | ||
| 2178 | |||
| 2179 | CVE_STATUS[CVE-2022-48954] = "fixed-version: Fixed from version 6.1" | ||
| 2180 | |||
| 2181 | CVE_STATUS[CVE-2022-48955] = "fixed-version: Fixed from version 6.1" | ||
| 2182 | |||
| 2183 | CVE_STATUS[CVE-2022-48956] = "fixed-version: Fixed from version 6.1" | ||
| 2184 | |||
| 2185 | CVE_STATUS[CVE-2022-48957] = "fixed-version: Fixed from version 6.1" | ||
| 2186 | |||
| 2187 | CVE_STATUS[CVE-2022-48958] = "fixed-version: Fixed from version 6.1" | ||
| 2188 | |||
| 2189 | CVE_STATUS[CVE-2022-48959] = "fixed-version: Fixed from version 6.1" | ||
| 2190 | |||
| 2191 | CVE_STATUS[CVE-2022-48960] = "fixed-version: Fixed from version 6.1" | ||
| 2192 | |||
| 2193 | CVE_STATUS[CVE-2022-48961] = "fixed-version: Fixed from version 6.1" | ||
| 2194 | |||
| 2195 | CVE_STATUS[CVE-2022-48962] = "fixed-version: Fixed from version 6.1" | ||
| 2196 | |||
| 2197 | CVE_STATUS[CVE-2022-48963] = "fixed-version: Fixed from version 6.1" | ||
| 2198 | |||
| 2199 | CVE_STATUS[CVE-2022-48964] = "fixed-version: Fixed from version 6.1" | ||
| 2200 | |||
| 2201 | CVE_STATUS[CVE-2022-48965] = "fixed-version: Fixed from version 6.1" | ||
| 2202 | |||
| 2203 | CVE_STATUS[CVE-2022-48966] = "fixed-version: Fixed from version 6.1" | ||
| 2204 | |||
| 2205 | CVE_STATUS[CVE-2022-48967] = "fixed-version: Fixed from version 6.1" | ||
| 2206 | |||
| 2207 | CVE_STATUS[CVE-2022-48968] = "fixed-version: Fixed from version 6.1" | ||
| 2208 | |||
| 2209 | CVE_STATUS[CVE-2022-48969] = "fixed-version: Fixed from version 6.1" | ||
| 2210 | |||
| 2211 | CVE_STATUS[CVE-2022-48970] = "fixed-version: Fixed from version 6.1" | ||
| 2212 | |||
| 2213 | CVE_STATUS[CVE-2022-48971] = "fixed-version: Fixed from version 6.1" | ||
| 2214 | |||
| 2215 | CVE_STATUS[CVE-2022-48972] = "fixed-version: Fixed from version 6.1" | ||
| 2216 | |||
| 2217 | CVE_STATUS[CVE-2022-48973] = "fixed-version: Fixed from version 6.1" | ||
| 2218 | |||
| 2219 | CVE_STATUS[CVE-2022-48974] = "fixed-version: Fixed from version 6.1" | ||
| 2220 | |||
| 2221 | CVE_STATUS[CVE-2022-48975] = "fixed-version: Fixed from version 6.1" | ||
| 2222 | |||
| 2223 | CVE_STATUS[CVE-2022-48976] = "fixed-version: Fixed from version 6.1" | ||
| 2224 | |||
| 2225 | CVE_STATUS[CVE-2022-48977] = "fixed-version: Fixed from version 6.1" | ||
| 2226 | |||
| 2227 | CVE_STATUS[CVE-2022-48978] = "fixed-version: Fixed from version 6.1" | ||
| 2228 | |||
| 2229 | CVE_STATUS[CVE-2022-48979] = "fixed-version: Fixed from version 6.1" | ||
| 2230 | |||
| 2231 | CVE_STATUS[CVE-2022-48980] = "fixed-version: Fixed from version 6.1" | ||
| 2232 | |||
| 2233 | CVE_STATUS[CVE-2022-48981] = "fixed-version: Fixed from version 6.1" | ||
| 2234 | |||
| 2235 | CVE_STATUS[CVE-2022-48982] = "fixed-version: Fixed from version 6.1" | ||
| 2236 | |||
| 2237 | CVE_STATUS[CVE-2022-48983] = "fixed-version: Fixed from version 6.1" | ||
| 2238 | |||
| 2239 | CVE_STATUS[CVE-2022-48984] = "fixed-version: Fixed from version 6.1" | ||
| 2240 | |||
| 2241 | CVE_STATUS[CVE-2022-48985] = "fixed-version: Fixed from version 6.1" | ||
| 2242 | |||
| 2243 | CVE_STATUS[CVE-2022-48986] = "fixed-version: Fixed from version 6.1" | ||
| 2244 | |||
| 2245 | CVE_STATUS[CVE-2022-48987] = "fixed-version: Fixed from version 6.0.13" | ||
| 2246 | |||
| 2247 | CVE_STATUS[CVE-2022-48988] = "fixed-version: Fixed from version 6.1" | ||
| 2248 | |||
| 2249 | CVE_STATUS[CVE-2022-48989] = "fixed-version: Fixed from version 6.1" | ||
| 2250 | |||
| 2251 | CVE_STATUS[CVE-2022-48990] = "fixed-version: Fixed from version 6.1" | ||
| 2252 | |||
| 2253 | CVE_STATUS[CVE-2022-48991] = "fixed-version: Fixed from version 6.1" | ||
| 2254 | |||
| 2255 | CVE_STATUS[CVE-2022-48992] = "fixed-version: Fixed from version 6.1" | ||
| 2256 | |||
| 2257 | CVE_STATUS[CVE-2022-48994] = "fixed-version: Fixed from version 6.1" | ||
| 2258 | |||
| 2259 | CVE_STATUS[CVE-2022-48995] = "fixed-version: Fixed from version 6.1" | ||
| 2260 | |||
| 2261 | CVE_STATUS[CVE-2022-48996] = "fixed-version: Fixed from version 6.1" | ||
| 2262 | |||
| 2263 | CVE_STATUS[CVE-2022-48997] = "fixed-version: Fixed from version 6.1" | ||
| 2264 | |||
| 2265 | CVE_STATUS[CVE-2022-48998] = "fixed-version: Fixed from version 6.1" | ||
| 2266 | |||
| 2267 | CVE_STATUS[CVE-2022-48999] = "fixed-version: Fixed from version 6.1" | ||
| 2268 | |||
| 2269 | CVE_STATUS[CVE-2022-49000] = "fixed-version: Fixed from version 6.1" | ||
| 2270 | |||
| 2271 | CVE_STATUS[CVE-2022-49001] = "fixed-version: Fixed from version 6.1" | ||
| 2272 | |||
| 2273 | CVE_STATUS[CVE-2022-49002] = "fixed-version: Fixed from version 6.1" | ||
| 2274 | |||
| 2275 | CVE_STATUS[CVE-2022-49003] = "fixed-version: Fixed from version 6.1" | ||
| 2276 | |||
| 2277 | CVE_STATUS[CVE-2022-49004] = "fixed-version: Fixed from version 6.1" | ||
| 2278 | |||
| 2279 | CVE_STATUS[CVE-2022-49005] = "fixed-version: Fixed from version 6.1" | ||
| 2280 | |||
| 2281 | CVE_STATUS[CVE-2022-49006] = "fixed-version: Fixed from version 6.1" | ||
| 2282 | |||
| 2283 | CVE_STATUS[CVE-2022-49007] = "fixed-version: Fixed from version 6.1" | ||
| 2284 | |||
| 2285 | CVE_STATUS[CVE-2022-49008] = "fixed-version: Fixed from version 6.1" | ||
| 2286 | |||
| 2287 | CVE_STATUS[CVE-2022-49009] = "fixed-version: Fixed from version 6.1" | ||
| 2288 | |||
| 2289 | CVE_STATUS[CVE-2022-49010] = "fixed-version: Fixed from version 6.1" | ||
| 2290 | |||
| 2291 | CVE_STATUS[CVE-2022-49011] = "fixed-version: Fixed from version 6.1" | ||
| 2292 | |||
| 2293 | CVE_STATUS[CVE-2022-49012] = "fixed-version: Fixed from version 6.1" | ||
| 2294 | |||
| 2295 | CVE_STATUS[CVE-2022-49013] = "fixed-version: Fixed from version 6.1" | ||
| 2296 | |||
| 2297 | CVE_STATUS[CVE-2022-49014] = "fixed-version: Fixed from version 6.1" | ||
| 2298 | |||
| 2299 | CVE_STATUS[CVE-2022-49015] = "fixed-version: Fixed from version 6.1" | ||
| 2300 | |||
| 2301 | CVE_STATUS[CVE-2022-49016] = "fixed-version: Fixed from version 6.1" | ||
| 2302 | |||
| 2303 | CVE_STATUS[CVE-2022-49017] = "fixed-version: Fixed from version 6.1" | ||
| 2304 | |||
| 2305 | CVE_STATUS[CVE-2022-49018] = "fixed-version: Fixed from version 6.1" | ||
| 2306 | |||
| 2307 | CVE_STATUS[CVE-2022-49019] = "fixed-version: Fixed from version 6.1" | ||
| 2308 | |||
| 2309 | CVE_STATUS[CVE-2022-49020] = "fixed-version: Fixed from version 6.1" | ||
| 2310 | |||
| 2311 | CVE_STATUS[CVE-2022-49021] = "fixed-version: Fixed from version 6.1" | ||
| 2312 | |||
| 2313 | CVE_STATUS[CVE-2022-49022] = "fixed-version: Fixed from version 6.1" | ||
| 2314 | |||
| 2315 | CVE_STATUS[CVE-2022-49023] = "fixed-version: Fixed from version 6.1" | ||
| 2316 | |||
| 2317 | CVE_STATUS[CVE-2022-49024] = "fixed-version: Fixed from version 6.1" | ||
| 2318 | |||
| 2319 | CVE_STATUS[CVE-2022-49025] = "fixed-version: Fixed from version 6.1" | ||
| 2320 | |||
| 2321 | CVE_STATUS[CVE-2022-49026] = "fixed-version: Fixed from version 6.1" | ||
| 2322 | |||
| 2323 | CVE_STATUS[CVE-2022-49027] = "fixed-version: Fixed from version 6.1" | ||
| 2324 | |||
| 2325 | CVE_STATUS[CVE-2022-49028] = "fixed-version: Fixed from version 6.1" | ||
| 2326 | |||
| 2327 | CVE_STATUS[CVE-2022-49029] = "fixed-version: Fixed from version 6.1" | ||
| 2328 | |||
| 2329 | CVE_STATUS[CVE-2022-49030] = "fixed-version: Fixed from version 6.1" | ||
| 2330 | |||
| 2331 | CVE_STATUS[CVE-2022-49031] = "fixed-version: Fixed from version 6.1" | ||
| 2332 | |||
| 2333 | CVE_STATUS[CVE-2022-49032] = "fixed-version: Fixed from version 6.1" | ||
| 2334 | |||
| 2335 | CVE_STATUS[CVE-2022-49033] = "fixed-version: Fixed from version 6.1" | ||
| 2336 | |||
| 2337 | CVE_STATUS[CVE-2022-49034] = "fixed-version: Fixed from version 6.13" | ||
| 2338 | |||
| 2339 | CVE_STATUS[CVE-2022-49035] = "fixed-version: Fixed from version 6.1" | ||
| 2340 | |||
| 2341 | CVE_STATUS[CVE-2022-49044] = "fixed-version: Fixed from version 5.18" | ||
| 2342 | |||
| 2343 | CVE_STATUS[CVE-2022-49046] = "fixed-version: Fixed from version 5.18" | ||
| 2344 | |||
| 2345 | CVE_STATUS[CVE-2022-49047] = "fixed-version: Fixed from version 5.18" | ||
| 2346 | |||
| 2347 | CVE_STATUS[CVE-2022-49048] = "fixed-version: Fixed from version 5.18" | ||
| 2348 | |||
| 2349 | CVE_STATUS[CVE-2022-49049] = "fixed-version: Fixed from version 5.18" | ||
| 2350 | |||
| 2351 | CVE_STATUS[CVE-2022-49050] = "fixed-version: Fixed from version 5.18" | ||
| 2352 | |||
| 2353 | CVE_STATUS[CVE-2022-49051] = "fixed-version: Fixed from version 5.18" | ||
| 2354 | |||
| 2355 | CVE_STATUS[CVE-2022-49052] = "fixed-version: Fixed from version 5.18" | ||
| 2356 | |||
| 2357 | CVE_STATUS[CVE-2022-49053] = "fixed-version: Fixed from version 5.18" | ||
| 2358 | |||
| 2359 | CVE_STATUS[CVE-2022-49054] = "fixed-version: Fixed from version 5.18" | ||
| 2360 | |||
| 2361 | CVE_STATUS[CVE-2022-49055] = "fixed-version: Fixed from version 5.18" | ||
| 2362 | |||
| 2363 | CVE_STATUS[CVE-2022-49057] = "fixed-version: Fixed from version 5.18" | ||
| 2364 | |||
| 2365 | CVE_STATUS[CVE-2022-49058] = "fixed-version: Fixed from version 5.18" | ||
| 2366 | |||
| 2367 | CVE_STATUS[CVE-2022-49059] = "fixed-version: Fixed from version 5.18" | ||
| 2368 | |||
| 2369 | CVE_STATUS[CVE-2022-49060] = "fixed-version: Fixed from version 5.18" | ||
| 2370 | |||
| 2371 | CVE_STATUS[CVE-2022-49061] = "fixed-version: Fixed from version 5.18" | ||
| 2372 | |||
| 2373 | CVE_STATUS[CVE-2022-49062] = "fixed-version: Fixed from version 5.18" | ||
| 2374 | |||
| 2375 | CVE_STATUS[CVE-2022-49063] = "fixed-version: Fixed from version 5.18" | ||
| 2376 | |||
| 2377 | CVE_STATUS[CVE-2022-49064] = "fixed-version: Fixed from version 5.18" | ||
| 2378 | |||
| 2379 | CVE_STATUS[CVE-2022-49065] = "fixed-version: Fixed from version 5.18" | ||
| 2380 | |||
| 2381 | CVE_STATUS[CVE-2022-49066] = "fixed-version: Fixed from version 5.18" | ||
| 2382 | |||
| 2383 | CVE_STATUS[CVE-2022-49067] = "fixed-version: Fixed from version 5.18" | ||
| 2384 | |||
| 2385 | CVE_STATUS[CVE-2022-49068] = "fixed-version: Fixed from version 5.18" | ||
| 2386 | |||
| 2387 | CVE_STATUS[CVE-2022-49069] = "fixed-version: Fixed from version 5.18" | ||
| 2388 | |||
| 2389 | CVE_STATUS[CVE-2022-49070] = "fixed-version: Fixed from version 5.17.3" | ||
| 2390 | |||
| 2391 | CVE_STATUS[CVE-2022-49071] = "fixed-version: Fixed from version 5.18" | ||
| 2392 | |||
| 2393 | CVE_STATUS[CVE-2022-49072] = "fixed-version: Fixed from version 5.18" | ||
| 2394 | |||
| 2395 | CVE_STATUS[CVE-2022-49073] = "fixed-version: Fixed from version 5.18" | ||
| 2396 | |||
| 2397 | CVE_STATUS[CVE-2022-49074] = "fixed-version: Fixed from version 5.18" | ||
| 2398 | |||
| 2399 | CVE_STATUS[CVE-2022-49075] = "fixed-version: Fixed from version 5.18" | ||
| 2400 | |||
| 2401 | CVE_STATUS[CVE-2022-49076] = "fixed-version: Fixed from version 5.18" | ||
| 2402 | |||
| 2403 | CVE_STATUS[CVE-2022-49077] = "fixed-version: Fixed from version 5.18" | ||
| 2404 | |||
| 2405 | CVE_STATUS[CVE-2022-49078] = "fixed-version: Fixed from version 5.18" | ||
| 2406 | |||
| 2407 | CVE_STATUS[CVE-2022-49079] = "fixed-version: Fixed from version 5.18" | ||
| 2408 | |||
| 2409 | CVE_STATUS[CVE-2022-49080] = "fixed-version: Fixed from version 5.18" | ||
| 2410 | |||
| 2411 | CVE_STATUS[CVE-2022-49081] = "fixed-version: Fixed from version 5.18" | ||
| 2412 | |||
| 2413 | CVE_STATUS[CVE-2022-49082] = "fixed-version: Fixed from version 5.18" | ||
| 2414 | |||
| 2415 | CVE_STATUS[CVE-2022-49083] = "fixed-version: Fixed from version 5.18" | ||
| 2416 | |||
| 2417 | CVE_STATUS[CVE-2022-49084] = "fixed-version: Fixed from version 5.18" | ||
| 2418 | |||
| 2419 | CVE_STATUS[CVE-2022-49085] = "fixed-version: Fixed from version 5.18" | ||
| 2420 | |||
| 2421 | CVE_STATUS[CVE-2022-49086] = "fixed-version: Fixed from version 5.18" | ||
| 2422 | |||
| 2423 | CVE_STATUS[CVE-2022-49087] = "fixed-version: Fixed from version 5.18" | ||
| 2424 | |||
| 2425 | CVE_STATUS[CVE-2022-49088] = "fixed-version: Fixed from version 5.18" | ||
| 2426 | |||
| 2427 | CVE_STATUS[CVE-2022-49089] = "fixed-version: Fixed from version 5.18" | ||
| 2428 | |||
| 2429 | CVE_STATUS[CVE-2022-49090] = "fixed-version: Fixed from version 5.18" | ||
| 2430 | |||
| 2431 | CVE_STATUS[CVE-2022-49091] = "fixed-version: Fixed from version 5.18" | ||
| 2432 | |||
| 2433 | CVE_STATUS[CVE-2022-49092] = "fixed-version: Fixed from version 5.18" | ||
| 2434 | |||
| 2435 | CVE_STATUS[CVE-2022-49093] = "fixed-version: Fixed from version 5.18" | ||
| 2436 | |||
| 2437 | CVE_STATUS[CVE-2022-49094] = "fixed-version: Fixed from version 5.18" | ||
| 2438 | |||
| 2439 | CVE_STATUS[CVE-2022-49095] = "fixed-version: Fixed from version 5.18" | ||
| 2440 | |||
| 2441 | CVE_STATUS[CVE-2022-49096] = "fixed-version: Fixed from version 5.18" | ||
| 2442 | |||
| 2443 | CVE_STATUS[CVE-2022-49097] = "fixed-version: Fixed from version 5.18" | ||
| 2444 | |||
| 2445 | CVE_STATUS[CVE-2022-49098] = "fixed-version: Fixed from version 5.18" | ||
| 2446 | |||
| 2447 | CVE_STATUS[CVE-2022-49099] = "fixed-version: Fixed from version 5.18" | ||
| 2448 | |||
| 2449 | CVE_STATUS[CVE-2022-49100] = "fixed-version: Fixed from version 5.18" | ||
| 2450 | |||
| 2451 | CVE_STATUS[CVE-2022-49102] = "fixed-version: Fixed from version 5.18" | ||
| 2452 | |||
| 2453 | CVE_STATUS[CVE-2022-49103] = "fixed-version: Fixed from version 5.18" | ||
| 2454 | |||
| 2455 | CVE_STATUS[CVE-2022-49104] = "fixed-version: Fixed from version 5.18" | ||
| 2456 | |||
| 2457 | CVE_STATUS[CVE-2022-49105] = "fixed-version: Fixed from version 5.18" | ||
| 2458 | |||
| 2459 | CVE_STATUS[CVE-2022-49106] = "fixed-version: Fixed from version 5.18" | ||
| 2460 | |||
| 2461 | CVE_STATUS[CVE-2022-49107] = "fixed-version: Fixed from version 5.18" | ||
| 2462 | |||
| 2463 | CVE_STATUS[CVE-2022-49108] = "fixed-version: Fixed from version 5.18" | ||
| 2464 | |||
| 2465 | CVE_STATUS[CVE-2022-49109] = "fixed-version: Fixed from version 5.18" | ||
| 2466 | |||
| 2467 | CVE_STATUS[CVE-2022-49110] = "fixed-version: Fixed from version 5.18" | ||
| 2468 | |||
| 2469 | CVE_STATUS[CVE-2022-49111] = "fixed-version: Fixed from version 5.18" | ||
| 2470 | |||
| 2471 | CVE_STATUS[CVE-2022-49112] = "fixed-version: Fixed from version 5.18" | ||
| 2472 | |||
| 2473 | CVE_STATUS[CVE-2022-49113] = "fixed-version: Fixed from version 5.18" | ||
| 2474 | |||
| 2475 | CVE_STATUS[CVE-2022-49114] = "fixed-version: Fixed from version 5.18" | ||
| 2476 | |||
| 2477 | CVE_STATUS[CVE-2022-49115] = "fixed-version: Fixed from version 5.18" | ||
| 2478 | |||
| 2479 | CVE_STATUS[CVE-2022-49116] = "fixed-version: Fixed from version 5.18" | ||
| 2480 | |||
| 2481 | CVE_STATUS[CVE-2022-49117] = "fixed-version: Fixed from version 5.18" | ||
| 2482 | |||
| 2483 | CVE_STATUS[CVE-2022-49118] = "fixed-version: Fixed from version 5.18" | ||
| 2484 | |||
| 2485 | CVE_STATUS[CVE-2022-49119] = "fixed-version: Fixed from version 5.18" | ||
| 2486 | |||
| 2487 | CVE_STATUS[CVE-2022-49120] = "fixed-version: Fixed from version 5.18" | ||
| 2488 | |||
| 2489 | CVE_STATUS[CVE-2022-49121] = "fixed-version: Fixed from version 5.18" | ||
| 2490 | |||
| 2491 | CVE_STATUS[CVE-2022-49122] = "fixed-version: Fixed from version 5.18" | ||
| 2492 | |||
| 2493 | CVE_STATUS[CVE-2022-49123] = "fixed-version: Fixed from version 5.18" | ||
| 2494 | |||
| 2495 | CVE_STATUS[CVE-2022-49124] = "fixed-version: Fixed from version 5.18" | ||
| 2496 | |||
| 2497 | CVE_STATUS[CVE-2022-49125] = "fixed-version: Fixed from version 5.18" | ||
| 2498 | |||
| 2499 | CVE_STATUS[CVE-2022-49126] = "fixed-version: Fixed from version 5.18" | ||
| 2500 | |||
| 2501 | CVE_STATUS[CVE-2022-49127] = "fixed-version: Fixed from version 5.18" | ||
| 2502 | |||
| 2503 | CVE_STATUS[CVE-2022-49128] = "fixed-version: Fixed from version 5.18" | ||
| 2504 | |||
| 2505 | CVE_STATUS[CVE-2022-49129] = "fixed-version: Fixed from version 5.18" | ||
| 2506 | |||
| 2507 | CVE_STATUS[CVE-2022-49130] = "fixed-version: Fixed from version 5.18" | ||
| 2508 | |||
| 2509 | CVE_STATUS[CVE-2022-49131] = "fixed-version: Fixed from version 5.18" | ||
| 2510 | |||
| 2511 | CVE_STATUS[CVE-2022-49132] = "fixed-version: Fixed from version 5.18" | ||
| 2512 | |||
| 2513 | CVE_STATUS[CVE-2022-49133] = "fixed-version: Fixed from version 5.18" | ||
| 2514 | |||
| 2515 | CVE_STATUS[CVE-2022-49134] = "fixed-version: Fixed from version 5.18" | ||
| 2516 | |||
| 2517 | CVE_STATUS[CVE-2022-49135] = "fixed-version: Fixed from version 5.18" | ||
| 2518 | |||
| 2519 | CVE_STATUS[CVE-2022-49136] = "fixed-version: Fixed from version 5.18" | ||
| 2520 | |||
| 2521 | CVE_STATUS[CVE-2022-49137] = "fixed-version: Fixed from version 5.18" | ||
| 2522 | |||
| 2523 | CVE_STATUS[CVE-2022-49138] = "fixed-version: Fixed from version 5.18" | ||
| 2524 | |||
| 2525 | CVE_STATUS[CVE-2022-49139] = "fixed-version: Fixed from version 5.18" | ||
| 2526 | |||
| 2527 | CVE_STATUS[CVE-2022-49141] = "fixed-version: Fixed from version 5.18" | ||
| 2528 | |||
| 2529 | CVE_STATUS[CVE-2022-49142] = "fixed-version: Fixed from version 5.18" | ||
| 2530 | |||
| 2531 | CVE_STATUS[CVE-2022-49144] = "fixed-version: Fixed from version 5.18" | ||
| 2532 | |||
| 2533 | CVE_STATUS[CVE-2022-49145] = "fixed-version: Fixed from version 5.18" | ||
| 2534 | |||
| 2535 | CVE_STATUS[CVE-2022-49146] = "fixed-version: Fixed from version 5.18" | ||
| 2536 | |||
| 2537 | CVE_STATUS[CVE-2022-49147] = "fixed-version: Fixed from version 5.18" | ||
| 2538 | |||
| 2539 | CVE_STATUS[CVE-2022-49148] = "fixed-version: Fixed from version 5.18" | ||
| 2540 | |||
| 2541 | CVE_STATUS[CVE-2022-49149] = "fixed-version: Fixed from version 5.18" | ||
| 2542 | |||
| 2543 | CVE_STATUS[CVE-2022-49150] = "fixed-version: Fixed from version 5.18" | ||
| 2544 | |||
| 2545 | CVE_STATUS[CVE-2022-49151] = "fixed-version: Fixed from version 5.18" | ||
| 2546 | |||
| 2547 | CVE_STATUS[CVE-2022-49152] = "fixed-version: Fixed from version 5.18" | ||
| 2548 | |||
| 2549 | CVE_STATUS[CVE-2022-49153] = "fixed-version: Fixed from version 5.18" | ||
| 2550 | |||
| 2551 | CVE_STATUS[CVE-2022-49154] = "fixed-version: Fixed from version 5.18" | ||
| 2552 | |||
| 2553 | CVE_STATUS[CVE-2022-49155] = "fixed-version: Fixed from version 5.18" | ||
| 2554 | |||
| 2555 | CVE_STATUS[CVE-2022-49156] = "fixed-version: Fixed from version 5.18" | ||
| 2556 | |||
| 2557 | CVE_STATUS[CVE-2022-49157] = "fixed-version: Fixed from version 5.18" | ||
| 2558 | |||
| 2559 | CVE_STATUS[CVE-2022-49158] = "fixed-version: Fixed from version 5.18" | ||
| 2560 | |||
| 2561 | CVE_STATUS[CVE-2022-49159] = "fixed-version: Fixed from version 5.18" | ||
| 2562 | |||
| 2563 | CVE_STATUS[CVE-2022-49160] = "fixed-version: Fixed from version 5.18" | ||
| 2564 | |||
| 2565 | CVE_STATUS[CVE-2022-49161] = "fixed-version: Fixed from version 5.18" | ||
| 2566 | |||
| 2567 | CVE_STATUS[CVE-2022-49162] = "fixed-version: Fixed from version 5.18" | ||
| 2568 | |||
| 2569 | CVE_STATUS[CVE-2022-49163] = "fixed-version: Fixed from version 5.18" | ||
| 2570 | |||
| 2571 | CVE_STATUS[CVE-2022-49164] = "fixed-version: Fixed from version 5.18" | ||
| 2572 | |||
| 2573 | CVE_STATUS[CVE-2022-49165] = "fixed-version: Fixed from version 5.18" | ||
| 2574 | |||
| 2575 | CVE_STATUS[CVE-2022-49166] = "fixed-version: Fixed from version 5.18" | ||
| 2576 | |||
| 2577 | CVE_STATUS[CVE-2022-49167] = "fixed-version: Fixed from version 5.18" | ||
| 2578 | |||
| 2579 | CVE_STATUS[CVE-2022-49168] = "fixed-version: Fixed from version 5.18" | ||
| 2580 | |||
| 2581 | CVE_STATUS[CVE-2022-49169] = "fixed-version: Fixed from version 5.18" | ||
| 2582 | |||
| 2583 | CVE_STATUS[CVE-2022-49170] = "fixed-version: Fixed from version 5.18" | ||
| 2584 | |||
| 2585 | CVE_STATUS[CVE-2022-49171] = "fixed-version: Fixed from version 5.18" | ||
| 2586 | |||
| 2587 | CVE_STATUS[CVE-2022-49172] = "fixed-version: Fixed from version 5.18" | ||
| 2588 | |||
| 2589 | CVE_STATUS[CVE-2022-49173] = "fixed-version: Fixed from version 5.18" | ||
| 2590 | |||
| 2591 | CVE_STATUS[CVE-2022-49174] = "fixed-version: Fixed from version 5.18" | ||
| 2592 | |||
| 2593 | CVE_STATUS[CVE-2022-49175] = "fixed-version: Fixed from version 5.18" | ||
| 2594 | |||
| 2595 | CVE_STATUS[CVE-2022-49176] = "fixed-version: Fixed from version 5.18" | ||
| 2596 | |||
| 2597 | CVE_STATUS[CVE-2022-49177] = "fixed-version: Fixed from version 5.18" | ||
| 2598 | |||
| 2599 | CVE_STATUS[CVE-2022-49178] = "fixed-version: Fixed from version 5.18" | ||
| 2600 | |||
| 2601 | CVE_STATUS[CVE-2022-49179] = "fixed-version: Fixed from version 5.18" | ||
| 2602 | |||
| 2603 | CVE_STATUS[CVE-2022-49180] = "fixed-version: Fixed from version 5.18" | ||
| 2604 | |||
| 2605 | CVE_STATUS[CVE-2022-49182] = "fixed-version: Fixed from version 5.18" | ||
| 2606 | |||
| 2607 | CVE_STATUS[CVE-2022-49183] = "fixed-version: Fixed from version 5.18" | ||
| 2608 | |||
| 2609 | CVE_STATUS[CVE-2022-49184] = "fixed-version: Fixed from version 5.18" | ||
| 2610 | |||
| 2611 | CVE_STATUS[CVE-2022-49185] = "fixed-version: Fixed from version 5.18" | ||
| 2612 | |||
| 2613 | CVE_STATUS[CVE-2022-49186] = "fixed-version: Fixed from version 5.18" | ||
| 2614 | |||
| 2615 | CVE_STATUS[CVE-2022-49187] = "fixed-version: Fixed from version 5.18" | ||
| 2616 | |||
| 2617 | CVE_STATUS[CVE-2022-49188] = "fixed-version: Fixed from version 5.18" | ||
| 2618 | |||
| 2619 | CVE_STATUS[CVE-2022-49189] = "fixed-version: Fixed from version 5.18" | ||
| 2620 | |||
| 2621 | CVE_STATUS[CVE-2022-49190] = "fixed-version: Fixed from version 5.18" | ||
| 2622 | |||
| 2623 | CVE_STATUS[CVE-2022-49191] = "fixed-version: Fixed from version 5.18" | ||
| 2624 | |||
| 2625 | CVE_STATUS[CVE-2022-49192] = "fixed-version: Fixed from version 5.18" | ||
| 2626 | |||
| 2627 | CVE_STATUS[CVE-2022-49193] = "fixed-version: Fixed from version 5.18" | ||
| 2628 | |||
| 2629 | CVE_STATUS[CVE-2022-49194] = "fixed-version: Fixed from version 5.18" | ||
| 2630 | |||
| 2631 | CVE_STATUS[CVE-2022-49195] = "fixed-version: Fixed from version 5.18" | ||
| 2632 | |||
| 2633 | CVE_STATUS[CVE-2022-49196] = "fixed-version: Fixed from version 5.18" | ||
| 2634 | |||
| 2635 | CVE_STATUS[CVE-2022-49197] = "fixed-version: Fixed from version 5.18" | ||
| 2636 | |||
| 2637 | CVE_STATUS[CVE-2022-49198] = "fixed-version: Fixed from version 5.18" | ||
| 2638 | |||
| 2639 | CVE_STATUS[CVE-2022-49199] = "fixed-version: Fixed from version 5.18" | ||
| 2640 | |||
| 2641 | CVE_STATUS[CVE-2022-49200] = "fixed-version: Fixed from version 5.18" | ||
| 2642 | |||
| 2643 | CVE_STATUS[CVE-2022-49201] = "fixed-version: Fixed from version 5.18" | ||
| 2644 | |||
| 2645 | CVE_STATUS[CVE-2022-49202] = "fixed-version: Fixed from version 5.18" | ||
| 2646 | |||
| 2647 | CVE_STATUS[CVE-2022-49203] = "fixed-version: Fixed from version 5.18" | ||
| 2648 | |||
| 2649 | CVE_STATUS[CVE-2022-49204] = "fixed-version: Fixed from version 5.18" | ||
| 2650 | |||
| 2651 | CVE_STATUS[CVE-2022-49205] = "fixed-version: Fixed from version 5.18" | ||
| 2652 | |||
| 2653 | CVE_STATUS[CVE-2022-49206] = "fixed-version: Fixed from version 5.18" | ||
| 2654 | |||
| 2655 | CVE_STATUS[CVE-2022-49207] = "fixed-version: Fixed from version 5.18" | ||
| 2656 | |||
| 2657 | CVE_STATUS[CVE-2022-49208] = "fixed-version: Fixed from version 5.18" | ||
| 2658 | |||
| 2659 | CVE_STATUS[CVE-2022-49209] = "fixed-version: Fixed from version 5.18" | ||
| 2660 | |||
| 2661 | CVE_STATUS[CVE-2022-49210] = "fixed-version: Fixed from version 5.18" | ||
| 2662 | |||
| 2663 | CVE_STATUS[CVE-2022-49211] = "fixed-version: Fixed from version 5.18" | ||
| 2664 | |||
| 2665 | CVE_STATUS[CVE-2022-49212] = "fixed-version: Fixed from version 5.18" | ||
| 2666 | |||
| 2667 | CVE_STATUS[CVE-2022-49213] = "fixed-version: Fixed from version 5.18" | ||
| 2668 | |||
| 2669 | CVE_STATUS[CVE-2022-49214] = "fixed-version: Fixed from version 5.18" | ||
| 2670 | |||
| 2671 | CVE_STATUS[CVE-2022-49215] = "fixed-version: Fixed from version 5.18" | ||
| 2672 | |||
| 2673 | CVE_STATUS[CVE-2022-49216] = "fixed-version: Fixed from version 5.18" | ||
| 2674 | |||
| 2675 | CVE_STATUS[CVE-2022-49217] = "fixed-version: Fixed from version 5.18" | ||
| 2676 | |||
| 2677 | CVE_STATUS[CVE-2022-49218] = "fixed-version: Fixed from version 5.18" | ||
| 2678 | |||
| 2679 | CVE_STATUS[CVE-2022-49219] = "fixed-version: Fixed from version 5.18" | ||
| 2680 | |||
| 2681 | CVE_STATUS[CVE-2022-49220] = "fixed-version: Fixed from version 5.18" | ||
| 2682 | |||
| 2683 | CVE_STATUS[CVE-2022-49221] = "fixed-version: Fixed from version 5.18" | ||
| 2684 | |||
| 2685 | CVE_STATUS[CVE-2022-49222] = "fixed-version: Fixed from version 5.18" | ||
| 2686 | |||
| 2687 | CVE_STATUS[CVE-2022-49223] = "fixed-version: Fixed from version 5.18" | ||
| 2688 | |||
| 2689 | CVE_STATUS[CVE-2022-49224] = "fixed-version: Fixed from version 5.18" | ||
| 2690 | |||
| 2691 | CVE_STATUS[CVE-2022-49225] = "fixed-version: Fixed from version 5.18" | ||
| 2692 | |||
| 2693 | CVE_STATUS[CVE-2022-49226] = "fixed-version: Fixed from version 5.18" | ||
| 2694 | |||
| 2695 | CVE_STATUS[CVE-2022-49227] = "fixed-version: Fixed from version 5.18" | ||
| 2696 | |||
| 2697 | CVE_STATUS[CVE-2022-49228] = "fixed-version: Fixed from version 5.18" | ||
| 2698 | |||
| 2699 | CVE_STATUS[CVE-2022-49229] = "fixed-version: Fixed from version 5.18" | ||
| 2700 | |||
| 2701 | CVE_STATUS[CVE-2022-49230] = "fixed-version: Fixed from version 5.18" | ||
| 2702 | |||
| 2703 | CVE_STATUS[CVE-2022-49231] = "fixed-version: Fixed from version 5.18" | ||
| 2704 | |||
| 2705 | CVE_STATUS[CVE-2022-49232] = "fixed-version: Fixed from version 5.18" | ||
| 2706 | |||
| 2707 | CVE_STATUS[CVE-2022-49233] = "fixed-version: Fixed from version 5.18" | ||
| 2708 | |||
| 2709 | CVE_STATUS[CVE-2022-49234] = "fixed-version: Fixed from version 5.18" | ||
| 2710 | |||
| 2711 | CVE_STATUS[CVE-2022-49235] = "fixed-version: Fixed from version 5.18" | ||
| 2712 | |||
| 2713 | CVE_STATUS[CVE-2022-49236] = "fixed-version: Fixed from version 5.18" | ||
| 2714 | |||
| 2715 | CVE_STATUS[CVE-2022-49237] = "fixed-version: Fixed from version 5.18" | ||
| 2716 | |||
| 2717 | CVE_STATUS[CVE-2022-49238] = "fixed-version: Fixed from version 5.18" | ||
| 2718 | |||
| 2719 | CVE_STATUS[CVE-2022-49239] = "fixed-version: Fixed from version 5.18" | ||
| 2720 | |||
| 2721 | CVE_STATUS[CVE-2022-49240] = "fixed-version: Fixed from version 5.18" | ||
| 2722 | |||
| 2723 | CVE_STATUS[CVE-2022-49241] = "fixed-version: Fixed from version 5.18" | ||
| 2724 | |||
| 2725 | CVE_STATUS[CVE-2022-49242] = "fixed-version: Fixed from version 5.18" | ||
| 2726 | |||
| 2727 | CVE_STATUS[CVE-2022-49243] = "fixed-version: Fixed from version 5.18" | ||
| 2728 | |||
| 2729 | CVE_STATUS[CVE-2022-49244] = "fixed-version: Fixed from version 5.18" | ||
| 2730 | |||
| 2731 | CVE_STATUS[CVE-2022-49245] = "fixed-version: Fixed from version 5.18" | ||
| 2732 | |||
| 2733 | CVE_STATUS[CVE-2022-49246] = "fixed-version: Fixed from version 5.18" | ||
| 2734 | |||
| 2735 | CVE_STATUS[CVE-2022-49247] = "fixed-version: Fixed from version 5.18" | ||
| 2736 | |||
| 2737 | CVE_STATUS[CVE-2022-49248] = "fixed-version: Fixed from version 5.18" | ||
| 2738 | |||
| 2739 | CVE_STATUS[CVE-2022-49249] = "fixed-version: Fixed from version 5.18" | ||
| 2740 | |||
| 2741 | CVE_STATUS[CVE-2022-49250] = "fixed-version: Fixed from version 5.18" | ||
| 2742 | |||
| 2743 | CVE_STATUS[CVE-2022-49251] = "fixed-version: Fixed from version 5.18" | ||
| 2744 | |||
| 2745 | CVE_STATUS[CVE-2022-49252] = "fixed-version: Fixed from version 5.18" | ||
| 2746 | |||
| 2747 | CVE_STATUS[CVE-2022-49253] = "fixed-version: Fixed from version 5.18" | ||
| 2748 | |||
| 2749 | CVE_STATUS[CVE-2022-49254] = "fixed-version: Fixed from version 5.18" | ||
| 2750 | |||
| 2751 | CVE_STATUS[CVE-2022-49255] = "fixed-version: Fixed from version 5.18" | ||
| 2752 | |||
| 2753 | CVE_STATUS[CVE-2022-49256] = "fixed-version: Fixed from version 5.18" | ||
| 2754 | |||
| 2755 | CVE_STATUS[CVE-2022-49257] = "fixed-version: Fixed from version 5.18" | ||
| 2756 | |||
| 2757 | CVE_STATUS[CVE-2022-49258] = "fixed-version: Fixed from version 5.18" | ||
| 2758 | |||
| 2759 | CVE_STATUS[CVE-2022-49259] = "fixed-version: Fixed from version 5.18" | ||
| 2760 | |||
| 2761 | CVE_STATUS[CVE-2022-49260] = "fixed-version: Fixed from version 5.18" | ||
| 2762 | |||
| 2763 | CVE_STATUS[CVE-2022-49261] = "fixed-version: Fixed from version 5.18" | ||
| 2764 | |||
| 2765 | CVE_STATUS[CVE-2022-49262] = "fixed-version: Fixed from version 5.18" | ||
| 2766 | |||
| 2767 | CVE_STATUS[CVE-2022-49263] = "fixed-version: Fixed from version 5.18" | ||
| 2768 | |||
| 2769 | CVE_STATUS[CVE-2022-49264] = "fixed-version: Fixed from version 5.18" | ||
| 2770 | |||
| 2771 | CVE_STATUS[CVE-2022-49265] = "fixed-version: Fixed from version 5.18" | ||
| 2772 | |||
| 2773 | CVE_STATUS[CVE-2022-49266] = "fixed-version: Fixed from version 5.18" | ||
| 2774 | |||
| 2775 | CVE_STATUS[CVE-2022-49267] = "fixed-version: Fixed from version 5.18" | ||
| 2776 | |||
| 2777 | CVE_STATUS[CVE-2022-49268] = "fixed-version: Fixed from version 5.18" | ||
| 2778 | |||
| 2779 | CVE_STATUS[CVE-2022-49269] = "fixed-version: Fixed from version 5.18" | ||
| 2780 | |||
| 2781 | CVE_STATUS[CVE-2022-49270] = "fixed-version: Fixed from version 5.18" | ||
| 2782 | |||
| 2783 | CVE_STATUS[CVE-2022-49271] = "fixed-version: Fixed from version 5.18" | ||
| 2784 | |||
| 2785 | CVE_STATUS[CVE-2022-49272] = "fixed-version: Fixed from version 5.17.2" | ||
| 2786 | |||
| 2787 | CVE_STATUS[CVE-2022-49273] = "fixed-version: Fixed from version 5.18" | ||
| 2788 | |||
| 2789 | CVE_STATUS[CVE-2022-49274] = "fixed-version: Fixed from version 5.18" | ||
| 2790 | |||
| 2791 | CVE_STATUS[CVE-2022-49275] = "fixed-version: Fixed from version 5.18" | ||
| 2792 | |||
| 2793 | CVE_STATUS[CVE-2022-49276] = "fixed-version: Fixed from version 5.18" | ||
| 2794 | |||
| 2795 | CVE_STATUS[CVE-2022-49277] = "fixed-version: Fixed from version 5.18" | ||
| 2796 | |||
| 2797 | CVE_STATUS[CVE-2022-49278] = "fixed-version: Fixed from version 5.18" | ||
| 2798 | |||
| 2799 | CVE_STATUS[CVE-2022-49279] = "fixed-version: Fixed from version 5.18" | ||
| 2800 | |||
| 2801 | CVE_STATUS[CVE-2022-49280] = "fixed-version: Fixed from version 5.18" | ||
| 2802 | |||
| 2803 | CVE_STATUS[CVE-2022-49281] = "fixed-version: Fixed from version 5.18" | ||
| 2804 | |||
| 2805 | CVE_STATUS[CVE-2022-49282] = "fixed-version: Fixed from version 5.18" | ||
| 2806 | |||
| 2807 | CVE_STATUS[CVE-2022-49283] = "fixed-version: Fixed from version 5.18" | ||
| 2808 | |||
| 2809 | CVE_STATUS[CVE-2022-49284] = "fixed-version: Fixed from version 5.18" | ||
| 2810 | |||
| 2811 | CVE_STATUS[CVE-2022-49285] = "fixed-version: Fixed from version 5.18" | ||
| 2812 | |||
| 2813 | CVE_STATUS[CVE-2022-49286] = "fixed-version: Fixed from version 5.18" | ||
| 2814 | |||
| 2815 | CVE_STATUS[CVE-2022-49287] = "fixed-version: Fixed from version 5.18" | ||
| 2816 | |||
| 2817 | CVE_STATUS[CVE-2022-49288] = "fixed-version: Fixed from version 5.18" | ||
| 2818 | |||
| 2819 | CVE_STATUS[CVE-2022-49289] = "fixed-version: Fixed from version 5.18" | ||
| 2820 | |||
| 2821 | CVE_STATUS[CVE-2022-49290] = "fixed-version: Fixed from version 5.18" | ||
| 2822 | |||
| 2823 | CVE_STATUS[CVE-2022-49291] = "fixed-version: Fixed from version 5.18" | ||
| 2824 | |||
| 2825 | CVE_STATUS[CVE-2022-49292] = "fixed-version: Fixed from version 5.18" | ||
| 2826 | |||
| 2827 | CVE_STATUS[CVE-2022-49293] = "fixed-version: Fixed from version 5.18" | ||
| 2828 | |||
| 2829 | CVE_STATUS[CVE-2022-49294] = "fixed-version: Fixed from version 5.19" | ||
| 2830 | |||
| 2831 | CVE_STATUS[CVE-2022-49295] = "fixed-version: Fixed from version 5.19" | ||
| 2832 | |||
| 2833 | CVE_STATUS[CVE-2022-49296] = "fixed-version: Fixed from version 5.19" | ||
| 2834 | |||
| 2835 | CVE_STATUS[CVE-2022-49297] = "fixed-version: Fixed from version 5.19" | ||
| 2836 | |||
| 2837 | CVE_STATUS[CVE-2022-49298] = "fixed-version: Fixed from version 5.19" | ||
| 2838 | |||
| 2839 | CVE_STATUS[CVE-2022-49300] = "fixed-version: Fixed from version 5.19" | ||
| 2840 | |||
| 2841 | CVE_STATUS[CVE-2022-49301] = "fixed-version: Fixed from version 5.19" | ||
| 2842 | |||
| 2843 | CVE_STATUS[CVE-2022-49302] = "fixed-version: Fixed from version 5.19" | ||
| 2844 | |||
| 2845 | CVE_STATUS[CVE-2022-49303] = "fixed-version: Fixed from version 5.19" | ||
| 2846 | |||
| 2847 | CVE_STATUS[CVE-2022-49304] = "fixed-version: Fixed from version 5.19" | ||
| 2848 | |||
| 2849 | CVE_STATUS[CVE-2022-49305] = "fixed-version: Fixed from version 5.19" | ||
| 2850 | |||
| 2851 | CVE_STATUS[CVE-2022-49306] = "fixed-version: Fixed from version 5.19" | ||
| 2852 | |||
| 2853 | CVE_STATUS[CVE-2022-49307] = "fixed-version: Fixed from version 5.19" | ||
| 2854 | |||
| 2855 | CVE_STATUS[CVE-2022-49308] = "fixed-version: Fixed from version 5.19" | ||
| 2856 | |||
| 2857 | CVE_STATUS[CVE-2022-49309] = "fixed-version: Fixed from version 5.19" | ||
| 2858 | |||
| 2859 | CVE_STATUS[CVE-2022-49310] = "fixed-version: Fixed from version 5.19" | ||
| 2860 | |||
| 2861 | CVE_STATUS[CVE-2022-49311] = "fixed-version: Fixed from version 5.19" | ||
| 2862 | |||
| 2863 | CVE_STATUS[CVE-2022-49312] = "fixed-version: Fixed from version 5.19" | ||
| 2864 | |||
| 2865 | CVE_STATUS[CVE-2022-49313] = "fixed-version: Fixed from version 5.19" | ||
| 2866 | |||
| 2867 | CVE_STATUS[CVE-2022-49314] = "fixed-version: Fixed from version 5.19" | ||
| 2868 | |||
| 2869 | CVE_STATUS[CVE-2022-49315] = "fixed-version: Fixed from version 5.19" | ||
| 2870 | |||
| 2871 | CVE_STATUS[CVE-2022-49316] = "fixed-version: Fixed from version 5.19" | ||
| 2872 | |||
| 2873 | CVE_STATUS[CVE-2022-49317] = "fixed-version: Fixed from version 5.19" | ||
| 2874 | |||
| 2875 | CVE_STATUS[CVE-2022-49318] = "fixed-version: Fixed from version 5.19" | ||
| 2876 | |||
| 2877 | CVE_STATUS[CVE-2022-49319] = "fixed-version: Fixed from version 5.19" | ||
| 2878 | |||
| 2879 | CVE_STATUS[CVE-2022-49320] = "fixed-version: Fixed from version 5.19" | ||
| 2880 | |||
| 2881 | CVE_STATUS[CVE-2022-49321] = "fixed-version: Fixed from version 5.19" | ||
| 2882 | |||
| 2883 | CVE_STATUS[CVE-2022-49322] = "fixed-version: Fixed from version 5.19" | ||
| 2884 | |||
| 2885 | CVE_STATUS[CVE-2022-49323] = "fixed-version: Fixed from version 5.19" | ||
| 2886 | |||
| 2887 | CVE_STATUS[CVE-2022-49324] = "fixed-version: Fixed from version 5.19" | ||
| 2888 | |||
| 2889 | CVE_STATUS[CVE-2022-49325] = "fixed-version: Fixed from version 5.19" | ||
| 2890 | |||
| 2891 | CVE_STATUS[CVE-2022-49326] = "fixed-version: Fixed from version 5.19" | ||
| 2892 | |||
| 2893 | CVE_STATUS[CVE-2022-49327] = "fixed-version: Fixed from version 5.19" | ||
| 2894 | |||
| 2895 | CVE_STATUS[CVE-2022-49328] = "fixed-version: Fixed from version 5.19" | ||
| 2896 | |||
| 2897 | CVE_STATUS[CVE-2022-49329] = "fixed-version: Fixed from version 5.19" | ||
| 2898 | |||
| 2899 | CVE_STATUS[CVE-2022-49330] = "fixed-version: Fixed from version 5.19" | ||
| 2900 | |||
| 2901 | CVE_STATUS[CVE-2022-49331] = "fixed-version: Fixed from version 5.19" | ||
| 2902 | |||
| 2903 | CVE_STATUS[CVE-2022-49332] = "fixed-version: Fixed from version 5.19" | ||
| 2904 | |||
| 2905 | CVE_STATUS[CVE-2022-49333] = "fixed-version: Fixed from version 5.19" | ||
| 2906 | |||
| 2907 | CVE_STATUS[CVE-2022-49334] = "fixed-version: Fixed from version 5.19" | ||
| 2908 | |||
| 2909 | CVE_STATUS[CVE-2022-49335] = "fixed-version: Fixed from version 5.19" | ||
| 2910 | |||
| 2911 | CVE_STATUS[CVE-2022-49336] = "fixed-version: Fixed from version 5.19" | ||
| 2912 | |||
| 2913 | CVE_STATUS[CVE-2022-49337] = "fixed-version: Fixed from version 5.19" | ||
| 2914 | |||
| 2915 | CVE_STATUS[CVE-2022-49338] = "fixed-version: Fixed from version 5.19" | ||
| 2916 | |||
| 2917 | CVE_STATUS[CVE-2022-49339] = "fixed-version: Fixed from version 5.19" | ||
| 2918 | |||
| 2919 | CVE_STATUS[CVE-2022-49340] = "fixed-version: Fixed from version 5.19" | ||
| 2920 | |||
| 2921 | CVE_STATUS[CVE-2022-49341] = "fixed-version: Fixed from version 5.19" | ||
| 2922 | |||
| 2923 | CVE_STATUS[CVE-2022-49342] = "fixed-version: Fixed from version 5.19" | ||
| 2924 | |||
| 2925 | CVE_STATUS[CVE-2022-49343] = "fixed-version: Fixed from version 5.19" | ||
| 2926 | |||
| 2927 | CVE_STATUS[CVE-2022-49344] = "fixed-version: Fixed from version 5.19" | ||
| 2928 | |||
| 2929 | CVE_STATUS[CVE-2022-49345] = "fixed-version: Fixed from version 5.19" | ||
| 2930 | |||
| 2931 | CVE_STATUS[CVE-2022-49346] = "fixed-version: Fixed from version 5.19" | ||
| 2932 | |||
| 2933 | CVE_STATUS[CVE-2022-49347] = "fixed-version: Fixed from version 5.19" | ||
| 2934 | |||
| 2935 | CVE_STATUS[CVE-2022-49348] = "fixed-version: Fixed from version 5.19" | ||
| 2936 | |||
| 2937 | CVE_STATUS[CVE-2022-49349] = "fixed-version: Fixed from version 5.19" | ||
| 2938 | |||
| 2939 | CVE_STATUS[CVE-2022-49350] = "fixed-version: Fixed from version 5.19" | ||
| 2940 | |||
| 2941 | CVE_STATUS[CVE-2022-49351] = "fixed-version: Fixed from version 5.19" | ||
| 2942 | |||
| 2943 | CVE_STATUS[CVE-2022-49352] = "fixed-version: Fixed from version 5.19" | ||
| 2944 | |||
| 2945 | CVE_STATUS[CVE-2022-49353] = "fixed-version: Fixed from version 5.18.4" | ||
| 2946 | |||
| 2947 | CVE_STATUS[CVE-2022-49354] = "fixed-version: Fixed from version 5.19" | ||
| 2948 | |||
| 2949 | CVE_STATUS[CVE-2022-49356] = "fixed-version: Fixed from version 5.19" | ||
| 2950 | |||
| 2951 | CVE_STATUS[CVE-2022-49357] = "fixed-version: Fixed from version 5.19" | ||
| 2952 | |||
| 2953 | CVE_STATUS[CVE-2022-49358] = "fixed-version: Fixed from version 5.19" | ||
| 2954 | |||
| 2955 | CVE_STATUS[CVE-2022-49359] = "fixed-version: Fixed from version 5.19" | ||
| 2956 | |||
| 2957 | CVE_STATUS[CVE-2022-49360] = "fixed-version: Fixed from version 5.19" | ||
| 2958 | |||
| 2959 | CVE_STATUS[CVE-2022-49361] = "fixed-version: Fixed from version 5.19" | ||
| 2960 | |||
| 2961 | CVE_STATUS[CVE-2022-49362] = "fixed-version: Fixed from version 5.19" | ||
| 2962 | |||
| 2963 | CVE_STATUS[CVE-2022-49363] = "fixed-version: Fixed from version 5.19" | ||
| 2964 | |||
| 2965 | CVE_STATUS[CVE-2022-49364] = "fixed-version: Fixed from version 5.19" | ||
| 2966 | |||
| 2967 | CVE_STATUS[CVE-2022-49365] = "fixed-version: Fixed from version 5.19" | ||
| 2968 | |||
| 2969 | CVE_STATUS[CVE-2022-49366] = "fixed-version: Fixed from version 5.19" | ||
| 2970 | |||
| 2971 | CVE_STATUS[CVE-2022-49367] = "fixed-version: Fixed from version 5.19" | ||
| 2972 | |||
| 2973 | CVE_STATUS[CVE-2022-49368] = "fixed-version: Fixed from version 5.19" | ||
| 2974 | |||
| 2975 | CVE_STATUS[CVE-2022-49369] = "fixed-version: Fixed from version 5.19" | ||
| 2976 | |||
| 2977 | CVE_STATUS[CVE-2022-49370] = "fixed-version: Fixed from version 5.19" | ||
| 2978 | |||
| 2979 | CVE_STATUS[CVE-2022-49371] = "fixed-version: Fixed from version 5.19" | ||
| 2980 | |||
| 2981 | CVE_STATUS[CVE-2022-49372] = "fixed-version: Fixed from version 5.19" | ||
| 2982 | |||
| 2983 | CVE_STATUS[CVE-2022-49373] = "fixed-version: Fixed from version 5.19" | ||
| 2984 | |||
| 2985 | CVE_STATUS[CVE-2022-49374] = "fixed-version: Fixed from version 5.19" | ||
| 2986 | |||
| 2987 | CVE_STATUS[CVE-2022-49375] = "fixed-version: Fixed from version 5.19" | ||
| 2988 | |||
| 2989 | CVE_STATUS[CVE-2022-49376] = "fixed-version: Fixed from version 5.19" | ||
| 2990 | |||
| 2991 | CVE_STATUS[CVE-2022-49377] = "fixed-version: Fixed from version 5.19" | ||
| 2992 | |||
| 2993 | CVE_STATUS[CVE-2022-49378] = "fixed-version: Fixed from version 5.19" | ||
| 2994 | |||
| 2995 | CVE_STATUS[CVE-2022-49379] = "fixed-version: Fixed from version 5.19" | ||
| 2996 | |||
| 2997 | CVE_STATUS[CVE-2022-49380] = "fixed-version: Fixed from version 5.19" | ||
| 2998 | |||
| 2999 | CVE_STATUS[CVE-2022-49381] = "fixed-version: Fixed from version 5.19" | ||
| 3000 | |||
| 3001 | CVE_STATUS[CVE-2022-49382] = "fixed-version: Fixed from version 5.19" | ||
| 3002 | |||
| 3003 | CVE_STATUS[CVE-2022-49383] = "fixed-version: Fixed from version 5.19" | ||
| 3004 | |||
| 3005 | CVE_STATUS[CVE-2022-49384] = "fixed-version: Fixed from version 5.19" | ||
| 3006 | |||
| 3007 | CVE_STATUS[CVE-2022-49385] = "fixed-version: Fixed from version 5.19" | ||
| 3008 | |||
| 3009 | CVE_STATUS[CVE-2022-49386] = "fixed-version: Fixed from version 5.19" | ||
| 3010 | |||
| 3011 | CVE_STATUS[CVE-2022-49387] = "fixed-version: Fixed from version 5.19" | ||
| 3012 | |||
| 3013 | CVE_STATUS[CVE-2022-49388] = "fixed-version: Fixed from version 5.19" | ||
| 3014 | |||
| 3015 | CVE_STATUS[CVE-2022-49389] = "fixed-version: Fixed from version 5.19" | ||
| 3016 | |||
| 3017 | CVE_STATUS[CVE-2022-49390] = "fixed-version: Fixed from version 5.19" | ||
| 3018 | |||
| 3019 | CVE_STATUS[CVE-2022-49391] = "fixed-version: Fixed from version 5.19" | ||
| 3020 | |||
| 3021 | CVE_STATUS[CVE-2022-49392] = "fixed-version: Fixed from version 5.19" | ||
| 3022 | |||
| 3023 | CVE_STATUS[CVE-2022-49393] = "fixed-version: Fixed from version 5.19" | ||
| 3024 | |||
| 3025 | CVE_STATUS[CVE-2022-49394] = "fixed-version: Fixed from version 5.19" | ||
| 3026 | |||
| 3027 | CVE_STATUS[CVE-2022-49395] = "fixed-version: Fixed from version 5.19" | ||
| 3028 | |||
| 3029 | CVE_STATUS[CVE-2022-49396] = "fixed-version: Fixed from version 5.19" | ||
| 3030 | |||
| 3031 | CVE_STATUS[CVE-2022-49397] = "fixed-version: Fixed from version 5.19" | ||
| 3032 | |||
| 3033 | CVE_STATUS[CVE-2022-49398] = "fixed-version: Fixed from version 5.19" | ||
| 3034 | |||
| 3035 | CVE_STATUS[CVE-2022-49399] = "fixed-version: Fixed from version 5.19" | ||
| 3036 | |||
| 3037 | CVE_STATUS[CVE-2022-49400] = "fixed-version: Fixed from version 5.19" | ||
| 3038 | |||
| 3039 | CVE_STATUS[CVE-2022-49401] = "fixed-version: Fixed from version 5.19" | ||
| 3040 | |||
| 3041 | CVE_STATUS[CVE-2022-49402] = "fixed-version: Fixed from version 5.19" | ||
| 3042 | |||
| 3043 | CVE_STATUS[CVE-2022-49403] = "fixed-version: Fixed from version 5.19" | ||
| 3044 | |||
| 3045 | CVE_STATUS[CVE-2022-49404] = "fixed-version: Fixed from version 5.19" | ||
| 3046 | |||
| 3047 | CVE_STATUS[CVE-2022-49405] = "fixed-version: Fixed from version 5.19" | ||
| 3048 | |||
| 3049 | CVE_STATUS[CVE-2022-49406] = "fixed-version: Fixed from version 5.19" | ||
| 3050 | |||
| 3051 | CVE_STATUS[CVE-2022-49407] = "fixed-version: Fixed from version 5.19" | ||
| 3052 | |||
| 3053 | CVE_STATUS[CVE-2022-49408] = "fixed-version: Fixed from version 5.19" | ||
| 3054 | |||
| 3055 | CVE_STATUS[CVE-2022-49409] = "fixed-version: Fixed from version 5.19" | ||
| 3056 | |||
| 3057 | CVE_STATUS[CVE-2022-49410] = "fixed-version: Fixed from version 5.19" | ||
| 3058 | |||
| 3059 | CVE_STATUS[CVE-2022-49411] = "fixed-version: Fixed from version 5.19" | ||
| 3060 | |||
| 3061 | CVE_STATUS[CVE-2022-49412] = "fixed-version: Fixed from version 5.19" | ||
| 3062 | |||
| 3063 | CVE_STATUS[CVE-2022-49413] = "fixed-version: Fixed from version 5.19" | ||
| 3064 | |||
| 3065 | CVE_STATUS[CVE-2022-49414] = "fixed-version: Fixed from version 5.19" | ||
| 3066 | |||
| 3067 | CVE_STATUS[CVE-2022-49415] = "fixed-version: Fixed from version 5.19" | ||
| 3068 | |||
| 3069 | CVE_STATUS[CVE-2022-49416] = "fixed-version: Fixed from version 5.19" | ||
| 3070 | |||
| 3071 | CVE_STATUS[CVE-2022-49417] = "fixed-version: Fixed from version 5.19" | ||
| 3072 | |||
| 3073 | CVE_STATUS[CVE-2022-49418] = "fixed-version: Fixed from version 5.19" | ||
| 3074 | |||
| 3075 | CVE_STATUS[CVE-2022-49419] = "fixed-version: Fixed from version 5.19" | ||
| 3076 | |||
| 3077 | CVE_STATUS[CVE-2022-49420] = "fixed-version: Fixed from version 5.19" | ||
| 3078 | |||
| 3079 | CVE_STATUS[CVE-2022-49421] = "fixed-version: Fixed from version 5.19" | ||
| 3080 | |||
| 3081 | CVE_STATUS[CVE-2022-49422] = "fixed-version: Fixed from version 5.19" | ||
| 3082 | |||
| 3083 | CVE_STATUS[CVE-2022-49423] = "fixed-version: Fixed from version 5.19" | ||
| 3084 | |||
| 3085 | CVE_STATUS[CVE-2022-49424] = "fixed-version: Fixed from version 5.19" | ||
| 3086 | |||
| 3087 | CVE_STATUS[CVE-2022-49425] = "fixed-version: Fixed from version 5.19" | ||
| 3088 | |||
| 3089 | CVE_STATUS[CVE-2022-49426] = "fixed-version: Fixed from version 5.19" | ||
| 3090 | |||
| 3091 | CVE_STATUS[CVE-2022-49427] = "fixed-version: Fixed from version 5.19" | ||
| 3092 | |||
| 3093 | CVE_STATUS[CVE-2022-49428] = "fixed-version: Fixed from version 5.19" | ||
| 3094 | |||
| 3095 | CVE_STATUS[CVE-2022-49429] = "fixed-version: Fixed from version 5.19" | ||
| 3096 | |||
| 3097 | CVE_STATUS[CVE-2022-49430] = "fixed-version: Fixed from version 5.19" | ||
| 3098 | |||
| 3099 | CVE_STATUS[CVE-2022-49431] = "fixed-version: Fixed from version 5.19" | ||
| 3100 | |||
| 3101 | CVE_STATUS[CVE-2022-49432] = "fixed-version: Fixed from version 5.19" | ||
| 3102 | |||
| 3103 | CVE_STATUS[CVE-2022-49433] = "fixed-version: Fixed from version 5.19" | ||
| 3104 | |||
| 3105 | CVE_STATUS[CVE-2022-49434] = "fixed-version: Fixed from version 5.19" | ||
| 3106 | |||
| 3107 | CVE_STATUS[CVE-2022-49435] = "fixed-version: Fixed from version 5.19" | ||
| 3108 | |||
| 3109 | CVE_STATUS[CVE-2022-49436] = "fixed-version: Fixed from version 5.19" | ||
| 3110 | |||
| 3111 | CVE_STATUS[CVE-2022-49437] = "fixed-version: Fixed from version 5.19" | ||
| 3112 | |||
| 3113 | CVE_STATUS[CVE-2022-49438] = "fixed-version: Fixed from version 5.19" | ||
| 3114 | |||
| 3115 | CVE_STATUS[CVE-2022-49439] = "fixed-version: Fixed from version 5.19" | ||
| 3116 | |||
| 3117 | CVE_STATUS[CVE-2022-49440] = "fixed-version: Fixed from version 5.19" | ||
| 3118 | |||
| 3119 | CVE_STATUS[CVE-2022-49441] = "fixed-version: Fixed from version 5.19" | ||
| 3120 | |||
| 3121 | CVE_STATUS[CVE-2022-49442] = "fixed-version: Fixed from version 5.19" | ||
| 3122 | |||
| 3123 | CVE_STATUS[CVE-2022-49443] = "fixed-version: Fixed from version 5.19" | ||
| 3124 | |||
| 3125 | CVE_STATUS[CVE-2022-49444] = "fixed-version: Fixed from version 5.19" | ||
| 3126 | |||
| 3127 | CVE_STATUS[CVE-2022-49445] = "fixed-version: Fixed from version 5.19" | ||
| 3128 | |||
| 3129 | CVE_STATUS[CVE-2022-49446] = "fixed-version: Fixed from version 5.19" | ||
| 3130 | |||
| 3131 | CVE_STATUS[CVE-2022-49447] = "fixed-version: Fixed from version 5.19" | ||
| 3132 | |||
| 3133 | CVE_STATUS[CVE-2022-49448] = "fixed-version: Fixed from version 5.19" | ||
| 3134 | |||
| 3135 | CVE_STATUS[CVE-2022-49449] = "fixed-version: Fixed from version 5.19" | ||
| 3136 | |||
| 3137 | CVE_STATUS[CVE-2022-49450] = "fixed-version: Fixed from version 5.19" | ||
| 3138 | |||
| 3139 | CVE_STATUS[CVE-2022-49451] = "fixed-version: Fixed from version 5.19" | ||
| 3140 | |||
| 3141 | CVE_STATUS[CVE-2022-49452] = "fixed-version: Fixed from version 5.19" | ||
| 3142 | |||
| 3143 | CVE_STATUS[CVE-2022-49453] = "fixed-version: Fixed from version 5.19" | ||
| 3144 | |||
| 3145 | CVE_STATUS[CVE-2022-49454] = "fixed-version: Fixed from version 5.19" | ||
| 3146 | |||
| 3147 | CVE_STATUS[CVE-2022-49455] = "fixed-version: Fixed from version 5.19" | ||
| 3148 | |||
| 3149 | CVE_STATUS[CVE-2022-49456] = "fixed-version: Fixed from version 5.19" | ||
| 3150 | |||
| 3151 | CVE_STATUS[CVE-2022-49457] = "fixed-version: Fixed from version 5.19" | ||
| 3152 | |||
| 3153 | CVE_STATUS[CVE-2022-49458] = "fixed-version: Fixed from version 5.19" | ||
| 3154 | |||
| 3155 | CVE_STATUS[CVE-2022-49459] = "fixed-version: Fixed from version 5.19" | ||
| 3156 | |||
| 3157 | CVE_STATUS[CVE-2022-49460] = "fixed-version: Fixed from version 5.19" | ||
| 3158 | |||
| 3159 | CVE_STATUS[CVE-2022-49461] = "fixed-version: Fixed from version 5.19" | ||
| 3160 | |||
| 3161 | CVE_STATUS[CVE-2022-49462] = "fixed-version: Fixed from version 5.19" | ||
| 3162 | |||
| 3163 | CVE_STATUS[CVE-2022-49463] = "fixed-version: Fixed from version 5.19" | ||
| 3164 | |||
| 3165 | CVE_STATUS[CVE-2022-49464] = "fixed-version: Fixed from version 5.19" | ||
| 3166 | |||
| 3167 | CVE_STATUS[CVE-2022-49465] = "fixed-version: Fixed from version 5.19" | ||
| 3168 | |||
| 3169 | CVE_STATUS[CVE-2022-49466] = "fixed-version: Fixed from version 5.19" | ||
| 3170 | |||
| 3171 | CVE_STATUS[CVE-2022-49467] = "fixed-version: Fixed from version 5.19" | ||
| 3172 | |||
| 3173 | CVE_STATUS[CVE-2022-49468] = "fixed-version: Fixed from version 5.19" | ||
| 3174 | |||
| 3175 | CVE_STATUS[CVE-2022-49469] = "fixed-version: Fixed from version 5.19" | ||
| 3176 | |||
| 3177 | CVE_STATUS[CVE-2022-49470] = "fixed-version: Fixed from version 5.19" | ||
| 3178 | |||
| 3179 | CVE_STATUS[CVE-2022-49471] = "fixed-version: Fixed from version 5.19" | ||
| 3180 | |||
| 3181 | CVE_STATUS[CVE-2022-49472] = "fixed-version: Fixed from version 5.19" | ||
| 3182 | |||
| 3183 | CVE_STATUS[CVE-2022-49473] = "fixed-version: Fixed from version 5.19" | ||
| 3184 | |||
| 3185 | CVE_STATUS[CVE-2022-49474] = "fixed-version: Fixed from version 5.19" | ||
| 3186 | |||
| 3187 | CVE_STATUS[CVE-2022-49475] = "fixed-version: Fixed from version 5.19" | ||
| 3188 | |||
| 3189 | CVE_STATUS[CVE-2022-49476] = "fixed-version: Fixed from version 5.19" | ||
| 3190 | |||
| 3191 | CVE_STATUS[CVE-2022-49477] = "fixed-version: Fixed from version 5.19" | ||
| 3192 | |||
| 3193 | CVE_STATUS[CVE-2022-49478] = "fixed-version: Fixed from version 5.19" | ||
| 3194 | |||
| 3195 | CVE_STATUS[CVE-2022-49479] = "fixed-version: Fixed from version 5.19" | ||
| 3196 | |||
| 3197 | CVE_STATUS[CVE-2022-49480] = "fixed-version: Fixed from version 5.19" | ||
| 3198 | |||
| 3199 | CVE_STATUS[CVE-2022-49481] = "fixed-version: Fixed from version 5.19" | ||
| 3200 | |||
| 3201 | CVE_STATUS[CVE-2022-49482] = "fixed-version: Fixed from version 5.19" | ||
| 3202 | |||
| 3203 | CVE_STATUS[CVE-2022-49483] = "fixed-version: Fixed from version 5.19" | ||
| 3204 | |||
| 3205 | CVE_STATUS[CVE-2022-49484] = "fixed-version: Fixed from version 5.19" | ||
| 3206 | |||
| 3207 | CVE_STATUS[CVE-2022-49485] = "fixed-version: Fixed from version 5.19" | ||
| 3208 | |||
| 3209 | CVE_STATUS[CVE-2022-49486] = "fixed-version: Fixed from version 5.19" | ||
| 3210 | |||
| 3211 | CVE_STATUS[CVE-2022-49487] = "fixed-version: Fixed from version 5.19" | ||
| 3212 | |||
| 3213 | CVE_STATUS[CVE-2022-49488] = "fixed-version: Fixed from version 5.19" | ||
| 3214 | |||
| 3215 | CVE_STATUS[CVE-2022-49489] = "fixed-version: Fixed from version 5.19" | ||
| 3216 | |||
| 3217 | CVE_STATUS[CVE-2022-49490] = "fixed-version: Fixed from version 5.19" | ||
| 3218 | |||
| 3219 | CVE_STATUS[CVE-2022-49491] = "fixed-version: Fixed from version 5.19" | ||
| 3220 | |||
| 3221 | CVE_STATUS[CVE-2022-49492] = "fixed-version: Fixed from version 5.19" | ||
| 3222 | |||
| 3223 | CVE_STATUS[CVE-2022-49493] = "fixed-version: Fixed from version 5.19" | ||
| 3224 | |||
| 3225 | CVE_STATUS[CVE-2022-49494] = "fixed-version: Fixed from version 5.19" | ||
| 3226 | |||
| 3227 | CVE_STATUS[CVE-2022-49495] = "fixed-version: Fixed from version 5.19" | ||
| 3228 | |||
| 3229 | CVE_STATUS[CVE-2022-49496] = "fixed-version: Fixed from version 5.19" | ||
| 3230 | |||
| 3231 | CVE_STATUS[CVE-2022-49497] = "fixed-version: Fixed from version 5.19" | ||
| 3232 | |||
| 3233 | CVE_STATUS[CVE-2022-49498] = "fixed-version: Fixed from version 5.19" | ||
| 3234 | |||
| 3235 | CVE_STATUS[CVE-2022-49499] = "fixed-version: Fixed from version 5.19" | ||
| 3236 | |||
| 3237 | CVE_STATUS[CVE-2022-49500] = "fixed-version: Fixed from version 5.19" | ||
| 3238 | |||
| 3239 | CVE_STATUS[CVE-2022-49501] = "fixed-version: Fixed from version 5.19" | ||
| 3240 | |||
| 3241 | CVE_STATUS[CVE-2022-49502] = "fixed-version: Fixed from version 5.19" | ||
| 3242 | |||
| 3243 | CVE_STATUS[CVE-2022-49503] = "fixed-version: Fixed from version 5.19" | ||
| 3244 | |||
| 3245 | CVE_STATUS[CVE-2022-49504] = "fixed-version: Fixed from version 5.19" | ||
| 3246 | |||
| 3247 | CVE_STATUS[CVE-2022-49505] = "fixed-version: Fixed from version 5.19" | ||
| 3248 | |||
| 3249 | CVE_STATUS[CVE-2022-49506] = "fixed-version: Fixed from version 5.19" | ||
| 3250 | |||
| 3251 | CVE_STATUS[CVE-2022-49507] = "fixed-version: Fixed from version 5.19" | ||
| 3252 | |||
| 3253 | CVE_STATUS[CVE-2022-49508] = "fixed-version: Fixed from version 5.19" | ||
| 3254 | |||
| 3255 | CVE_STATUS[CVE-2022-49509] = "fixed-version: Fixed from version 5.19" | ||
| 3256 | |||
| 3257 | CVE_STATUS[CVE-2022-49510] = "fixed-version: Fixed from version 5.19" | ||
| 3258 | |||
| 3259 | CVE_STATUS[CVE-2022-49511] = "fixed-version: Fixed from version 5.19" | ||
| 3260 | |||
| 3261 | CVE_STATUS[CVE-2022-49512] = "fixed-version: Fixed from version 5.19" | ||
| 3262 | |||
| 3263 | CVE_STATUS[CVE-2022-49513] = "fixed-version: Fixed from version 5.19" | ||
| 3264 | |||
| 3265 | CVE_STATUS[CVE-2022-49514] = "fixed-version: Fixed from version 5.19" | ||
| 3266 | |||
| 3267 | CVE_STATUS[CVE-2022-49515] = "fixed-version: Fixed from version 5.19" | ||
| 3268 | |||
| 3269 | CVE_STATUS[CVE-2022-49516] = "fixed-version: Fixed from version 5.19" | ||
| 3270 | |||
| 3271 | CVE_STATUS[CVE-2022-49517] = "fixed-version: Fixed from version 5.19" | ||
| 3272 | |||
| 3273 | CVE_STATUS[CVE-2022-49518] = "fixed-version: Fixed from version 5.19" | ||
| 3274 | |||
| 3275 | CVE_STATUS[CVE-2022-49519] = "fixed-version: Fixed from version 5.19" | ||
| 3276 | |||
| 3277 | CVE_STATUS[CVE-2022-49520] = "fixed-version: Fixed from version 5.19" | ||
| 3278 | |||
| 3279 | CVE_STATUS[CVE-2022-49521] = "fixed-version: Fixed from version 5.19" | ||
| 3280 | |||
| 3281 | CVE_STATUS[CVE-2022-49522] = "fixed-version: Fixed from version 5.19" | ||
| 3282 | |||
| 3283 | CVE_STATUS[CVE-2022-49523] = "fixed-version: Fixed from version 5.19" | ||
| 3284 | |||
| 3285 | CVE_STATUS[CVE-2022-49524] = "fixed-version: Fixed from version 5.19" | ||
| 3286 | |||
| 3287 | CVE_STATUS[CVE-2022-49525] = "fixed-version: Fixed from version 5.19" | ||
| 3288 | |||
| 3289 | CVE_STATUS[CVE-2022-49526] = "fixed-version: Fixed from version 5.19" | ||
| 3290 | |||
| 3291 | CVE_STATUS[CVE-2022-49527] = "fixed-version: Fixed from version 5.19" | ||
| 3292 | |||
| 3293 | CVE_STATUS[CVE-2022-49528] = "fixed-version: Fixed from version 5.19" | ||
| 3294 | |||
| 3295 | CVE_STATUS[CVE-2022-49529] = "fixed-version: Fixed from version 5.19" | ||
| 3296 | |||
| 3297 | CVE_STATUS[CVE-2022-49530] = "fixed-version: Fixed from version 5.19" | ||
| 3298 | |||
| 3299 | CVE_STATUS[CVE-2022-49531] = "fixed-version: Fixed from version 5.19" | ||
| 3300 | |||
| 3301 | CVE_STATUS[CVE-2022-49532] = "fixed-version: Fixed from version 5.19" | ||
| 3302 | |||
| 3303 | CVE_STATUS[CVE-2022-49533] = "fixed-version: Fixed from version 5.19" | ||
| 3304 | |||
| 3305 | CVE_STATUS[CVE-2022-49534] = "fixed-version: Fixed from version 5.19" | ||
| 3306 | |||
| 3307 | CVE_STATUS[CVE-2022-49535] = "fixed-version: Fixed from version 5.19" | ||
| 3308 | |||
| 3309 | CVE_STATUS[CVE-2022-49536] = "fixed-version: Fixed from version 5.19" | ||
| 3310 | |||
| 3311 | CVE_STATUS[CVE-2022-49537] = "fixed-version: Fixed from version 5.19" | ||
| 3312 | |||
| 3313 | CVE_STATUS[CVE-2022-49538] = "fixed-version: Fixed from version 5.19" | ||
| 3314 | |||
| 3315 | CVE_STATUS[CVE-2022-49539] = "fixed-version: Fixed from version 5.19" | ||
| 3316 | |||
| 3317 | CVE_STATUS[CVE-2022-49540] = "fixed-version: Fixed from version 5.19" | ||
| 3318 | |||
| 3319 | CVE_STATUS[CVE-2022-49541] = "fixed-version: Fixed from version 5.19" | ||
| 3320 | |||
| 3321 | CVE_STATUS[CVE-2022-49542] = "fixed-version: Fixed from version 5.19" | ||
| 3322 | |||
| 3323 | CVE_STATUS[CVE-2022-49543] = "fixed-version: Fixed from version 5.19" | ||
| 3324 | |||
| 3325 | CVE_STATUS[CVE-2022-49544] = "fixed-version: Fixed from version 5.19" | ||
| 3326 | |||
| 3327 | CVE_STATUS[CVE-2022-49545] = "fixed-version: Fixed from version 5.19" | ||
| 3328 | |||
| 3329 | CVE_STATUS[CVE-2022-49546] = "fixed-version: Fixed from version 5.19" | ||
| 3330 | |||
| 3331 | CVE_STATUS[CVE-2022-49547] = "fixed-version: Fixed from version 5.19" | ||
| 3332 | |||
| 3333 | CVE_STATUS[CVE-2022-49548] = "fixed-version: Fixed from version 5.19" | ||
| 3334 | |||
| 3335 | CVE_STATUS[CVE-2022-49549] = "fixed-version: Fixed from version 5.19" | ||
| 3336 | |||
| 3337 | CVE_STATUS[CVE-2022-49550] = "fixed-version: Fixed from version 5.19" | ||
| 3338 | |||
| 3339 | CVE_STATUS[CVE-2022-49551] = "fixed-version: Fixed from version 5.19" | ||
| 3340 | |||
| 3341 | CVE_STATUS[CVE-2022-49552] = "fixed-version: Fixed from version 5.19" | ||
| 3342 | |||
| 3343 | CVE_STATUS[CVE-2022-49553] = "fixed-version: Fixed from version 5.19" | ||
| 3344 | |||
| 3345 | CVE_STATUS[CVE-2022-49554] = "fixed-version: Fixed from version 5.19" | ||
| 3346 | |||
| 3347 | CVE_STATUS[CVE-2022-49555] = "fixed-version: Fixed from version 5.19" | ||
| 3348 | |||
| 3349 | CVE_STATUS[CVE-2022-49556] = "fixed-version: Fixed from version 5.19" | ||
| 3350 | |||
| 3351 | CVE_STATUS[CVE-2022-49557] = "fixed-version: Fixed from version 5.19" | ||
| 3352 | |||
| 3353 | CVE_STATUS[CVE-2022-49558] = "fixed-version: Fixed from version 5.19" | ||
| 3354 | |||
| 3355 | CVE_STATUS[CVE-2022-49559] = "fixed-version: Fixed from version 5.19" | ||
| 3356 | |||
| 3357 | CVE_STATUS[CVE-2022-49560] = "fixed-version: Fixed from version 5.19" | ||
| 3358 | |||
| 3359 | CVE_STATUS[CVE-2022-49561] = "fixed-version: Fixed from version 5.19" | ||
| 3360 | |||
| 3361 | CVE_STATUS[CVE-2022-49562] = "fixed-version: Fixed from version 5.19" | ||
| 3362 | |||
| 3363 | CVE_STATUS[CVE-2022-49563] = "fixed-version: Fixed from version 5.19" | ||
| 3364 | |||
| 3365 | CVE_STATUS[CVE-2022-49564] = "fixed-version: Fixed from version 5.19" | ||
| 3366 | |||
| 3367 | CVE_STATUS[CVE-2022-49565] = "fixed-version: Fixed from version 5.19" | ||
| 3368 | |||
| 3369 | CVE_STATUS[CVE-2022-49566] = "fixed-version: Fixed from version 5.19" | ||
| 3370 | |||
| 3371 | CVE_STATUS[CVE-2022-49567] = "fixed-version: Fixed from version 5.19" | ||
| 3372 | |||
| 3373 | CVE_STATUS[CVE-2022-49568] = "fixed-version: Fixed from version 5.19" | ||
| 3374 | |||
| 3375 | CVE_STATUS[CVE-2022-49569] = "fixed-version: Fixed from version 5.19" | ||
| 3376 | |||
| 3377 | CVE_STATUS[CVE-2022-49570] = "fixed-version: Fixed from version 5.19" | ||
| 3378 | |||
| 3379 | CVE_STATUS[CVE-2022-49571] = "fixed-version: Fixed from version 5.19" | ||
| 3380 | |||
| 3381 | CVE_STATUS[CVE-2022-49572] = "fixed-version: Fixed from version 5.19" | ||
| 3382 | |||
| 3383 | CVE_STATUS[CVE-2022-49573] = "fixed-version: Fixed from version 5.19" | ||
| 3384 | |||
| 3385 | CVE_STATUS[CVE-2022-49574] = "fixed-version: Fixed from version 5.19" | ||
| 3386 | |||
| 3387 | CVE_STATUS[CVE-2022-49575] = "fixed-version: Fixed from version 5.19" | ||
| 3388 | |||
| 3389 | CVE_STATUS[CVE-2022-49576] = "fixed-version: Fixed from version 5.19" | ||
| 3390 | |||
| 3391 | CVE_STATUS[CVE-2022-49577] = "fixed-version: Fixed from version 5.19" | ||
| 3392 | |||
| 3393 | CVE_STATUS[CVE-2022-49578] = "fixed-version: Fixed from version 5.19" | ||
| 3394 | |||
| 3395 | CVE_STATUS[CVE-2022-49579] = "fixed-version: Fixed from version 5.19" | ||
| 3396 | |||
| 3397 | CVE_STATUS[CVE-2022-49580] = "fixed-version: Fixed from version 5.19" | ||
| 3398 | |||
| 3399 | CVE_STATUS[CVE-2022-49581] = "fixed-version: Fixed from version 5.19" | ||
| 3400 | |||
| 3401 | CVE_STATUS[CVE-2022-49582] = "fixed-version: Fixed from version 5.19" | ||
| 3402 | |||
| 3403 | CVE_STATUS[CVE-2022-49583] = "fixed-version: Fixed from version 5.19" | ||
| 3404 | |||
| 3405 | CVE_STATUS[CVE-2022-49584] = "fixed-version: Fixed from version 5.19" | ||
| 3406 | |||
| 3407 | CVE_STATUS[CVE-2022-49585] = "fixed-version: Fixed from version 5.19" | ||
| 3408 | |||
| 3409 | CVE_STATUS[CVE-2022-49586] = "fixed-version: Fixed from version 5.19" | ||
| 3410 | |||
| 3411 | CVE_STATUS[CVE-2022-49587] = "fixed-version: Fixed from version 5.19" | ||
| 3412 | |||
| 3413 | CVE_STATUS[CVE-2022-49588] = "fixed-version: Fixed from version 5.19" | ||
| 3414 | |||
| 3415 | CVE_STATUS[CVE-2022-49589] = "fixed-version: Fixed from version 5.19" | ||
| 3416 | |||
| 3417 | CVE_STATUS[CVE-2022-49590] = "fixed-version: Fixed from version 5.19" | ||
| 3418 | |||
| 3419 | CVE_STATUS[CVE-2022-49591] = "fixed-version: Fixed from version 5.19" | ||
| 3420 | |||
| 3421 | CVE_STATUS[CVE-2022-49592] = "fixed-version: Fixed from version 5.19" | ||
| 3422 | |||
| 3423 | CVE_STATUS[CVE-2022-49593] = "fixed-version: Fixed from version 5.19" | ||
| 3424 | |||
| 3425 | CVE_STATUS[CVE-2022-49594] = "fixed-version: Fixed from version 5.19" | ||
| 3426 | |||
| 3427 | CVE_STATUS[CVE-2022-49595] = "fixed-version: Fixed from version 5.19" | ||
| 3428 | |||
| 3429 | CVE_STATUS[CVE-2022-49596] = "fixed-version: Fixed from version 5.19" | ||
| 3430 | |||
| 3431 | CVE_STATUS[CVE-2022-49597] = "fixed-version: Fixed from version 5.19" | ||
| 3432 | |||
| 3433 | CVE_STATUS[CVE-2022-49598] = "fixed-version: Fixed from version 5.19" | ||
| 3434 | |||
| 3435 | CVE_STATUS[CVE-2022-49599] = "fixed-version: Fixed from version 5.19" | ||
| 3436 | |||
| 3437 | CVE_STATUS[CVE-2022-49600] = "fixed-version: Fixed from version 5.19" | ||
| 3438 | |||
| 3439 | CVE_STATUS[CVE-2022-49601] = "fixed-version: Fixed from version 5.19" | ||
| 3440 | |||
| 3441 | CVE_STATUS[CVE-2022-49602] = "fixed-version: Fixed from version 5.19" | ||
| 3442 | |||
| 3443 | CVE_STATUS[CVE-2022-49603] = "fixed-version: Fixed from version 5.19" | ||
| 3444 | |||
| 3445 | CVE_STATUS[CVE-2022-49604] = "fixed-version: Fixed from version 5.19" | ||
| 3446 | |||
| 3447 | CVE_STATUS[CVE-2022-49605] = "fixed-version: Fixed from version 5.19" | ||
| 3448 | |||
| 3449 | CVE_STATUS[CVE-2022-49606] = "fixed-version: Fixed from version 5.19" | ||
| 3450 | |||
| 3451 | CVE_STATUS[CVE-2022-49607] = "fixed-version: Fixed from version 5.19" | ||
| 3452 | |||
| 3453 | CVE_STATUS[CVE-2022-49608] = "fixed-version: Fixed from version 5.19" | ||
| 3454 | |||
| 3455 | CVE_STATUS[CVE-2022-49609] = "fixed-version: Fixed from version 5.19" | ||
| 3456 | |||
| 3457 | CVE_STATUS[CVE-2022-49610] = "fixed-version: Fixed from version 5.19" | ||
| 3458 | |||
| 3459 | CVE_STATUS[CVE-2022-49611] = "fixed-version: Fixed from version 5.19" | ||
| 3460 | |||
| 3461 | CVE_STATUS[CVE-2022-49612] = "fixed-version: Fixed from version 5.19" | ||
| 3462 | |||
| 3463 | CVE_STATUS[CVE-2022-49613] = "fixed-version: Fixed from version 5.19" | ||
| 3464 | |||
| 3465 | CVE_STATUS[CVE-2022-49615] = "fixed-version: Fixed from version 5.19" | ||
| 3466 | |||
| 3467 | CVE_STATUS[CVE-2022-49616] = "fixed-version: Fixed from version 5.19" | ||
| 3468 | |||
| 3469 | CVE_STATUS[CVE-2022-49617] = "fixed-version: Fixed from version 5.19" | ||
| 3470 | |||
| 3471 | CVE_STATUS[CVE-2022-49618] = "fixed-version: Fixed from version 5.19" | ||
| 3472 | |||
| 3473 | CVE_STATUS[CVE-2022-49619] = "fixed-version: Fixed from version 5.19" | ||
| 3474 | |||
| 3475 | CVE_STATUS[CVE-2022-49620] = "fixed-version: Fixed from version 5.19" | ||
| 3476 | |||
| 3477 | CVE_STATUS[CVE-2022-49621] = "fixed-version: Fixed from version 5.19" | ||
| 3478 | |||
| 3479 | CVE_STATUS[CVE-2022-49622] = "fixed-version: Fixed from version 5.19" | ||
| 3480 | |||
| 3481 | CVE_STATUS[CVE-2022-49623] = "fixed-version: Fixed from version 5.19" | ||
| 3482 | |||
| 3483 | CVE_STATUS[CVE-2022-49624] = "fixed-version: Fixed from version 5.19" | ||
| 3484 | |||
| 3485 | CVE_STATUS[CVE-2022-49625] = "fixed-version: Fixed from version 5.19" | ||
| 3486 | |||
| 3487 | CVE_STATUS[CVE-2022-49626] = "fixed-version: Fixed from version 5.19" | ||
| 3488 | |||
| 3489 | CVE_STATUS[CVE-2022-49627] = "fixed-version: Fixed from version 5.19" | ||
| 3490 | |||
| 3491 | CVE_STATUS[CVE-2022-49628] = "fixed-version: Fixed from version 5.19" | ||
| 3492 | |||
| 3493 | CVE_STATUS[CVE-2022-49629] = "fixed-version: Fixed from version 5.19" | ||
| 3494 | |||
| 3495 | CVE_STATUS[CVE-2022-49630] = "fixed-version: Fixed from version 5.19" | ||
| 3496 | |||
| 3497 | CVE_STATUS[CVE-2022-49631] = "fixed-version: Fixed from version 5.19" | ||
| 3498 | |||
| 3499 | CVE_STATUS[CVE-2022-49632] = "fixed-version: Fixed from version 5.19" | ||
| 3500 | |||
| 3501 | CVE_STATUS[CVE-2022-49633] = "fixed-version: Fixed from version 5.19" | ||
| 3502 | |||
| 3503 | CVE_STATUS[CVE-2022-49634] = "fixed-version: Fixed from version 5.19" | ||
| 3504 | |||
| 3505 | CVE_STATUS[CVE-2022-49635] = "fixed-version: Fixed from version 5.19" | ||
| 3506 | |||
| 3507 | CVE_STATUS[CVE-2022-49636] = "fixed-version: Fixed from version 5.19" | ||
| 3508 | |||
| 3509 | CVE_STATUS[CVE-2022-49637] = "fixed-version: Fixed from version 5.19" | ||
| 3510 | |||
| 3511 | CVE_STATUS[CVE-2022-49638] = "fixed-version: Fixed from version 5.19" | ||
| 3512 | |||
| 3513 | CVE_STATUS[CVE-2022-49639] = "fixed-version: Fixed from version 5.19" | ||
| 3514 | |||
| 3515 | CVE_STATUS[CVE-2022-49640] = "fixed-version: Fixed from version 5.19" | ||
| 3516 | |||
| 3517 | CVE_STATUS[CVE-2022-49641] = "fixed-version: Fixed from version 5.19" | ||
| 3518 | |||
| 3519 | CVE_STATUS[CVE-2022-49642] = "fixed-version: Fixed from version 5.19" | ||
| 3520 | |||
| 3521 | CVE_STATUS[CVE-2022-49643] = "fixed-version: Fixed from version 5.19" | ||
| 3522 | |||
| 3523 | CVE_STATUS[CVE-2022-49644] = "fixed-version: Fixed from version 5.19" | ||
| 3524 | |||
| 3525 | CVE_STATUS[CVE-2022-49645] = "fixed-version: Fixed from version 5.19" | ||
| 3526 | |||
| 3527 | CVE_STATUS[CVE-2022-49646] = "fixed-version: Fixed from version 5.19" | ||
| 3528 | |||
| 3529 | CVE_STATUS[CVE-2022-49647] = "fixed-version: Fixed from version 5.19" | ||
| 3530 | |||
| 3531 | CVE_STATUS[CVE-2022-49648] = "fixed-version: Fixed from version 5.19" | ||
| 3532 | |||
| 3533 | CVE_STATUS[CVE-2022-49649] = "fixed-version: Fixed from version 5.19" | ||
| 3534 | |||
| 3535 | CVE_STATUS[CVE-2022-49650] = "fixed-version: Fixed from version 5.19" | ||
| 3536 | |||
| 3537 | CVE_STATUS[CVE-2022-49651] = "fixed-version: Fixed from version 5.19" | ||
| 3538 | |||
| 3539 | CVE_STATUS[CVE-2022-49652] = "fixed-version: Fixed from version 5.19" | ||
| 3540 | |||
| 3541 | CVE_STATUS[CVE-2022-49653] = "fixed-version: Fixed from version 5.19" | ||
| 3542 | |||
| 3543 | CVE_STATUS[CVE-2022-49654] = "fixed-version: Fixed from version 5.19" | ||
| 3544 | |||
| 3545 | CVE_STATUS[CVE-2022-49655] = "fixed-version: Fixed from version 5.19" | ||
| 3546 | |||
| 3547 | CVE_STATUS[CVE-2022-49656] = "fixed-version: Fixed from version 5.19" | ||
| 3548 | |||
| 3549 | CVE_STATUS[CVE-2022-49657] = "fixed-version: Fixed from version 5.19" | ||
| 3550 | |||
| 3551 | CVE_STATUS[CVE-2022-49658] = "fixed-version: Fixed from version 5.19" | ||
| 3552 | |||
| 3553 | CVE_STATUS[CVE-2022-49659] = "fixed-version: Fixed from version 5.19" | ||
| 3554 | |||
| 3555 | CVE_STATUS[CVE-2022-49661] = "fixed-version: Fixed from version 5.19" | ||
| 3556 | |||
| 3557 | CVE_STATUS[CVE-2022-49662] = "fixed-version: Fixed from version 5.19" | ||
| 3558 | |||
| 3559 | CVE_STATUS[CVE-2022-49663] = "fixed-version: Fixed from version 5.19" | ||
| 3560 | |||
| 3561 | CVE_STATUS[CVE-2022-49664] = "fixed-version: Fixed from version 5.19" | ||
| 3562 | |||
| 3563 | CVE_STATUS[CVE-2022-49665] = "fixed-version: Fixed from version 5.19" | ||
| 3564 | |||
| 3565 | CVE_STATUS[CVE-2022-49666] = "fixed-version: Fixed from version 5.19" | ||
| 3566 | |||
| 3567 | CVE_STATUS[CVE-2022-49667] = "fixed-version: Fixed from version 5.19" | ||
| 3568 | |||
| 3569 | CVE_STATUS[CVE-2022-49668] = "fixed-version: Fixed from version 5.19" | ||
| 3570 | |||
| 3571 | CVE_STATUS[CVE-2022-49669] = "fixed-version: Fixed from version 5.19" | ||
| 3572 | |||
| 3573 | CVE_STATUS[CVE-2022-49670] = "fixed-version: Fixed from version 5.19" | ||
| 3574 | |||
| 3575 | CVE_STATUS[CVE-2022-49671] = "fixed-version: Fixed from version 5.19" | ||
| 3576 | |||
| 3577 | CVE_STATUS[CVE-2022-49672] = "fixed-version: Fixed from version 5.19" | ||
| 3578 | |||
| 3579 | CVE_STATUS[CVE-2022-49673] = "fixed-version: Fixed from version 5.19" | ||
| 3580 | |||
| 3581 | CVE_STATUS[CVE-2022-49674] = "fixed-version: Fixed from version 5.19" | ||
| 3582 | |||
| 3583 | CVE_STATUS[CVE-2022-49675] = "fixed-version: Fixed from version 5.19" | ||
| 3584 | |||
| 3585 | CVE_STATUS[CVE-2022-49676] = "fixed-version: Fixed from version 5.19" | ||
| 3586 | |||
| 3587 | CVE_STATUS[CVE-2022-49677] = "fixed-version: Fixed from version 5.19" | ||
| 3588 | |||
| 3589 | CVE_STATUS[CVE-2022-49678] = "fixed-version: Fixed from version 5.19" | ||
| 3590 | |||
| 3591 | CVE_STATUS[CVE-2022-49679] = "fixed-version: Fixed from version 5.19" | ||
| 3592 | |||
| 3593 | CVE_STATUS[CVE-2022-49680] = "fixed-version: Fixed from version 5.19" | ||
| 3594 | |||
| 3595 | CVE_STATUS[CVE-2022-49681] = "fixed-version: Fixed from version 5.19" | ||
| 3596 | |||
| 3597 | CVE_STATUS[CVE-2022-49682] = "fixed-version: Fixed from version 5.19" | ||
| 3598 | |||
| 3599 | CVE_STATUS[CVE-2022-49683] = "fixed-version: Fixed from version 5.19" | ||
| 3600 | |||
| 3601 | CVE_STATUS[CVE-2022-49684] = "fixed-version: Fixed from version 5.19" | ||
| 3602 | |||
| 3603 | CVE_STATUS[CVE-2022-49685] = "fixed-version: Fixed from version 5.19" | ||
| 3604 | |||
| 3605 | CVE_STATUS[CVE-2022-49686] = "fixed-version: Fixed from version 5.19" | ||
| 3606 | |||
| 3607 | CVE_STATUS[CVE-2022-49687] = "fixed-version: Fixed from version 5.19" | ||
| 3608 | |||
| 3609 | CVE_STATUS[CVE-2022-49688] = "fixed-version: Fixed from version 5.19" | ||
| 3610 | |||
| 3611 | CVE_STATUS[CVE-2022-49691] = "fixed-version: Fixed from version 5.19" | ||
| 3612 | |||
| 3613 | CVE_STATUS[CVE-2022-49692] = "fixed-version: Fixed from version 5.19" | ||
| 3614 | |||
| 3615 | CVE_STATUS[CVE-2022-49693] = "fixed-version: Fixed from version 5.19" | ||
| 3616 | |||
| 3617 | CVE_STATUS[CVE-2022-49694] = "fixed-version: Fixed from version 5.19" | ||
| 3618 | |||
| 3619 | CVE_STATUS[CVE-2022-49695] = "fixed-version: Fixed from version 5.19" | ||
| 3620 | |||
| 3621 | CVE_STATUS[CVE-2022-49696] = "fixed-version: Fixed from version 5.19" | ||
| 3622 | |||
| 3623 | CVE_STATUS[CVE-2022-49697] = "fixed-version: Fixed from version 5.19" | ||
| 3624 | |||
| 3625 | CVE_STATUS[CVE-2022-49698] = "fixed-version: Fixed from version 5.19" | ||
| 3626 | |||
| 3627 | CVE_STATUS[CVE-2022-49699] = "fixed-version: Fixed from version 5.19" | ||
| 3628 | |||
| 3629 | CVE_STATUS[CVE-2022-49700] = "fixed-version: Fixed from version 5.19" | ||
| 3630 | |||
| 3631 | CVE_STATUS[CVE-2022-49701] = "fixed-version: Fixed from version 5.19" | ||
| 3632 | |||
| 3633 | CVE_STATUS[CVE-2022-49702] = "fixed-version: Fixed from version 5.19" | ||
| 3634 | |||
| 3635 | CVE_STATUS[CVE-2022-49703] = "fixed-version: Fixed from version 5.19" | ||
| 3636 | |||
| 3637 | CVE_STATUS[CVE-2022-49704] = "fixed-version: Fixed from version 5.19" | ||
| 3638 | |||
| 3639 | CVE_STATUS[CVE-2022-49705] = "fixed-version: Fixed from version 5.19" | ||
| 3640 | |||
| 3641 | CVE_STATUS[CVE-2022-49706] = "fixed-version: Fixed from version 5.19" | ||
| 3642 | |||
| 3643 | CVE_STATUS[CVE-2022-49707] = "fixed-version: Fixed from version 5.19" | ||
| 3644 | |||
| 3645 | CVE_STATUS[CVE-2022-49708] = "fixed-version: Fixed from version 5.19" | ||
| 3646 | |||
| 3647 | CVE_STATUS[CVE-2022-49709] = "fixed-version: Fixed from version 5.19" | ||
| 3648 | |||
| 3649 | CVE_STATUS[CVE-2022-49710] = "fixed-version: Fixed from version 5.19" | ||
| 3650 | |||
| 3651 | CVE_STATUS[CVE-2022-49711] = "fixed-version: Fixed from version 5.19" | ||
| 3652 | |||
| 3653 | CVE_STATUS[CVE-2022-49712] = "fixed-version: Fixed from version 5.19" | ||
| 3654 | |||
| 3655 | CVE_STATUS[CVE-2022-49713] = "fixed-version: Fixed from version 5.19" | ||
| 3656 | |||
| 3657 | CVE_STATUS[CVE-2022-49714] = "fixed-version: Fixed from version 5.19" | ||
| 3658 | |||
| 3659 | CVE_STATUS[CVE-2022-49715] = "fixed-version: Fixed from version 5.19" | ||
| 3660 | |||
| 3661 | CVE_STATUS[CVE-2022-49716] = "fixed-version: Fixed from version 5.19" | ||
| 3662 | |||
| 3663 | CVE_STATUS[CVE-2022-49717] = "fixed-version: Fixed from version 5.19" | ||
| 3664 | |||
| 3665 | CVE_STATUS[CVE-2022-49718] = "fixed-version: Fixed from version 5.19" | ||
| 3666 | |||
| 3667 | CVE_STATUS[CVE-2022-49719] = "fixed-version: Fixed from version 5.19" | ||
| 3668 | |||
| 3669 | CVE_STATUS[CVE-2022-49720] = "fixed-version: Fixed from version 5.19" | ||
| 3670 | |||
| 3671 | CVE_STATUS[CVE-2022-49721] = "fixed-version: Fixed from version 5.19" | ||
| 3672 | |||
| 3673 | CVE_STATUS[CVE-2022-49722] = "fixed-version: Fixed from version 5.19" | ||
| 3674 | |||
| 3675 | CVE_STATUS[CVE-2022-49723] = "fixed-version: Fixed from version 5.19" | ||
| 3676 | |||
| 3677 | CVE_STATUS[CVE-2022-49724] = "fixed-version: Fixed from version 5.19" | ||
| 3678 | |||
| 3679 | CVE_STATUS[CVE-2022-49725] = "fixed-version: Fixed from version 5.19" | ||
| 3680 | |||
| 3681 | CVE_STATUS[CVE-2022-49726] = "fixed-version: Fixed from version 5.19" | ||
| 3682 | |||
| 3683 | CVE_STATUS[CVE-2022-49727] = "fixed-version: Fixed from version 5.19" | ||
| 3684 | |||
| 3685 | CVE_STATUS[CVE-2022-49728] = "fixed-version: Fixed from version 5.19" | ||
| 3686 | |||
| 3687 | CVE_STATUS[CVE-2022-49729] = "fixed-version: Fixed from version 5.19" | ||
| 3688 | |||
| 3689 | CVE_STATUS[CVE-2022-49730] = "fixed-version: Fixed from version 5.19" | ||
| 3690 | |||
| 3691 | CVE_STATUS[CVE-2022-49731] = "fixed-version: Fixed from version 5.19" | ||
| 3692 | |||
| 3693 | CVE_STATUS[CVE-2022-49732] = "fixed-version: Fixed from version 5.19" | ||
| 3694 | |||
| 3695 | CVE_STATUS[CVE-2022-49733] = "fixed-version: Fixed from version 6.0" | ||
| 3696 | |||
| 3697 | CVE_STATUS[CVE-2022-49738] = "fixed-version: Fixed from version 6.2" | ||
| 3698 | |||
| 3699 | CVE_STATUS[CVE-2022-49739] = "fixed-version: Fixed from version 6.2" | ||
| 3700 | |||
| 3701 | CVE_STATUS[CVE-2022-49740] = "fixed-version: Fixed from version 6.2" | ||
| 3702 | |||
| 3703 | CVE_STATUS[CVE-2022-49741] = "fixed-version: Fixed from version 6.2" | ||
| 3704 | |||
| 3705 | CVE_STATUS[CVE-2022-49742] = "fixed-version: Fixed from version 6.2" | ||
| 3706 | |||
| 3707 | CVE_STATUS[CVE-2022-49743] = "fixed-version: Fixed from version 6.2" | ||
| 3708 | |||
| 3709 | CVE_STATUS[CVE-2022-49744] = "fixed-version: Fixed from version 6.2" | ||
| 3710 | |||
| 3711 | CVE_STATUS[CVE-2022-49745] = "fixed-version: Fixed from version 6.2" | ||
| 3712 | |||
| 3713 | CVE_STATUS[CVE-2022-49746] = "fixed-version: Fixed from version 6.2" | ||
| 3714 | |||
| 3715 | CVE_STATUS[CVE-2022-49747] = "fixed-version: Fixed from version 6.2" | ||
| 3716 | |||
| 3717 | CVE_STATUS[CVE-2022-49748] = "fixed-version: Fixed from version 6.2" | ||
| 3718 | |||
| 3719 | CVE_STATUS[CVE-2022-49749] = "fixed-version: Fixed from version 6.2" | ||
| 3720 | |||
| 3721 | CVE_STATUS[CVE-2022-49750] = "fixed-version: Fixed from version 6.2" | ||
| 3722 | |||
| 3723 | CVE_STATUS[CVE-2022-49751] = "fixed-version: Fixed from version 6.2" | ||
| 3724 | |||
| 3725 | CVE_STATUS[CVE-2022-49752] = "fixed-version: Fixed from version 6.2" | ||
| 3726 | |||
| 3727 | CVE_STATUS[CVE-2022-49753] = "fixed-version: Fixed from version 6.2" | ||
| 3728 | |||
| 3729 | CVE_STATUS[CVE-2022-49754] = "fixed-version: Fixed from version 6.2" | ||
| 3730 | |||
| 3731 | CVE_STATUS[CVE-2022-49755] = "fixed-version: Fixed from version 6.2" | ||
| 3732 | |||
| 3733 | CVE_STATUS[CVE-2022-49756] = "fixed-version: Fixed from version 6.2" | ||
| 3734 | |||
| 3735 | CVE_STATUS[CVE-2022-49757] = "fixed-version: Fixed from version 6.2" | ||
| 3736 | |||
| 3737 | CVE_STATUS[CVE-2022-49758] = "fixed-version: Fixed from version 6.2" | ||
| 3738 | |||
| 3739 | CVE_STATUS[CVE-2022-49759] = "fixed-version: Fixed from version 6.2" | ||
| 3740 | |||
| 3741 | CVE_STATUS[CVE-2022-49760] = "fixed-version: Fixed from version 6.2" | ||
| 3742 | |||
| 3743 | CVE_STATUS[CVE-2022-49761] = "fixed-version: Fixed from version 6.2" | ||
| 3744 | |||
| 3745 | CVE_STATUS[CVE-2022-49762] = "fixed-version: Fixed from version 6.1" | ||
| 3746 | |||
| 3747 | CVE_STATUS[CVE-2022-49763] = "fixed-version: Fixed from version 6.1" | ||
| 3748 | |||
| 3749 | CVE_STATUS[CVE-2022-49764] = "fixed-version: Fixed from version 6.1" | ||
| 3750 | |||
| 3751 | CVE_STATUS[CVE-2022-49765] = "fixed-version: Fixed from version 6.1" | ||
| 3752 | |||
| 3753 | CVE_STATUS[CVE-2022-49766] = "fixed-version: Fixed from version 6.1" | ||
| 3754 | |||
| 3755 | CVE_STATUS[CVE-2022-49767] = "fixed-version: Fixed from version 6.1" | ||
| 3756 | |||
| 3757 | CVE_STATUS[CVE-2022-49768] = "fixed-version: Fixed from version 6.1" | ||
| 3758 | |||
| 3759 | CVE_STATUS[CVE-2022-49769] = "fixed-version: Fixed from version 6.1" | ||
| 3760 | |||
| 3761 | CVE_STATUS[CVE-2022-49770] = "fixed-version: Fixed from version 6.1" | ||
| 3762 | |||
| 3763 | CVE_STATUS[CVE-2022-49771] = "fixed-version: Fixed from version 6.1" | ||
| 3764 | |||
| 3765 | CVE_STATUS[CVE-2022-49772] = "fixed-version: Fixed from version 6.1" | ||
| 3766 | |||
| 3767 | CVE_STATUS[CVE-2022-49773] = "fixed-version: Fixed from version 6.1" | ||
| 3768 | |||
| 3769 | CVE_STATUS[CVE-2022-49774] = "fixed-version: Fixed from version 6.1" | ||
| 3770 | |||
| 3771 | CVE_STATUS[CVE-2022-49775] = "fixed-version: Fixed from version 6.1" | ||
| 3772 | |||
| 3773 | CVE_STATUS[CVE-2022-49776] = "fixed-version: Fixed from version 6.1" | ||
| 3774 | |||
| 3775 | CVE_STATUS[CVE-2022-49777] = "fixed-version: Fixed from version 6.1" | ||
| 3776 | |||
| 3777 | CVE_STATUS[CVE-2022-49778] = "fixed-version: Fixed from version 6.1" | ||
| 3778 | |||
| 3779 | CVE_STATUS[CVE-2022-49779] = "fixed-version: Fixed from version 6.1" | ||
| 3780 | |||
| 3781 | CVE_STATUS[CVE-2022-49780] = "fixed-version: Fixed from version 6.1" | ||
| 3782 | |||
| 3783 | CVE_STATUS[CVE-2022-49781] = "fixed-version: Fixed from version 6.1" | ||
| 3784 | |||
| 3785 | CVE_STATUS[CVE-2022-49782] = "fixed-version: Fixed from version 6.0.10" | ||
| 3786 | |||
| 3787 | CVE_STATUS[CVE-2022-49783] = "fixed-version: Fixed from version 6.1" | ||
| 3788 | |||
| 3789 | CVE_STATUS[CVE-2022-49784] = "fixed-version: Fixed from version 6.1" | ||
| 3790 | |||
| 3791 | CVE_STATUS[CVE-2022-49785] = "fixed-version: Fixed from version 6.1" | ||
| 3792 | |||
| 3793 | CVE_STATUS[CVE-2022-49786] = "fixed-version: Fixed from version 6.1" | ||
| 3794 | |||
| 3795 | CVE_STATUS[CVE-2022-49787] = "fixed-version: Fixed from version 6.1" | ||
| 3796 | |||
| 3797 | CVE_STATUS[CVE-2022-49788] = "fixed-version: Fixed from version 6.1" | ||
| 3798 | |||
| 3799 | CVE_STATUS[CVE-2022-49789] = "fixed-version: Fixed from version 6.1" | ||
| 3800 | |||
| 3801 | CVE_STATUS[CVE-2022-49790] = "fixed-version: Fixed from version 6.1" | ||
| 3802 | |||
| 3803 | CVE_STATUS[CVE-2022-49791] = "fixed-version: Fixed from version 6.1" | ||
| 3804 | |||
| 3805 | CVE_STATUS[CVE-2022-49792] = "fixed-version: Fixed from version 6.1" | ||
| 3806 | |||
| 3807 | CVE_STATUS[CVE-2022-49793] = "fixed-version: Fixed from version 6.1" | ||
| 3808 | |||
| 3809 | CVE_STATUS[CVE-2022-49794] = "fixed-version: Fixed from version 6.1" | ||
| 3810 | |||
| 3811 | CVE_STATUS[CVE-2022-49795] = "fixed-version: Fixed from version 6.1" | ||
| 3812 | |||
| 3813 | CVE_STATUS[CVE-2022-49796] = "fixed-version: Fixed from version 6.1" | ||
| 3814 | |||
| 3815 | CVE_STATUS[CVE-2022-49797] = "fixed-version: Fixed from version 6.1" | ||
| 3816 | |||
| 3817 | CVE_STATUS[CVE-2022-49798] = "fixed-version: Fixed from version 6.1" | ||
| 3818 | |||
| 3819 | CVE_STATUS[CVE-2022-49799] = "fixed-version: Fixed from version 6.1" | ||
| 3820 | |||
| 3821 | CVE_STATUS[CVE-2022-49800] = "fixed-version: Fixed from version 6.1" | ||
| 3822 | |||
| 3823 | CVE_STATUS[CVE-2022-49801] = "fixed-version: Fixed from version 6.1" | ||
| 3824 | |||
| 3825 | CVE_STATUS[CVE-2022-49802] = "fixed-version: Fixed from version 6.1" | ||
| 3826 | |||
| 3827 | CVE_STATUS[CVE-2022-49803] = "fixed-version: Fixed from version 6.1" | ||
| 3828 | |||
| 3829 | CVE_STATUS[CVE-2022-49804] = "fixed-version: Fixed from version 6.1" | ||
| 3830 | |||
| 3831 | CVE_STATUS[CVE-2022-49805] = "fixed-version: Fixed from version 6.1" | ||
| 3832 | |||
| 3833 | CVE_STATUS[CVE-2022-49806] = "fixed-version: Fixed from version 6.1" | ||
| 3834 | |||
| 3835 | CVE_STATUS[CVE-2022-49807] = "fixed-version: Fixed from version 6.1" | ||
| 3836 | |||
| 3837 | CVE_STATUS[CVE-2022-49808] = "fixed-version: Fixed from version 6.1" | ||
| 3838 | |||
| 3839 | CVE_STATUS[CVE-2022-49809] = "fixed-version: Fixed from version 6.1" | ||
| 3840 | |||
| 3841 | CVE_STATUS[CVE-2022-49810] = "fixed-version: Fixed from version 6.1" | ||
| 3842 | |||
| 3843 | CVE_STATUS[CVE-2022-49811] = "fixed-version: Fixed from version 6.1" | ||
| 3844 | |||
| 3845 | CVE_STATUS[CVE-2022-49812] = "fixed-version: Fixed from version 6.1" | ||
| 3846 | |||
| 3847 | CVE_STATUS[CVE-2022-49813] = "fixed-version: Fixed from version 6.1" | ||
| 3848 | |||
| 3849 | CVE_STATUS[CVE-2022-49814] = "fixed-version: Fixed from version 6.1" | ||
| 3850 | |||
| 3851 | CVE_STATUS[CVE-2022-49815] = "fixed-version: Fixed from version 6.1" | ||
| 3852 | |||
| 3853 | CVE_STATUS[CVE-2022-49817] = "fixed-version: Fixed from version 6.1" | ||
| 3854 | |||
| 3855 | CVE_STATUS[CVE-2022-49818] = "fixed-version: Fixed from version 6.0.10" | ||
| 3856 | |||
| 3857 | CVE_STATUS[CVE-2022-49819] = "fixed-version: Fixed from version 6.1" | ||
| 3858 | |||
| 3859 | CVE_STATUS[CVE-2022-49820] = "fixed-version: Fixed from version 6.1" | ||
| 3860 | |||
| 3861 | CVE_STATUS[CVE-2022-49821] = "fixed-version: Fixed from version 6.1" | ||
| 3862 | |||
| 3863 | CVE_STATUS[CVE-2022-49822] = "fixed-version: Fixed from version 6.1" | ||
| 3864 | |||
| 3865 | CVE_STATUS[CVE-2022-49823] = "fixed-version: Fixed from version 6.1" | ||
| 3866 | |||
| 3867 | CVE_STATUS[CVE-2022-49824] = "fixed-version: Fixed from version 6.1" | ||
| 3868 | |||
| 3869 | CVE_STATUS[CVE-2022-49825] = "fixed-version: Fixed from version 6.1" | ||
| 3870 | |||
| 3871 | CVE_STATUS[CVE-2022-49826] = "fixed-version: Fixed from version 6.1" | ||
| 3872 | |||
| 3873 | CVE_STATUS[CVE-2022-49827] = "fixed-version: Fixed from version 6.1" | ||
| 3874 | |||
| 3875 | CVE_STATUS[CVE-2022-49828] = "fixed-version: Fixed from version 6.1" | ||
| 3876 | |||
| 3877 | CVE_STATUS[CVE-2022-49829] = "fixed-version: Fixed from version 6.1" | ||
| 3878 | |||
| 3879 | CVE_STATUS[CVE-2022-49830] = "fixed-version: Fixed from version 6.1" | ||
| 3880 | |||
| 3881 | CVE_STATUS[CVE-2022-49831] = "fixed-version: Fixed from version 6.1" | ||
| 3882 | |||
| 3883 | CVE_STATUS[CVE-2022-49832] = "fixed-version: Fixed from version 6.1" | ||
| 3884 | |||
| 3885 | CVE_STATUS[CVE-2022-49833] = "fixed-version: Fixed from version 6.1" | ||
| 3886 | |||
| 3887 | CVE_STATUS[CVE-2022-49834] = "fixed-version: Fixed from version 6.1" | ||
| 3888 | |||
| 3889 | CVE_STATUS[CVE-2022-49835] = "fixed-version: Fixed from version 6.1" | ||
| 3890 | |||
| 3891 | CVE_STATUS[CVE-2022-49836] = "fixed-version: Fixed from version 6.1" | ||
| 3892 | |||
| 3893 | CVE_STATUS[CVE-2022-49837] = "fixed-version: Fixed from version 6.1" | ||
| 3894 | |||
| 3895 | CVE_STATUS[CVE-2022-49838] = "fixed-version: Fixed from version 6.1" | ||
| 3896 | |||
| 3897 | CVE_STATUS[CVE-2022-49839] = "fixed-version: Fixed from version 6.1" | ||
| 3898 | |||
| 3899 | CVE_STATUS[CVE-2022-49840] = "fixed-version: Fixed from version 6.1" | ||
| 3900 | |||
| 3901 | CVE_STATUS[CVE-2022-49841] = "fixed-version: Fixed from version 6.1" | ||
| 3902 | |||
| 3903 | CVE_STATUS[CVE-2022-49842] = "fixed-version: Fixed from version 6.1" | ||
| 3904 | |||
| 3905 | CVE_STATUS[CVE-2022-49844] = "fixed-version: Fixed from version 6.1" | ||
| 3906 | |||
| 3907 | CVE_STATUS[CVE-2022-49845] = "fixed-version: Fixed from version 6.1" | ||
| 3908 | |||
| 3909 | CVE_STATUS[CVE-2022-49846] = "fixed-version: Fixed from version 6.1" | ||
| 3910 | |||
| 3911 | CVE_STATUS[CVE-2022-49847] = "fixed-version: Fixed from version 6.1" | ||
| 3912 | |||
| 3913 | CVE_STATUS[CVE-2022-49848] = "fixed-version: Fixed from version 6.1" | ||
| 3914 | |||
| 3915 | CVE_STATUS[CVE-2022-49849] = "fixed-version: Fixed from version 6.1" | ||
| 3916 | |||
| 3917 | CVE_STATUS[CVE-2022-49850] = "fixed-version: Fixed from version 6.1" | ||
| 3918 | |||
| 3919 | CVE_STATUS[CVE-2022-49851] = "fixed-version: Fixed from version 6.1" | ||
| 3920 | |||
| 3921 | CVE_STATUS[CVE-2022-49852] = "fixed-version: Fixed from version 6.1" | ||
| 3922 | |||
| 3923 | CVE_STATUS[CVE-2022-49853] = "fixed-version: Fixed from version 6.1" | ||
| 3924 | |||
| 3925 | CVE_STATUS[CVE-2022-49854] = "fixed-version: Fixed from version 6.1" | ||
| 3926 | |||
| 3927 | CVE_STATUS[CVE-2022-49855] = "fixed-version: Fixed from version 6.1" | ||
| 3928 | |||
| 3929 | CVE_STATUS[CVE-2022-49857] = "fixed-version: Fixed from version 6.1" | ||
| 3930 | |||
| 3931 | CVE_STATUS[CVE-2022-49858] = "fixed-version: Fixed from version 6.1" | ||
| 3932 | |||
| 3933 | CVE_STATUS[CVE-2022-49859] = "fixed-version: Fixed from version 6.1" | ||
| 3934 | |||
| 3935 | CVE_STATUS[CVE-2022-49860] = "fixed-version: Fixed from version 6.1" | ||
| 3936 | |||
| 3937 | CVE_STATUS[CVE-2022-49861] = "fixed-version: Fixed from version 6.1" | ||
| 3938 | |||
| 3939 | CVE_STATUS[CVE-2022-49862] = "fixed-version: Fixed from version 6.1" | ||
| 3940 | |||
| 3941 | CVE_STATUS[CVE-2022-49863] = "fixed-version: Fixed from version 6.1" | ||
| 3942 | |||
| 3943 | CVE_STATUS[CVE-2022-49864] = "fixed-version: Fixed from version 6.1" | ||
| 3944 | |||
| 3945 | CVE_STATUS[CVE-2022-49865] = "fixed-version: Fixed from version 6.1" | ||
| 3946 | |||
| 3947 | CVE_STATUS[CVE-2022-49866] = "fixed-version: Fixed from version 6.1" | ||
| 3948 | |||
| 3949 | CVE_STATUS[CVE-2022-49867] = "fixed-version: Fixed from version 6.1" | ||
| 3950 | |||
| 3951 | CVE_STATUS[CVE-2022-49868] = "fixed-version: Fixed from version 6.1" | ||
| 3952 | |||
| 3953 | CVE_STATUS[CVE-2022-49869] = "fixed-version: Fixed from version 6.1" | ||
| 3954 | |||
| 3955 | CVE_STATUS[CVE-2022-49870] = "fixed-version: Fixed from version 6.1" | ||
| 3956 | |||
| 3957 | CVE_STATUS[CVE-2022-49871] = "fixed-version: Fixed from version 6.1" | ||
| 3958 | |||
| 3959 | CVE_STATUS[CVE-2022-49872] = "fixed-version: Fixed from version 6.1" | ||
| 3960 | |||
| 3961 | CVE_STATUS[CVE-2022-49873] = "fixed-version: Fixed from version 6.1" | ||
| 3962 | |||
| 3963 | CVE_STATUS[CVE-2022-49874] = "fixed-version: Fixed from version 6.1" | ||
| 3964 | |||
| 3965 | CVE_STATUS[CVE-2022-49875] = "fixed-version: Fixed from version 6.1" | ||
| 3966 | |||
| 3967 | CVE_STATUS[CVE-2022-49876] = "fixed-version: Fixed from version 6.1" | ||
| 3968 | |||
| 3969 | CVE_STATUS[CVE-2022-49877] = "fixed-version: Fixed from version 6.1" | ||
| 3970 | |||
| 3971 | CVE_STATUS[CVE-2022-49878] = "fixed-version: Fixed from version 6.1" | ||
| 3972 | |||
| 3973 | CVE_STATUS[CVE-2022-49879] = "fixed-version: Fixed from version 6.1" | ||
| 3974 | |||
| 3975 | CVE_STATUS[CVE-2022-49880] = "fixed-version: Fixed from version 6.1" | ||
| 3976 | |||
| 3977 | CVE_STATUS[CVE-2022-49881] = "fixed-version: Fixed from version 6.1" | ||
| 3978 | |||
| 3979 | CVE_STATUS[CVE-2022-49882] = "fixed-version: Fixed from version 6.1" | ||
| 3980 | |||
| 3981 | CVE_STATUS[CVE-2022-49883] = "fixed-version: Fixed from version 6.1" | ||
| 3982 | |||
| 3983 | CVE_STATUS[CVE-2022-49884] = "fixed-version: Fixed from version 6.1" | ||
| 3984 | |||
| 3985 | CVE_STATUS[CVE-2022-49885] = "fixed-version: Fixed from version 6.1" | ||
| 3986 | |||
| 3987 | CVE_STATUS[CVE-2022-49886] = "fixed-version: Fixed from version 6.1" | ||
| 3988 | |||
| 3989 | CVE_STATUS[CVE-2022-49887] = "fixed-version: Fixed from version 6.1" | ||
| 3990 | |||
| 3991 | CVE_STATUS[CVE-2022-49888] = "fixed-version: Fixed from version 6.1" | ||
| 3992 | |||
| 3993 | CVE_STATUS[CVE-2022-49889] = "fixed-version: Fixed from version 6.0.8" | ||
| 3994 | |||
| 3995 | CVE_STATUS[CVE-2022-49890] = "fixed-version: Fixed from version 6.1" | ||
| 3996 | |||
| 3997 | CVE_STATUS[CVE-2022-49891] = "fixed-version: Fixed from version 6.1" | ||
| 3998 | |||
| 3999 | CVE_STATUS[CVE-2022-49892] = "fixed-version: Fixed from version 6.1" | ||
| 4000 | |||
| 4001 | CVE_STATUS[CVE-2022-49893] = "fixed-version: Fixed from version 6.1" | ||
| 4002 | |||
| 4003 | CVE_STATUS[CVE-2022-49894] = "fixed-version: Fixed from version 6.1" | ||
| 4004 | |||
| 4005 | CVE_STATUS[CVE-2022-49895] = "fixed-version: Fixed from version 6.1" | ||
| 4006 | |||
| 4007 | CVE_STATUS[CVE-2022-49896] = "fixed-version: Fixed from version 6.1" | ||
| 4008 | |||
| 4009 | CVE_STATUS[CVE-2022-49898] = "fixed-version: Fixed from version 6.1" | ||
| 4010 | |||
| 4011 | CVE_STATUS[CVE-2022-49899] = "fixed-version: Fixed from version 6.1" | ||
| 4012 | |||
| 4013 | CVE_STATUS[CVE-2022-49900] = "fixed-version: Fixed from version 6.1" | ||
| 4014 | |||
| 4015 | CVE_STATUS[CVE-2022-49901] = "fixed-version: Fixed from version 6.1" | ||
| 4016 | |||
| 4017 | CVE_STATUS[CVE-2022-49902] = "fixed-version: Fixed from version 6.1" | ||
| 4018 | |||
| 4019 | CVE_STATUS[CVE-2022-49903] = "fixed-version: Fixed from version 6.1" | ||
| 4020 | |||
| 4021 | CVE_STATUS[CVE-2022-49904] = "fixed-version: Fixed from version 6.1" | ||
| 4022 | |||
| 4023 | CVE_STATUS[CVE-2022-49905] = "fixed-version: Fixed from version 6.1" | ||
| 4024 | |||
| 4025 | CVE_STATUS[CVE-2022-49906] = "fixed-version: Fixed from version 6.1" | ||
| 4026 | |||
| 4027 | CVE_STATUS[CVE-2022-49907] = "fixed-version: Fixed from version 6.1" | ||
| 4028 | |||
| 4029 | CVE_STATUS[CVE-2022-49908] = "fixed-version: Fixed from version 6.1" | ||
| 4030 | |||
| 4031 | CVE_STATUS[CVE-2022-49909] = "fixed-version: Fixed from version 6.1" | ||
| 4032 | |||
| 4033 | CVE_STATUS[CVE-2022-49910] = "fixed-version: Fixed from version 6.1" | ||
| 4034 | |||
| 4035 | CVE_STATUS[CVE-2022-49911] = "fixed-version: Fixed from version 6.1" | ||
| 4036 | |||
| 4037 | CVE_STATUS[CVE-2022-49912] = "fixed-version: Fixed from version 6.1" | ||
| 4038 | |||
| 4039 | CVE_STATUS[CVE-2022-49913] = "fixed-version: Fixed from version 6.1" | ||
| 4040 | |||
| 4041 | CVE_STATUS[CVE-2022-49914] = "fixed-version: Fixed from version 6.1" | ||
| 4042 | |||
| 4043 | CVE_STATUS[CVE-2022-49915] = "fixed-version: Fixed from version 6.1" | ||
| 4044 | |||
| 4045 | CVE_STATUS[CVE-2022-49916] = "fixed-version: Fixed from version 6.1" | ||
| 4046 | |||
| 4047 | CVE_STATUS[CVE-2022-49917] = "fixed-version: Fixed from version 6.1" | ||
| 4048 | |||
| 4049 | CVE_STATUS[CVE-2022-49918] = "fixed-version: Fixed from version 6.1" | ||
| 4050 | |||
| 4051 | CVE_STATUS[CVE-2022-49919] = "fixed-version: Fixed from version 6.1" | ||
| 4052 | |||
| 4053 | CVE_STATUS[CVE-2022-49920] = "fixed-version: Fixed from version 6.1" | ||
| 4054 | |||
| 4055 | CVE_STATUS[CVE-2022-49921] = "fixed-version: Fixed from version 6.1" | ||
| 4056 | |||
| 4057 | CVE_STATUS[CVE-2022-49922] = "fixed-version: Fixed from version 6.1" | ||
| 4058 | |||
| 4059 | CVE_STATUS[CVE-2022-49923] = "fixed-version: Fixed from version 6.1" | ||
| 4060 | |||
| 4061 | CVE_STATUS[CVE-2022-49924] = "fixed-version: Fixed from version 6.1" | ||
| 4062 | |||
| 4063 | CVE_STATUS[CVE-2022-49925] = "fixed-version: Fixed from version 6.1" | ||
| 4064 | |||
| 4065 | CVE_STATUS[CVE-2022-49926] = "fixed-version: Fixed from version 6.1" | ||
| 4066 | |||
| 4067 | CVE_STATUS[CVE-2022-49927] = "fixed-version: Fixed from version 6.1" | ||
| 4068 | |||
| 4069 | CVE_STATUS[CVE-2022-49928] = "fixed-version: Fixed from version 6.1" | ||
| 4070 | |||
| 4071 | CVE_STATUS[CVE-2022-49929] = "fixed-version: Fixed from version 6.1" | ||
| 4072 | |||
| 4073 | CVE_STATUS[CVE-2022-49930] = "fixed-version: Fixed from version 6.1" | ||
| 4074 | |||
| 4075 | CVE_STATUS[CVE-2022-49931] = "fixed-version: Fixed from version 6.1" | ||
| 4076 | |||
| 4077 | CVE_STATUS[CVE-2022-49932] = "fixed-version: Fixed from version 6.3" | ||
| 4078 | |||
| 4079 | CVE_STATUS[CVE-2022-49934] = "fixed-version: Fixed from version 6.0" | ||
| 4080 | |||
| 4081 | CVE_STATUS[CVE-2022-49935] = "fixed-version: Fixed from version 6.0" | ||
| 4082 | |||
| 4083 | CVE_STATUS[CVE-2022-49936] = "fixed-version: Fixed from version 6.0" | ||
| 4084 | |||
| 4085 | CVE_STATUS[CVE-2022-49937] = "fixed-version: Fixed from version 6.0" | ||
| 4086 | |||
| 4087 | CVE_STATUS[CVE-2022-49938] = "fixed-version: Fixed from version 6.0" | ||
| 4088 | |||
| 4089 | CVE_STATUS[CVE-2022-49939] = "fixed-version: Fixed from version 6.0" | ||
| 4090 | |||
| 4091 | CVE_STATUS[CVE-2022-49940] = "fixed-version: Fixed from version 5.19.8" | ||
| 4092 | |||
| 4093 | CVE_STATUS[CVE-2022-49942] = "fixed-version: Fixed from version 6.0" | ||
| 4094 | |||
| 4095 | CVE_STATUS[CVE-2022-49943] = "fixed-version: Fixed from version 5.19.8" | ||
| 4096 | |||
| 4097 | CVE_STATUS[CVE-2022-49944] = "fixed-version: Fixed from version 6.0" | ||
| 4098 | |||
| 4099 | CVE_STATUS[CVE-2022-49945] = "fixed-version: Fixed from version 6.0" | ||
| 4100 | |||
| 4101 | CVE_STATUS[CVE-2022-49946] = "fixed-version: Fixed from version 6.0" | ||
| 4102 | |||
| 4103 | CVE_STATUS[CVE-2022-49947] = "fixed-version: Fixed from version 5.19.8" | ||
| 4104 | |||
| 4105 | CVE_STATUS[CVE-2022-49948] = "fixed-version: Fixed from version 6.0" | ||
| 4106 | |||
| 4107 | CVE_STATUS[CVE-2022-49949] = "fixed-version: Fixed from version 6.0" | ||
| 4108 | |||
| 4109 | CVE_STATUS[CVE-2022-49950] = "fixed-version: Fixed from version 6.0" | ||
| 4110 | |||
| 4111 | CVE_STATUS[CVE-2022-49951] = "fixed-version: Fixed from version 6.0" | ||
| 4112 | |||
| 4113 | CVE_STATUS[CVE-2022-49952] = "fixed-version: Fixed from version 6.0" | ||
| 4114 | |||
| 4115 | CVE_STATUS[CVE-2022-49953] = "fixed-version: Fixed from version 6.0" | ||
| 4116 | |||
| 4117 | CVE_STATUS[CVE-2022-49954] = "fixed-version: Fixed from version 6.0" | ||
| 4118 | |||
| 4119 | CVE_STATUS[CVE-2022-49955] = "fixed-version: Fixed from version 6.0" | ||
| 4120 | |||
| 4121 | CVE_STATUS[CVE-2022-49956] = "fixed-version: Fixed from version 6.0" | ||
| 4122 | |||
| 4123 | CVE_STATUS[CVE-2022-49957] = "fixed-version: Fixed from version 6.0" | ||
| 4124 | |||
| 4125 | CVE_STATUS[CVE-2022-49958] = "fixed-version: Fixed from version 6.0" | ||
| 4126 | |||
| 4127 | CVE_STATUS[CVE-2022-49959] = "fixed-version: Fixed from version 6.0" | ||
| 4128 | |||
| 4129 | CVE_STATUS[CVE-2022-49960] = "fixed-version: Fixed from version 6.0" | ||
| 4130 | |||
| 4131 | CVE_STATUS[CVE-2022-49961] = "fixed-version: Fixed from version 6.0" | ||
| 4132 | |||
| 4133 | CVE_STATUS[CVE-2022-49962] = "fixed-version: Fixed from version 6.0" | ||
| 4134 | |||
| 4135 | CVE_STATUS[CVE-2022-49963] = "fixed-version: Fixed from version 6.0" | ||
| 4136 | |||
| 4137 | CVE_STATUS[CVE-2022-49964] = "fixed-version: Fixed from version 5.19.7" | ||
| 4138 | |||
| 4139 | CVE_STATUS[CVE-2022-49965] = "fixed-version: Fixed from version 6.0" | ||
| 4140 | |||
| 4141 | CVE_STATUS[CVE-2022-49966] = "fixed-version: Fixed from version 6.0" | ||
| 4142 | |||
| 4143 | CVE_STATUS[CVE-2022-49967] = "fixed-version: Fixed from version 6.0" | ||
| 4144 | |||
| 4145 | CVE_STATUS[CVE-2022-49968] = "fixed-version: Fixed from version 6.0" | ||
| 4146 | |||
| 4147 | CVE_STATUS[CVE-2022-49969] = "fixed-version: Fixed from version 6.0" | ||
| 4148 | |||
| 4149 | CVE_STATUS[CVE-2022-49970] = "fixed-version: Fixed from version 5.19.8" | ||
| 4150 | |||
| 4151 | CVE_STATUS[CVE-2022-49971] = "fixed-version: Fixed from version 6.0" | ||
| 4152 | |||
| 4153 | CVE_STATUS[CVE-2022-49972] = "fixed-version: Fixed from version 6.0" | ||
| 4154 | |||
| 4155 | CVE_STATUS[CVE-2022-49973] = "fixed-version: Fixed from version 5.19.8" | ||
| 4156 | |||
| 4157 | CVE_STATUS[CVE-2022-49974] = "fixed-version: Fixed from version 6.0" | ||
| 4158 | |||
| 4159 | CVE_STATUS[CVE-2022-49975] = "fixed-version: Fixed from version 6.0" | ||
| 4160 | |||
| 4161 | CVE_STATUS[CVE-2022-49976] = "fixed-version: Fixed from version 6.0" | ||
| 4162 | |||
| 4163 | CVE_STATUS[CVE-2022-49977] = "fixed-version: Fixed from version 6.0" | ||
| 4164 | |||
| 4165 | CVE_STATUS[CVE-2022-49978] = "fixed-version: Fixed from version 6.0" | ||
| 4166 | |||
| 4167 | CVE_STATUS[CVE-2022-49979] = "fixed-version: Fixed from version 6.0" | ||
| 4168 | |||
| 4169 | CVE_STATUS[CVE-2022-49980] = "fixed-version: Fixed from version 6.0" | ||
| 4170 | |||
| 4171 | CVE_STATUS[CVE-2022-49981] = "fixed-version: Fixed from version 6.0" | ||
| 4172 | |||
| 4173 | CVE_STATUS[CVE-2022-49982] = "fixed-version: Fixed from version 6.0" | ||
| 4174 | |||
| 4175 | CVE_STATUS[CVE-2022-49983] = "fixed-version: Fixed from version 6.0" | ||
| 4176 | |||
| 4177 | CVE_STATUS[CVE-2022-49984] = "fixed-version: Fixed from version 6.0" | ||
| 4178 | |||
| 4179 | CVE_STATUS[CVE-2022-49985] = "fixed-version: Fixed from version 6.0" | ||
| 4180 | |||
| 4181 | CVE_STATUS[CVE-2022-49986] = "fixed-version: Fixed from version 6.0" | ||
| 4182 | |||
| 4183 | CVE_STATUS[CVE-2022-49987] = "fixed-version: Fixed from version 6.0" | ||
| 4184 | |||
| 4185 | CVE_STATUS[CVE-2022-49989] = "fixed-version: Fixed from version 6.0" | ||
| 4186 | |||
| 4187 | CVE_STATUS[CVE-2022-49990] = "fixed-version: Fixed from version 6.0" | ||
| 4188 | |||
| 4189 | CVE_STATUS[CVE-2022-49991] = "fixed-version: Fixed from version 6.0" | ||
| 4190 | |||
| 4191 | CVE_STATUS[CVE-2022-49992] = "fixed-version: Fixed from version 6.0" | ||
| 4192 | |||
| 4193 | CVE_STATUS[CVE-2022-49993] = "fixed-version: Fixed from version 6.0" | ||
| 4194 | |||
| 4195 | CVE_STATUS[CVE-2022-49994] = "fixed-version: Fixed from version 6.0" | ||
| 4196 | |||
| 4197 | CVE_STATUS[CVE-2022-49995] = "fixed-version: Fixed from version 6.0" | ||
| 4198 | |||
| 4199 | CVE_STATUS[CVE-2022-49996] = "fixed-version: Fixed from version 6.0" | ||
| 4200 | |||
| 4201 | CVE_STATUS[CVE-2022-49997] = "fixed-version: Fixed from version 6.0" | ||
| 4202 | |||
| 4203 | CVE_STATUS[CVE-2022-49998] = "fixed-version: Fixed from version 6.0" | ||
| 4204 | |||
| 4205 | CVE_STATUS[CVE-2022-49999] = "fixed-version: Fixed from version 6.0" | ||
| 4206 | |||
| 4207 | CVE_STATUS[CVE-2022-50000] = "fixed-version: Fixed from version 6.0" | ||
| 4208 | |||
| 4209 | CVE_STATUS[CVE-2022-50001] = "fixed-version: Fixed from version 6.0" | ||
| 4210 | |||
| 4211 | CVE_STATUS[CVE-2022-50002] = "fixed-version: Fixed from version 6.0" | ||
| 4212 | |||
| 4213 | CVE_STATUS[CVE-2022-50003] = "fixed-version: Fixed from version 6.0" | ||
| 4214 | |||
| 4215 | CVE_STATUS[CVE-2022-50004] = "fixed-version: Fixed from version 6.0" | ||
| 4216 | |||
| 4217 | CVE_STATUS[CVE-2022-50005] = "fixed-version: Fixed from version 6.0" | ||
| 4218 | |||
| 4219 | CVE_STATUS[CVE-2022-50006] = "fixed-version: Fixed from version 6.0" | ||
| 4220 | |||
| 4221 | CVE_STATUS[CVE-2022-50007] = "fixed-version: Fixed from version 6.0" | ||
| 4222 | |||
| 4223 | CVE_STATUS[CVE-2022-50008] = "fixed-version: Fixed from version 6.0" | ||
| 4224 | |||
| 4225 | CVE_STATUS[CVE-2022-50009] = "fixed-version: Fixed from version 6.0" | ||
| 4226 | |||
| 4227 | CVE_STATUS[CVE-2022-50010] = "fixed-version: Fixed from version 6.0" | ||
| 4228 | |||
| 4229 | CVE_STATUS[CVE-2022-50011] = "fixed-version: Fixed from version 6.0" | ||
| 4230 | |||
| 4231 | CVE_STATUS[CVE-2022-50012] = "fixed-version: Fixed from version 6.0" | ||
| 4232 | |||
| 4233 | CVE_STATUS[CVE-2022-50013] = "fixed-version: Fixed from version 6.0" | ||
| 4234 | |||
| 4235 | CVE_STATUS[CVE-2022-50014] = "fixed-version: Fixed from version 6.0" | ||
| 4236 | |||
| 4237 | CVE_STATUS[CVE-2022-50015] = "fixed-version: Fixed from version 6.0" | ||
| 4238 | |||
| 4239 | CVE_STATUS[CVE-2022-50016] = "fixed-version: Fixed from version 6.0" | ||
| 4240 | |||
| 4241 | CVE_STATUS[CVE-2022-50017] = "fixed-version: Fixed from version 6.0" | ||
| 4242 | |||
| 4243 | CVE_STATUS[CVE-2022-50019] = "fixed-version: Fixed from version 6.0" | ||
| 4244 | |||
| 4245 | CVE_STATUS[CVE-2022-50020] = "fixed-version: Fixed from version 6.0" | ||
| 4246 | |||
| 4247 | CVE_STATUS[CVE-2022-50021] = "fixed-version: Fixed from version 6.0" | ||
| 4248 | |||
| 4249 | CVE_STATUS[CVE-2022-50022] = "fixed-version: Fixed from version 6.0" | ||
| 4250 | |||
| 4251 | CVE_STATUS[CVE-2022-50023] = "fixed-version: Fixed from version 6.0" | ||
| 4252 | |||
| 4253 | CVE_STATUS[CVE-2022-50024] = "fixed-version: Fixed from version 6.0" | ||
| 4254 | |||
| 4255 | CVE_STATUS[CVE-2022-50025] = "fixed-version: Fixed from version 6.0" | ||
| 4256 | |||
| 4257 | CVE_STATUS[CVE-2022-50026] = "fixed-version: Fixed from version 6.0" | ||
| 4258 | |||
| 4259 | CVE_STATUS[CVE-2022-50027] = "fixed-version: Fixed from version 6.0" | ||
| 4260 | |||
| 4261 | CVE_STATUS[CVE-2022-50028] = "fixed-version: Fixed from version 6.0" | ||
| 4262 | |||
| 4263 | CVE_STATUS[CVE-2022-50029] = "fixed-version: Fixed from version 6.0" | ||
| 4264 | |||
| 4265 | CVE_STATUS[CVE-2022-50030] = "fixed-version: Fixed from version 6.0" | ||
| 4266 | |||
| 4267 | CVE_STATUS[CVE-2022-50032] = "fixed-version: Fixed from version 6.0" | ||
| 4268 | |||
| 4269 | CVE_STATUS[CVE-2022-50033] = "fixed-version: Fixed from version 6.0" | ||
| 4270 | |||
| 4271 | CVE_STATUS[CVE-2022-50034] = "fixed-version: Fixed from version 6.0" | ||
| 4272 | |||
| 4273 | CVE_STATUS[CVE-2022-50035] = "fixed-version: Fixed from version 6.0" | ||
| 4274 | |||
| 4275 | CVE_STATUS[CVE-2022-50036] = "fixed-version: Fixed from version 6.0" | ||
| 4276 | |||
| 4277 | CVE_STATUS[CVE-2022-50037] = "fixed-version: Fixed from version 6.0" | ||
| 4278 | |||
| 4279 | CVE_STATUS[CVE-2022-50038] = "fixed-version: Fixed from version 6.0" | ||
| 4280 | |||
| 4281 | CVE_STATUS[CVE-2022-50039] = "fixed-version: Fixed from version 6.0" | ||
| 4282 | |||
| 4283 | CVE_STATUS[CVE-2022-50040] = "fixed-version: Fixed from version 6.0" | ||
| 4284 | |||
| 4285 | CVE_STATUS[CVE-2022-50041] = "fixed-version: Fixed from version 6.0" | ||
| 4286 | |||
| 4287 | CVE_STATUS[CVE-2022-50042] = "fixed-version: Fixed from version 6.0" | ||
| 4288 | |||
| 4289 | CVE_STATUS[CVE-2022-50043] = "fixed-version: Fixed from version 6.0" | ||
| 4290 | |||
| 4291 | CVE_STATUS[CVE-2022-50044] = "fixed-version: Fixed from version 6.0" | ||
| 4292 | |||
| 4293 | CVE_STATUS[CVE-2022-50045] = "fixed-version: Fixed from version 5.19.4" | ||
| 4294 | |||
| 4295 | CVE_STATUS[CVE-2022-50046] = "fixed-version: Fixed from version 6.0" | ||
| 4296 | |||
| 4297 | CVE_STATUS[CVE-2022-50047] = "fixed-version: Fixed from version 6.0" | ||
| 4298 | |||
| 4299 | CVE_STATUS[CVE-2022-50048] = "fixed-version: Fixed from version 6.0" | ||
| 4300 | |||
| 4301 | CVE_STATUS[CVE-2022-50049] = "fixed-version: Fixed from version 6.0" | ||
| 4302 | |||
| 4303 | CVE_STATUS[CVE-2022-50050] = "fixed-version: Fixed from version 6.0" | ||
| 4304 | |||
| 4305 | CVE_STATUS[CVE-2022-50051] = "fixed-version: Fixed from version 6.0" | ||
| 4306 | |||
| 4307 | CVE_STATUS[CVE-2022-50052] = "fixed-version: Fixed from version 6.0" | ||
| 4308 | |||
| 4309 | CVE_STATUS[CVE-2022-50053] = "fixed-version: Fixed from version 6.0" | ||
| 4310 | |||
| 4311 | CVE_STATUS[CVE-2022-50054] = "fixed-version: Fixed from version 6.0" | ||
| 4312 | |||
| 4313 | CVE_STATUS[CVE-2022-50055] = "fixed-version: Fixed from version 6.0" | ||
| 4314 | |||
| 4315 | CVE_STATUS[CVE-2022-50056] = "fixed-version: Fixed from version 6.0" | ||
| 4316 | |||
| 4317 | CVE_STATUS[CVE-2022-50057] = "fixed-version: Fixed from version 6.0" | ||
| 4318 | |||
| 4319 | CVE_STATUS[CVE-2022-50058] = "fixed-version: Fixed from version 6.0" | ||
| 4320 | |||
| 4321 | CVE_STATUS[CVE-2022-50059] = "fixed-version: Fixed from version 6.0" | ||
| 4322 | |||
| 4323 | CVE_STATUS[CVE-2022-50060] = "fixed-version: Fixed from version 6.0" | ||
| 4324 | |||
| 4325 | CVE_STATUS[CVE-2022-50061] = "fixed-version: Fixed from version 6.0" | ||
| 4326 | |||
| 4327 | CVE_STATUS[CVE-2022-50062] = "fixed-version: Fixed from version 6.0" | ||
| 4328 | |||
| 4329 | CVE_STATUS[CVE-2022-50063] = "fixed-version: Fixed from version 6.0" | ||
| 4330 | |||
| 4331 | CVE_STATUS[CVE-2022-50064] = "fixed-version: Fixed from version 6.0" | ||
| 4332 | |||
| 4333 | CVE_STATUS[CVE-2022-50065] = "fixed-version: Fixed from version 6.0" | ||
| 4334 | |||
| 4335 | CVE_STATUS[CVE-2022-50066] = "fixed-version: Fixed from version 6.0" | ||
| 4336 | |||
| 4337 | CVE_STATUS[CVE-2022-50067] = "fixed-version: Fixed from version 6.0" | ||
| 4338 | |||
| 4339 | CVE_STATUS[CVE-2022-50068] = "fixed-version: Fixed from version 6.0" | ||
| 4340 | |||
| 4341 | CVE_STATUS[CVE-2022-50069] = "fixed-version: Fixed from version 6.0" | ||
| 4342 | |||
| 4343 | CVE_STATUS[CVE-2022-50070] = "fixed-version: Fixed from version 6.0" | ||
| 4344 | |||
| 4345 | CVE_STATUS[CVE-2022-50071] = "fixed-version: Fixed from version 6.0" | ||
| 4346 | |||
| 4347 | CVE_STATUS[CVE-2022-50072] = "fixed-version: Fixed from version 6.0" | ||
| 4348 | |||
| 4349 | CVE_STATUS[CVE-2022-50073] = "fixed-version: Fixed from version 6.0" | ||
| 4350 | |||
| 4351 | CVE_STATUS[CVE-2022-50074] = "fixed-version: Fixed from version 6.0" | ||
| 4352 | |||
| 4353 | CVE_STATUS[CVE-2022-50075] = "fixed-version: Fixed from version 6.0" | ||
| 4354 | |||
| 4355 | CVE_STATUS[CVE-2022-50076] = "fixed-version: Fixed from version 6.0" | ||
| 4356 | |||
| 4357 | CVE_STATUS[CVE-2022-50077] = "fixed-version: Fixed from version 6.0" | ||
| 4358 | |||
| 4359 | CVE_STATUS[CVE-2022-50078] = "fixed-version: Fixed from version 6.0" | ||
| 4360 | |||
| 4361 | CVE_STATUS[CVE-2022-50079] = "fixed-version: Fixed from version 6.0" | ||
| 4362 | |||
| 4363 | CVE_STATUS[CVE-2022-50080] = "fixed-version: Fixed from version 6.0" | ||
| 4364 | |||
| 4365 | CVE_STATUS[CVE-2022-50082] = "fixed-version: Fixed from version 6.0" | ||
| 4366 | |||
| 4367 | CVE_STATUS[CVE-2022-50084] = "fixed-version: Fixed from version 6.0" | ||
| 4368 | |||
| 4369 | CVE_STATUS[CVE-2022-50085] = "fixed-version: Fixed from version 6.0" | ||
| 4370 | |||
| 4371 | CVE_STATUS[CVE-2022-50086] = "fixed-version: Fixed from version 6.0" | ||
| 4372 | |||
| 4373 | CVE_STATUS[CVE-2022-50087] = "fixed-version: Fixed from version 6.0" | ||
| 4374 | |||
| 4375 | CVE_STATUS[CVE-2022-50088] = "fixed-version: Fixed from version 6.0" | ||
| 4376 | |||
| 4377 | CVE_STATUS[CVE-2022-50089] = "fixed-version: Fixed from version 6.0" | ||
| 4378 | |||
| 4379 | CVE_STATUS[CVE-2022-50090] = "fixed-version: Fixed from version 6.0" | ||
| 4380 | |||
| 4381 | CVE_STATUS[CVE-2022-50091] = "fixed-version: Fixed from version 6.0" | ||
| 4382 | |||
| 4383 | CVE_STATUS[CVE-2022-50092] = "fixed-version: Fixed from version 6.0" | ||
| 4384 | |||
| 4385 | CVE_STATUS[CVE-2022-50093] = "fixed-version: Fixed from version 6.0" | ||
| 4386 | |||
| 4387 | CVE_STATUS[CVE-2022-50094] = "fixed-version: Fixed from version 6.0" | ||
| 4388 | |||
| 4389 | CVE_STATUS[CVE-2022-50095] = "fixed-version: Fixed from version 6.0" | ||
| 4390 | |||
| 4391 | CVE_STATUS[CVE-2022-50096] = "fixed-version: Fixed from version 6.0" | ||
| 4392 | |||
| 4393 | CVE_STATUS[CVE-2022-50097] = "fixed-version: Fixed from version 6.0" | ||
| 4394 | |||
| 4395 | CVE_STATUS[CVE-2022-50098] = "fixed-version: Fixed from version 6.0" | ||
| 4396 | |||
| 4397 | CVE_STATUS[CVE-2022-50099] = "fixed-version: Fixed from version 6.0" | ||
| 4398 | |||
| 4399 | CVE_STATUS[CVE-2022-50100] = "fixed-version: Fixed from version 6.0" | ||
| 4400 | |||
| 4401 | CVE_STATUS[CVE-2022-50101] = "fixed-version: Fixed from version 6.0" | ||
| 4402 | |||
| 4403 | CVE_STATUS[CVE-2022-50102] = "fixed-version: Fixed from version 6.0" | ||
| 4404 | |||
| 4405 | CVE_STATUS[CVE-2022-50103] = "fixed-version: Fixed from version 6.0" | ||
| 4406 | |||
| 4407 | CVE_STATUS[CVE-2022-50104] = "fixed-version: Fixed from version 6.0" | ||
| 4408 | |||
| 4409 | CVE_STATUS[CVE-2022-50105] = "fixed-version: Fixed from version 6.0" | ||
| 4410 | |||
| 4411 | CVE_STATUS[CVE-2022-50106] = "fixed-version: Fixed from version 6.0" | ||
| 4412 | |||
| 4413 | CVE_STATUS[CVE-2022-50107] = "fixed-version: Fixed from version 6.0" | ||
| 4414 | |||
| 4415 | CVE_STATUS[CVE-2022-50108] = "fixed-version: Fixed from version 6.0" | ||
| 4416 | |||
| 4417 | CVE_STATUS[CVE-2022-50109] = "fixed-version: Fixed from version 6.0" | ||
| 4418 | |||
| 4419 | CVE_STATUS[CVE-2022-50110] = "fixed-version: Fixed from version 6.0" | ||
| 4420 | |||
| 4421 | CVE_STATUS[CVE-2022-50111] = "fixed-version: Fixed from version 6.0" | ||
| 4422 | |||
| 4423 | CVE_STATUS[CVE-2022-50112] = "fixed-version: Fixed from version 6.0" | ||
| 4424 | |||
| 4425 | CVE_STATUS[CVE-2022-50113] = "fixed-version: Fixed from version 6.0" | ||
| 4426 | |||
| 4427 | CVE_STATUS[CVE-2022-50114] = "fixed-version: Fixed from version 6.0" | ||
| 4428 | |||
| 4429 | CVE_STATUS[CVE-2022-50115] = "fixed-version: Fixed from version 6.0" | ||
| 4430 | |||
| 4431 | CVE_STATUS[CVE-2022-50116] = "fixed-version: Fixed from version 6.0" | ||
| 4432 | |||
| 4433 | CVE_STATUS[CVE-2022-50117] = "fixed-version: Fixed from version 6.0" | ||
| 4434 | |||
| 4435 | CVE_STATUS[CVE-2022-50118] = "fixed-version: Fixed from version 6.0" | ||
| 4436 | |||
| 4437 | CVE_STATUS[CVE-2022-50119] = "fixed-version: Fixed from version 6.0" | ||
| 4438 | |||
| 4439 | CVE_STATUS[CVE-2022-50120] = "fixed-version: Fixed from version 6.0" | ||
| 4440 | |||
| 4441 | CVE_STATUS[CVE-2022-50121] = "fixed-version: Fixed from version 6.0" | ||
| 4442 | |||
| 4443 | CVE_STATUS[CVE-2022-50122] = "fixed-version: Fixed from version 6.0" | ||
| 4444 | |||
| 4445 | CVE_STATUS[CVE-2022-50123] = "fixed-version: Fixed from version 6.0" | ||
| 4446 | |||
| 4447 | CVE_STATUS[CVE-2022-50124] = "fixed-version: Fixed from version 6.0" | ||
| 4448 | |||
| 4449 | CVE_STATUS[CVE-2022-50125] = "fixed-version: Fixed from version 6.0" | ||
| 4450 | |||
| 4451 | CVE_STATUS[CVE-2022-50126] = "fixed-version: Fixed from version 6.0" | ||
| 4452 | |||
| 4453 | CVE_STATUS[CVE-2022-50127] = "fixed-version: Fixed from version 6.0" | ||
| 4454 | |||
| 4455 | CVE_STATUS[CVE-2022-50129] = "fixed-version: Fixed from version 6.0" | ||
| 4456 | |||
| 4457 | CVE_STATUS[CVE-2022-50130] = "fixed-version: Fixed from version 6.0" | ||
| 4458 | |||
| 4459 | CVE_STATUS[CVE-2022-50131] = "fixed-version: Fixed from version 6.0" | ||
| 4460 | |||
| 4461 | CVE_STATUS[CVE-2022-50132] = "fixed-version: Fixed from version 6.0" | ||
| 4462 | |||
| 4463 | CVE_STATUS[CVE-2022-50133] = "fixed-version: Fixed from version 6.0" | ||
| 4464 | |||
| 4465 | CVE_STATUS[CVE-2022-50134] = "fixed-version: Fixed from version 6.0" | ||
| 4466 | |||
| 4467 | CVE_STATUS[CVE-2022-50135] = "fixed-version: Fixed from version 6.0" | ||
| 4468 | |||
| 4469 | CVE_STATUS[CVE-2022-50136] = "fixed-version: Fixed from version 6.0" | ||
| 4470 | |||
| 4471 | CVE_STATUS[CVE-2022-50137] = "fixed-version: Fixed from version 6.0" | ||
| 4472 | |||
| 4473 | CVE_STATUS[CVE-2022-50138] = "fixed-version: Fixed from version 6.0" | ||
| 4474 | |||
| 4475 | CVE_STATUS[CVE-2022-50139] = "fixed-version: Fixed from version 6.0" | ||
| 4476 | |||
| 4477 | CVE_STATUS[CVE-2022-50140] = "fixed-version: Fixed from version 6.0" | ||
| 4478 | |||
| 4479 | CVE_STATUS[CVE-2022-50141] = "fixed-version: Fixed from version 6.0" | ||
| 4480 | |||
| 4481 | CVE_STATUS[CVE-2022-50142] = "fixed-version: Fixed from version 6.0" | ||
| 4482 | |||
| 4483 | CVE_STATUS[CVE-2022-50143] = "fixed-version: Fixed from version 6.0" | ||
| 4484 | |||
| 4485 | CVE_STATUS[CVE-2022-50144] = "fixed-version: Fixed from version 6.0" | ||
| 4486 | |||
| 4487 | CVE_STATUS[CVE-2022-50145] = "fixed-version: Fixed from version 6.0" | ||
| 4488 | |||
| 4489 | CVE_STATUS[CVE-2022-50146] = "fixed-version: Fixed from version 6.0" | ||
| 4490 | |||
| 4491 | CVE_STATUS[CVE-2022-50147] = "fixed-version: Fixed from version 6.0" | ||
| 4492 | |||
| 4493 | CVE_STATUS[CVE-2022-50148] = "fixed-version: Fixed from version 6.0" | ||
| 4494 | |||
| 4495 | CVE_STATUS[CVE-2022-50149] = "fixed-version: Fixed from version 6.0" | ||
| 4496 | |||
| 4497 | CVE_STATUS[CVE-2022-50151] = "fixed-version: Fixed from version 6.0" | ||
| 4498 | |||
| 4499 | CVE_STATUS[CVE-2022-50152] = "fixed-version: Fixed from version 6.0" | ||
| 4500 | |||
| 4501 | CVE_STATUS[CVE-2022-50153] = "fixed-version: Fixed from version 6.0" | ||
| 4502 | |||
| 4503 | CVE_STATUS[CVE-2022-50154] = "fixed-version: Fixed from version 6.0" | ||
| 4504 | |||
| 4505 | CVE_STATUS[CVE-2022-50155] = "fixed-version: Fixed from version 6.0" | ||
| 4506 | |||
| 4507 | CVE_STATUS[CVE-2022-50156] = "fixed-version: Fixed from version 6.0" | ||
| 4508 | |||
| 4509 | CVE_STATUS[CVE-2022-50157] = "fixed-version: Fixed from version 6.0" | ||
| 4510 | |||
| 4511 | CVE_STATUS[CVE-2022-50158] = "fixed-version: Fixed from version 6.0" | ||
| 4512 | |||
| 4513 | CVE_STATUS[CVE-2022-50159] = "fixed-version: Fixed from version 6.0" | ||
| 4514 | |||
| 4515 | CVE_STATUS[CVE-2022-50160] = "fixed-version: Fixed from version 6.0" | ||
| 4516 | |||
| 4517 | CVE_STATUS[CVE-2022-50161] = "fixed-version: Fixed from version 6.0" | ||
| 4518 | |||
| 4519 | CVE_STATUS[CVE-2022-50162] = "fixed-version: Fixed from version 6.0" | ||
| 4520 | |||
| 4521 | CVE_STATUS[CVE-2022-50163] = "fixed-version: Fixed from version 6.0" | ||
| 4522 | |||
| 4523 | CVE_STATUS[CVE-2022-50164] = "fixed-version: Fixed from version 6.0" | ||
| 4524 | |||
| 4525 | CVE_STATUS[CVE-2022-50165] = "fixed-version: Fixed from version 6.0" | ||
| 4526 | |||
| 4527 | CVE_STATUS[CVE-2022-50166] = "fixed-version: Fixed from version 6.0" | ||
| 4528 | |||
| 4529 | CVE_STATUS[CVE-2022-50167] = "fixed-version: Fixed from version 6.0" | ||
| 4530 | |||
| 4531 | CVE_STATUS[CVE-2022-50168] = "fixed-version: Fixed from version 6.0" | ||
| 4532 | |||
| 4533 | CVE_STATUS[CVE-2022-50169] = "fixed-version: Fixed from version 6.0" | ||
| 4534 | |||
| 4535 | CVE_STATUS[CVE-2022-50170] = "fixed-version: Fixed from version 6.0" | ||
| 4536 | |||
| 4537 | CVE_STATUS[CVE-2022-50171] = "fixed-version: Fixed from version 6.0" | ||
| 4538 | |||
| 4539 | CVE_STATUS[CVE-2022-50172] = "fixed-version: Fixed from version 6.0" | ||
| 4540 | |||
| 4541 | CVE_STATUS[CVE-2022-50173] = "fixed-version: Fixed from version 6.0" | ||
| 4542 | |||
| 4543 | CVE_STATUS[CVE-2022-50174] = "fixed-version: Fixed from version 6.0" | ||
| 4544 | |||
| 4545 | CVE_STATUS[CVE-2022-50175] = "fixed-version: Fixed from version 6.0" | ||
| 4546 | |||
| 4547 | CVE_STATUS[CVE-2022-50176] = "fixed-version: Fixed from version 6.0" | ||
| 4548 | |||
| 4549 | CVE_STATUS[CVE-2022-50177] = "fixed-version: Fixed from version 6.0" | ||
| 4550 | |||
| 4551 | CVE_STATUS[CVE-2022-50178] = "fixed-version: Fixed from version 6.0" | ||
| 4552 | |||
| 4553 | CVE_STATUS[CVE-2022-50179] = "fixed-version: Fixed from version 6.0" | ||
| 4554 | |||
| 4555 | CVE_STATUS[CVE-2022-50181] = "fixed-version: Fixed from version 6.0" | ||
| 4556 | |||
| 4557 | CVE_STATUS[CVE-2022-50182] = "fixed-version: Fixed from version 6.0" | ||
| 4558 | |||
| 4559 | CVE_STATUS[CVE-2022-50183] = "fixed-version: Fixed from version 6.0" | ||
| 4560 | |||
| 4561 | CVE_STATUS[CVE-2022-50184] = "fixed-version: Fixed from version 6.0" | ||
| 4562 | |||
| 4563 | CVE_STATUS[CVE-2022-50185] = "fixed-version: Fixed from version 6.0" | ||
| 4564 | |||
| 4565 | CVE_STATUS[CVE-2022-50186] = "fixed-version: Fixed from version 6.0" | ||
| 4566 | |||
| 4567 | CVE_STATUS[CVE-2022-50187] = "fixed-version: Fixed from version 6.0" | ||
| 4568 | |||
| 4569 | CVE_STATUS[CVE-2022-50188] = "fixed-version: Fixed from version 6.0" | ||
| 4570 | |||
| 4571 | CVE_STATUS[CVE-2022-50189] = "fixed-version: Fixed from version 6.0" | ||
| 4572 | |||
| 4573 | CVE_STATUS[CVE-2022-50190] = "fixed-version: Fixed from version 6.0" | ||
| 4574 | |||
| 4575 | CVE_STATUS[CVE-2022-50191] = "fixed-version: Fixed from version 6.0" | ||
| 4576 | |||
| 4577 | CVE_STATUS[CVE-2022-50192] = "fixed-version: Fixed from version 6.0" | ||
| 4578 | |||
| 4579 | CVE_STATUS[CVE-2022-50193] = "fixed-version: Fixed from version 6.0" | ||
| 4580 | |||
| 4581 | CVE_STATUS[CVE-2022-50194] = "fixed-version: Fixed from version 6.0" | ||
| 4582 | |||
| 4583 | CVE_STATUS[CVE-2022-50195] = "fixed-version: Fixed from version 6.0" | ||
| 4584 | |||
| 4585 | CVE_STATUS[CVE-2022-50196] = "fixed-version: Fixed from version 6.0" | ||
| 4586 | |||
| 4587 | CVE_STATUS[CVE-2022-50197] = "fixed-version: Fixed from version 6.0" | ||
| 4588 | |||
| 4589 | CVE_STATUS[CVE-2022-50198] = "fixed-version: Fixed from version 6.0" | ||
| 4590 | |||
| 4591 | CVE_STATUS[CVE-2022-50199] = "fixed-version: Fixed from version 6.0" | ||
| 4592 | |||
| 4593 | CVE_STATUS[CVE-2022-50200] = "fixed-version: Fixed from version 6.0" | ||
| 4594 | |||
| 4595 | CVE_STATUS[CVE-2022-50201] = "fixed-version: Fixed from version 6.0" | ||
| 4596 | |||
| 4597 | CVE_STATUS[CVE-2022-50202] = "fixed-version: Fixed from version 6.0" | ||
| 4598 | |||
| 4599 | CVE_STATUS[CVE-2022-50203] = "fixed-version: Fixed from version 6.0" | ||
| 4600 | |||
| 4601 | CVE_STATUS[CVE-2022-50204] = "fixed-version: Fixed from version 6.0" | ||
| 4602 | |||
| 4603 | CVE_STATUS[CVE-2022-50205] = "fixed-version: Fixed from version 6.0" | ||
| 4604 | |||
| 4605 | CVE_STATUS[CVE-2022-50206] = "fixed-version: Fixed from version 6.0" | ||
| 4606 | |||
| 4607 | CVE_STATUS[CVE-2022-50207] = "fixed-version: Fixed from version 6.0" | ||
| 4608 | |||
| 4609 | CVE_STATUS[CVE-2022-50208] = "fixed-version: Fixed from version 6.0" | ||
| 4610 | |||
| 4611 | CVE_STATUS[CVE-2022-50209] = "fixed-version: Fixed from version 6.0" | ||
| 4612 | |||
| 4613 | CVE_STATUS[CVE-2022-50210] = "fixed-version: Fixed from version 6.0" | ||
| 4614 | |||
| 4615 | CVE_STATUS[CVE-2022-50211] = "fixed-version: Fixed from version 6.0" | ||
| 4616 | |||
| 4617 | CVE_STATUS[CVE-2022-50212] = "fixed-version: Fixed from version 6.0" | ||
| 4618 | |||
| 4619 | CVE_STATUS[CVE-2022-50213] = "fixed-version: Fixed from version 6.0" | ||
| 4620 | |||
| 4621 | CVE_STATUS[CVE-2022-50214] = "fixed-version: Fixed from version 6.0" | ||
| 4622 | |||
| 4623 | CVE_STATUS[CVE-2022-50215] = "fixed-version: Fixed from version 6.0" | ||
| 4624 | |||
| 4625 | CVE_STATUS[CVE-2022-50217] = "fixed-version: Fixed from version 6.0" | ||
| 4626 | |||
| 4627 | CVE_STATUS[CVE-2022-50218] = "fixed-version: Fixed from version 6.0" | ||
| 4628 | |||
| 4629 | CVE_STATUS[CVE-2022-50219] = "fixed-version: Fixed from version 6.0" | ||
| 4630 | |||
| 4631 | CVE_STATUS[CVE-2022-50220] = "fixed-version: Fixed from version 6.0" | ||
| 4632 | |||
| 4633 | CVE_STATUS[CVE-2022-50221] = "fixed-version: Fixed from version 6.0" | ||
| 4634 | |||
| 4635 | CVE_STATUS[CVE-2022-50222] = "fixed-version: Fixed from version 6.0" | ||
| 4636 | |||
| 4637 | CVE_STATUS[CVE-2022-50223] = "fixed-version: Fixed from version 6.0" | ||
| 4638 | |||
| 4639 | CVE_STATUS[CVE-2022-50224] = "fixed-version: Fixed from version 6.0" | ||
| 4640 | |||
| 4641 | CVE_STATUS[CVE-2022-50225] = "fixed-version: Fixed from version 6.0" | ||
| 4642 | |||
| 4643 | CVE_STATUS[CVE-2022-50226] = "fixed-version: Fixed from version 6.0" | ||
| 4644 | |||
| 4645 | CVE_STATUS[CVE-2022-50227] = "fixed-version: Fixed from version 6.0" | ||
| 4646 | |||
| 4647 | CVE_STATUS[CVE-2022-50228] = "fixed-version: Fixed from version 6.0" | ||
| 4648 | |||
| 4649 | CVE_STATUS[CVE-2022-50229] = "fixed-version: Fixed from version 6.0" | ||
| 4650 | |||
| 4651 | CVE_STATUS[CVE-2022-50230] = "fixed-version: Fixed from version 6.0" | ||
| 4652 | |||
| 4653 | CVE_STATUS[CVE-2022-50231] = "fixed-version: Fixed from version 6.0" | ||
| 4654 | |||
| 4655 | CVE_STATUS[CVE-2022-50232] = "fixed-version: Fixed from version 6.0" | ||
| 4656 | |||
| 4657 | CVE_STATUS[CVE-2022-50233] = "fixed-version: Fixed from version 6.0" | ||
| 4658 | |||
| 4659 | CVE_STATUS[CVE-2022-50234] = "fixed-version: Fixed from version 6.1" | ||
| 4660 | |||
| 4661 | CVE_STATUS[CVE-2022-50235] = "fixed-version: Fixed from version 6.1" | ||
| 4662 | |||
| 4663 | CVE_STATUS[CVE-2022-50236] = "fixed-version: Fixed from version 6.2" | ||
| 4664 | |||
| 4665 | CVE_STATUS[CVE-2022-50239] = "fixed-version: Fixed from version 6.1" | ||
| 4666 | |||
| 4667 | CVE_STATUS[CVE-2022-50240] = "fixed-version: Fixed from version 6.0" | ||
| 4668 | |||
| 4669 | CVE_STATUS[CVE-2022-50241] = "fixed-version: Fixed from version 6.1" | ||
| 4670 | |||
| 4671 | CVE_STATUS[CVE-2022-50242] = "fixed-version: Fixed from version 6.2" | ||
| 4672 | |||
| 4673 | CVE_STATUS[CVE-2022-50243] = "fixed-version: Fixed from version 6.1" | ||
| 4674 | |||
| 4675 | CVE_STATUS[CVE-2022-50244] = "fixed-version: Fixed from version 6.2" | ||
| 4676 | |||
| 4677 | CVE_STATUS[CVE-2022-50245] = "fixed-version: Fixed from version 6.2" | ||
| 4678 | |||
| 4679 | CVE_STATUS[CVE-2022-50246] = "fixed-version: Fixed from version 6.2" | ||
| 4680 | |||
| 4681 | CVE_STATUS[CVE-2022-50247] = "fixed-version: Fixed from version 6.2" | ||
| 4682 | |||
| 4683 | CVE_STATUS[CVE-2022-50248] = "fixed-version: Fixed from version 6.2" | ||
| 4684 | |||
| 4685 | CVE_STATUS[CVE-2022-50249] = "fixed-version: Fixed from version 6.1" | ||
| 4686 | |||
| 4687 | CVE_STATUS[CVE-2022-50250] = "fixed-version: Fixed from version 6.2" | ||
| 4688 | |||
| 4689 | CVE_STATUS[CVE-2022-50251] = "fixed-version: Fixed from version 6.2" | ||
| 4690 | |||
| 4691 | CVE_STATUS[CVE-2022-50252] = "fixed-version: Fixed from version 6.2" | ||
| 4692 | |||
| 4693 | CVE_STATUS[CVE-2022-50253] = "fixed-version: Fixed from version 6.2" | ||
| 4694 | |||
| 4695 | CVE_STATUS[CVE-2022-50254] = "fixed-version: Fixed from version 6.1" | ||
| 4696 | |||
| 4697 | CVE_STATUS[CVE-2022-50255] = "fixed-version: Fixed from version 6.1" | ||
| 4698 | |||
| 4699 | CVE_STATUS[CVE-2022-50256] = "fixed-version: Fixed from version 6.1" | ||
| 4700 | |||
| 4701 | CVE_STATUS[CVE-2022-50257] = "fixed-version: Fixed from version 6.1" | ||
| 4702 | |||
| 4703 | CVE_STATUS[CVE-2022-50258] = "fixed-version: Fixed from version 6.3" | ||
| 4704 | |||
| 4705 | CVE_STATUS[CVE-2022-50259] = "fixed-version: Fixed from version 6.2" | ||
| 4706 | |||
| 4707 | CVE_STATUS[CVE-2022-50260] = "fixed-version: Fixed from version 6.1" | ||
| 4708 | |||
| 4709 | CVE_STATUS[CVE-2022-50261] = "fixed-version: Fixed from version 6.2" | ||
| 4710 | |||
| 4711 | CVE_STATUS[CVE-2022-50262] = "fixed-version: Fixed from version 6.2" | ||
| 4712 | |||
| 4713 | CVE_STATUS[CVE-2022-50263] = "fixed-version: Fixed from version 6.2" | ||
| 4714 | |||
| 4715 | CVE_STATUS[CVE-2022-50264] = "fixed-version: Fixed from version 6.2" | ||
| 4716 | |||
| 4717 | CVE_STATUS[CVE-2022-50265] = "fixed-version: Fixed from version 6.1" | ||
| 4718 | |||
| 4719 | CVE_STATUS[CVE-2022-50266] = "fixed-version: Fixed from version 6.2" | ||
| 4720 | |||
| 4721 | CVE_STATUS[CVE-2022-50267] = "fixed-version: Fixed from version 6.2" | ||
| 4722 | |||
| 4723 | CVE_STATUS[CVE-2022-50268] = "fixed-version: Fixed from version 6.2" | ||
| 4724 | |||
| 4725 | CVE_STATUS[CVE-2022-50269] = "fixed-version: Fixed from version 6.3" | ||
| 4726 | |||
| 4727 | CVE_STATUS[CVE-2022-50270] = "fixed-version: Fixed from version 6.2" | ||
| 4728 | |||
| 4729 | CVE_STATUS[CVE-2022-50271] = "fixed-version: Fixed from version 6.1" | ||
| 4730 | |||
| 4731 | CVE_STATUS[CVE-2022-50272] = "fixed-version: Fixed from version 6.2" | ||
| 4732 | |||
| 4733 | CVE_STATUS[CVE-2022-50273] = "fixed-version: Fixed from version 6.1" | ||
| 4734 | |||
| 4735 | CVE_STATUS[CVE-2022-50274] = "fixed-version: Fixed from version 6.2" | ||
| 4736 | |||
| 4737 | CVE_STATUS[CVE-2022-50275] = "fixed-version: Fixed from version 6.2" | ||
| 4738 | |||
| 4739 | CVE_STATUS[CVE-2022-50276] = "fixed-version: Fixed from version 6.2" | ||
| 4740 | |||
| 4741 | CVE_STATUS[CVE-2022-50277] = "fixed-version: Fixed from version 6.2" | ||
| 4742 | |||
| 4743 | CVE_STATUS[CVE-2022-50278] = "fixed-version: Fixed from version 6.2" | ||
| 4744 | |||
| 4745 | CVE_STATUS[CVE-2022-50279] = "fixed-version: Fixed from version 6.3" | ||
| 4746 | |||
| 4747 | CVE_STATUS[CVE-2022-50280] = "fixed-version: Fixed from version 6.2" | ||
| 4748 | |||
| 4749 | CVE_STATUS[CVE-2022-50281] = "fixed-version: Fixed from version 6.1" | ||
| 4750 | |||
| 4751 | CVE_STATUS[CVE-2022-50282] = "fixed-version: Fixed from version 6.2" | ||
| 4752 | |||
| 4753 | CVE_STATUS[CVE-2022-50283] = "fixed-version: Fixed from version 6.1" | ||
| 4754 | |||
| 4755 | CVE_STATUS[CVE-2022-50284] = "fixed-version: Fixed from version 6.2" | ||
| 4756 | |||
| 4757 | CVE_STATUS[CVE-2022-50285] = "fixed-version: Fixed from version 6.1" | ||
| 4758 | |||
| 4759 | CVE_STATUS[CVE-2022-50286] = "fixed-version: Fixed from version 6.2" | ||
| 4760 | |||
| 4761 | CVE_STATUS[CVE-2022-50287] = "fixed-version: Fixed from version 6.2" | ||
| 4762 | |||
| 4763 | CVE_STATUS[CVE-2022-50288] = "fixed-version: Fixed from version 6.2" | ||
| 4764 | |||
| 4765 | CVE_STATUS[CVE-2022-50289] = "fixed-version: Fixed from version 6.2" | ||
| 4766 | |||
| 4767 | CVE_STATUS[CVE-2022-50291] = "fixed-version: Fixed from version 6.1" | ||
| 4768 | |||
| 4769 | CVE_STATUS[CVE-2022-50292] = "fixed-version: Fixed from version 6.1" | ||
| 4770 | |||
| 4771 | CVE_STATUS[CVE-2022-50293] = "fixed-version: Fixed from version 6.2" | ||
| 4772 | |||
| 4773 | CVE_STATUS[CVE-2022-50294] = "fixed-version: Fixed from version 6.3" | ||
| 4774 | |||
| 4775 | CVE_STATUS[CVE-2022-50295] = "fixed-version: Fixed from version 6.1" | ||
| 4776 | |||
| 4777 | CVE_STATUS[CVE-2022-50296] = "fixed-version: Fixed from version 6.1" | ||
| 4778 | |||
| 4779 | CVE_STATUS[CVE-2022-50297] = "fixed-version: Fixed from version 6.2" | ||
| 4780 | |||
| 4781 | CVE_STATUS[CVE-2022-50298] = "fixed-version: Fixed from version 6.1" | ||
| 4782 | |||
| 4783 | CVE_STATUS[CVE-2022-50299] = "fixed-version: Fixed from version 6.1" | ||
| 4784 | |||
| 4785 | CVE_STATUS[CVE-2022-50300] = "fixed-version: Fixed from version 6.2" | ||
| 4786 | |||
| 4787 | CVE_STATUS[CVE-2022-50301] = "fixed-version: Fixed from version 6.1" | ||
| 4788 | |||
| 4789 | CVE_STATUS[CVE-2022-50302] = "fixed-version: Fixed from version 6.2" | ||
| 4790 | |||
| 4791 | CVE_STATUS[CVE-2022-50303] = "fixed-version: Fixed from version 6.2" | ||
| 4792 | |||
| 4793 | CVE_STATUS[CVE-2022-50304] = "fixed-version: Fixed from version 6.2" | ||
| 4794 | |||
| 4795 | CVE_STATUS[CVE-2022-50305] = "fixed-version: Fixed from version 6.2" | ||
| 4796 | |||
| 4797 | CVE_STATUS[CVE-2022-50306] = "fixed-version: Fixed from version 6.1" | ||
| 4798 | |||
| 4799 | CVE_STATUS[CVE-2022-50307] = "fixed-version: Fixed from version 6.1" | ||
| 4800 | |||
| 4801 | CVE_STATUS[CVE-2022-50308] = "fixed-version: Fixed from version 6.2" | ||
| 4802 | |||
| 4803 | CVE_STATUS[CVE-2022-50309] = "fixed-version: Fixed from version 6.1" | ||
| 4804 | |||
| 4805 | CVE_STATUS[CVE-2022-50310] = "fixed-version: Fixed from version 6.1" | ||
| 4806 | |||
| 4807 | CVE_STATUS[CVE-2022-50311] = "fixed-version: Fixed from version 6.2" | ||
| 4808 | |||
| 4809 | CVE_STATUS[CVE-2022-50312] = "fixed-version: Fixed from version 6.1" | ||
| 4810 | |||
| 4811 | CVE_STATUS[CVE-2022-50313] = "fixed-version: Fixed from version 6.1" | ||
| 4812 | |||
| 4813 | CVE_STATUS[CVE-2022-50314] = "fixed-version: Fixed from version 6.1" | ||
| 4814 | |||
| 4815 | CVE_STATUS[CVE-2022-50315] = "fixed-version: Fixed from version 6.1" | ||
| 4816 | |||
| 4817 | CVE_STATUS[CVE-2022-50316] = "fixed-version: Fixed from version 6.2" | ||
| 4818 | |||
| 4819 | CVE_STATUS[CVE-2022-50317] = "fixed-version: Fixed from version 6.1" | ||
| 4820 | |||
| 4821 | CVE_STATUS[CVE-2022-50318] = "fixed-version: Fixed from version 6.2" | ||
| 4822 | |||
| 4823 | CVE_STATUS[CVE-2022-50319] = "fixed-version: Fixed from version 6.2" | ||
| 4824 | |||
| 4825 | CVE_STATUS[CVE-2022-50320] = "fixed-version: Fixed from version 6.1" | ||
| 4826 | |||
| 4827 | CVE_STATUS[CVE-2022-50321] = "fixed-version: Fixed from version 6.3" | ||
| 4828 | |||
| 4829 | CVE_STATUS[CVE-2022-50322] = "fixed-version: Fixed from version 6.2" | ||
| 4830 | |||
| 4831 | CVE_STATUS[CVE-2022-50323] = "fixed-version: Fixed from version 6.1" | ||
| 4832 | |||
| 4833 | CVE_STATUS[CVE-2022-50324] = "fixed-version: Fixed from version 6.2" | ||
| 4834 | |||
| 4835 | CVE_STATUS[CVE-2022-50325] = "fixed-version: Fixed from version 6.2" | ||
| 4836 | |||
| 4837 | CVE_STATUS[CVE-2022-50326] = "fixed-version: Fixed from version 6.1" | ||
| 4838 | |||
| 4839 | CVE_STATUS[CVE-2022-50327] = "fixed-version: Fixed from version 6.2" | ||
| 4840 | |||
| 4841 | CVE_STATUS[CVE-2022-50328] = "fixed-version: Fixed from version 6.1" | ||
| 4842 | |||
| 4843 | CVE_STATUS[CVE-2022-50329] = "fixed-version: Fixed from version 6.1.3" | ||
| 4844 | |||
| 4845 | CVE_STATUS[CVE-2022-50330] = "fixed-version: Fixed from version 6.1" | ||
| 4846 | |||
| 4847 | CVE_STATUS[CVE-2022-50331] = "fixed-version: Fixed from version 6.1" | ||
| 4848 | |||
| 4849 | CVE_STATUS[CVE-2022-50332] = "fixed-version: Fixed from version 6.0.6" | ||
| 4850 | |||
| 4851 | CVE_STATUS[CVE-2022-50333] = "fixed-version: Fixed from version 6.2" | ||
| 4852 | |||
| 4853 | CVE_STATUS[CVE-2022-50334] = "fixed-version: Fixed from version 6.2" | ||
| 4854 | |||
| 4855 | CVE_STATUS[CVE-2022-50335] = "fixed-version: Fixed from version 6.2" | ||
| 4856 | |||
| 4857 | CVE_STATUS[CVE-2022-50336] = "fixed-version: Fixed from version 6.2" | ||
| 4858 | |||
| 4859 | CVE_STATUS[CVE-2022-50337] = "fixed-version: Fixed from version 6.2" | ||
| 4860 | |||
| 4861 | CVE_STATUS[CVE-2022-50339] = "fixed-version: Fixed from version 6.1" | ||
| 4862 | |||
| 4863 | CVE_STATUS[CVE-2022-50340] = "fixed-version: Fixed from version 6.2" | ||
| 4864 | |||
| 4865 | CVE_STATUS[CVE-2022-50341] = "fixed-version: Fixed from version 6.2" | ||
| 4866 | |||
| 4867 | CVE_STATUS[CVE-2022-50342] = "fixed-version: Fixed from version 6.2" | ||
| 4868 | |||
| 4869 | CVE_STATUS[CVE-2022-50343] = "fixed-version: Fixed from version 6.2" | ||
| 4870 | |||
| 4871 | CVE_STATUS[CVE-2022-50344] = "fixed-version: Fixed from version 6.1" | ||
| 4872 | |||
| 4873 | CVE_STATUS[CVE-2022-50346] = "fixed-version: Fixed from version 6.2" | ||
| 4874 | |||
| 4875 | CVE_STATUS[CVE-2022-50347] = "fixed-version: Fixed from version 6.2" | ||
| 4876 | |||
| 4877 | CVE_STATUS[CVE-2022-50348] = "fixed-version: Fixed from version 6.1" | ||
| 4878 | |||
| 4879 | CVE_STATUS[CVE-2022-50349] = "fixed-version: Fixed from version 6.2" | ||
| 4880 | |||
| 4881 | CVE_STATUS[CVE-2022-50350] = "fixed-version: Fixed from version 6.2" | ||
| 4882 | |||
| 4883 | CVE_STATUS[CVE-2022-50351] = "fixed-version: Fixed from version 6.1" | ||
| 4884 | |||
| 4885 | CVE_STATUS[CVE-2022-50352] = "fixed-version: Fixed from version 6.1" | ||
| 4886 | |||
| 4887 | CVE_STATUS[CVE-2022-50353] = "fixed-version: Fixed from version 6.2" | ||
| 4888 | |||
| 4889 | CVE_STATUS[CVE-2022-50354] = "fixed-version: Fixed from version 6.2" | ||
| 4890 | |||
| 4891 | CVE_STATUS[CVE-2022-50355] = "fixed-version: Fixed from version 6.1" | ||
| 4892 | |||
| 4893 | CVE_STATUS[CVE-2022-50356] = "fixed-version: Fixed from version 6.1" | ||
| 4894 | |||
| 4895 | CVE_STATUS[CVE-2022-50357] = "fixed-version: Fixed from version 6.1" | ||
| 4896 | |||
| 4897 | CVE_STATUS[CVE-2022-50358] = "fixed-version: Fixed from version 6.2" | ||
| 4898 | |||
| 4899 | CVE_STATUS[CVE-2022-50359] = "fixed-version: Fixed from version 6.1" | ||
| 4900 | |||
| 4901 | CVE_STATUS[CVE-2022-50360] = "fixed-version: Fixed from version 6.1" | ||
| 4902 | |||
| 4903 | CVE_STATUS[CVE-2022-50361] = "fixed-version: Fixed from version 6.3" | ||
| 4904 | |||
| 4905 | CVE_STATUS[CVE-2022-50362] = "fixed-version: Fixed from version 6.1" | ||
| 4906 | |||
| 4907 | CVE_STATUS[CVE-2022-50363] = "fixed-version: Fixed from version 6.1" | ||
| 4908 | |||
| 4909 | CVE_STATUS[CVE-2022-50364] = "fixed-version: Fixed from version 6.2" | ||
| 4910 | |||
| 4911 | CVE_STATUS[CVE-2022-50365] = "fixed-version: Fixed from version 6.2" | ||
| 4912 | |||
| 4913 | CVE_STATUS[CVE-2022-50366] = "fixed-version: Fixed from version 6.1" | ||
| 4914 | |||
| 4915 | CVE_STATUS[CVE-2022-50367] = "fixed-version: Fixed from version 6.1" | ||
| 4916 | |||
| 4917 | CVE_STATUS[CVE-2022-50368] = "fixed-version: Fixed from version 6.1" | ||
| 4918 | |||
| 4919 | CVE_STATUS[CVE-2022-50369] = "fixed-version: Fixed from version 6.3" | ||
| 4920 | |||
| 4921 | CVE_STATUS[CVE-2022-50370] = "fixed-version: Fixed from version 6.1" | ||
| 4922 | |||
| 4923 | CVE_STATUS[CVE-2022-50371] = "fixed-version: Fixed from version 6.2" | ||
| 4924 | |||
| 4925 | CVE_STATUS[CVE-2022-50372] = "fixed-version: Fixed from version 6.1" | ||
| 4926 | |||
| 4927 | CVE_STATUS[CVE-2022-50373] = "fixed-version: Fixed from version 6.1" | ||
| 4928 | |||
| 4929 | CVE_STATUS[CVE-2022-50374] = "fixed-version: Fixed from version 6.1" | ||
| 4930 | |||
| 4931 | CVE_STATUS[CVE-2022-50375] = "fixed-version: Fixed from version 6.1" | ||
| 4932 | |||
| 4933 | CVE_STATUS[CVE-2022-50376] = "fixed-version: Fixed from version 6.2" | ||
| 4934 | |||
| 4935 | CVE_STATUS[CVE-2022-50378] = "fixed-version: Fixed from version 6.1" | ||
| 4936 | |||
| 4937 | CVE_STATUS[CVE-2022-50379] = "fixed-version: Fixed from version 6.1" | ||
| 4938 | |||
| 4939 | CVE_STATUS[CVE-2022-50380] = "fixed-version: Fixed from version 6.1" | ||
| 4940 | |||
| 4941 | CVE_STATUS[CVE-2022-50381] = "fixed-version: Fixed from version 6.2" | ||
| 4942 | |||
| 4943 | CVE_STATUS[CVE-2022-50382] = "fixed-version: Fixed from version 6.2" | ||
| 4944 | |||
| 4945 | CVE_STATUS[CVE-2022-50383] = "fixed-version: Fixed from version 6.2" | ||
| 4946 | |||
| 4947 | CVE_STATUS[CVE-2022-50384] = "fixed-version: Fixed from version 6.2" | ||
| 4948 | |||
| 4949 | CVE_STATUS[CVE-2022-50385] = "fixed-version: Fixed from version 6.2" | ||
| 4950 | |||
| 4951 | CVE_STATUS[CVE-2022-50386] = "fixed-version: Fixed from version 6.1" | ||
| 4952 | |||
| 4953 | CVE_STATUS[CVE-2022-50387] = "fixed-version: Fixed from version 6.1" | ||
| 4954 | |||
| 4955 | CVE_STATUS[CVE-2022-50388] = "fixed-version: Fixed from version 6.2" | ||
| 4956 | |||
| 4957 | CVE_STATUS[CVE-2022-50389] = "fixed-version: Fixed from version 6.2" | ||
| 4958 | |||
| 4959 | CVE_STATUS[CVE-2022-50390] = "fixed-version: Fixed from version 6.2" | ||
| 4960 | |||
| 4961 | CVE_STATUS[CVE-2022-50391] = "fixed-version: Fixed from version 6.2" | ||
| 4962 | |||
| 4963 | CVE_STATUS[CVE-2022-50392] = "fixed-version: Fixed from version 6.2" | ||
| 4964 | |||
| 4965 | CVE_STATUS[CVE-2022-50393] = "fixed-version: Fixed from version 6.1" | ||
| 4966 | |||
| 4967 | CVE_STATUS[CVE-2022-50394] = "fixed-version: Fixed from version 6.2" | ||
| 4968 | |||
| 4969 | CVE_STATUS[CVE-2022-50395] = "fixed-version: Fixed from version 6.2" | ||
| 4970 | |||
| 4971 | CVE_STATUS[CVE-2022-50396] = "fixed-version: Fixed from version 6.2" | ||
| 4972 | |||
| 4973 | CVE_STATUS[CVE-2022-50398] = "fixed-version: Fixed from version 6.1" | ||
| 4974 | |||
| 4975 | CVE_STATUS[CVE-2022-50399] = "fixed-version: Fixed from version 6.1" | ||
| 4976 | |||
| 4977 | CVE_STATUS[CVE-2022-50400] = "fixed-version: Fixed from version 6.1" | ||
| 4978 | |||
| 4979 | CVE_STATUS[CVE-2022-50401] = "fixed-version: Fixed from version 6.2" | ||
| 4980 | |||
| 4981 | CVE_STATUS[CVE-2022-50402] = "fixed-version: Fixed from version 6.2" | ||
| 4982 | |||
| 4983 | CVE_STATUS[CVE-2022-50404] = "fixed-version: Fixed from version 6.2" | ||
| 4984 | |||
| 4985 | CVE_STATUS[CVE-2022-50405] = "fixed-version: Fixed from version 6.2" | ||
| 4986 | |||
| 4987 | CVE_STATUS[CVE-2022-50406] = "fixed-version: Fixed from version 6.1" | ||
| 4988 | |||
| 4989 | CVE_STATUS[CVE-2022-50407] = "fixed-version: Fixed from version 6.2" | ||
| 4990 | |||
| 4991 | CVE_STATUS[CVE-2022-50408] = "fixed-version: Fixed from version 6.1" | ||
| 4992 | |||
| 4993 | CVE_STATUS[CVE-2022-50409] = "fixed-version: Fixed from version 6.1" | ||
| 4994 | |||
| 4995 | CVE_STATUS[CVE-2022-50410] = "fixed-version: Fixed from version 6.1" | ||
| 4996 | |||
| 4997 | CVE_STATUS[CVE-2022-50411] = "fixed-version: Fixed from version 6.2" | ||
| 4998 | |||
| 4999 | CVE_STATUS[CVE-2022-50412] = "fixed-version: Fixed from version 6.1" | ||
| 5000 | |||
| 5001 | CVE_STATUS[CVE-2022-50413] = "fixed-version: Fixed from version 6.1" | ||
| 5002 | |||
| 5003 | CVE_STATUS[CVE-2022-50414] = "fixed-version: Fixed from version 6.2" | ||
| 5004 | |||
| 5005 | CVE_STATUS[CVE-2022-50415] = "fixed-version: Fixed from version 6.2" | ||
| 5006 | |||
| 5007 | CVE_STATUS[CVE-2022-50416] = "fixed-version: Fixed from version 6.2" | ||
| 5008 | |||
| 5009 | CVE_STATUS[CVE-2022-50417] = "fixed-version: Fixed from version 6.2" | ||
| 5010 | |||
| 5011 | CVE_STATUS[CVE-2022-50418] = "fixed-version: Fixed from version 6.1" | ||
| 5012 | |||
| 5013 | CVE_STATUS[CVE-2022-50419] = "fixed-version: Fixed from version 6.1" | ||
| 5014 | |||
| 5015 | CVE_STATUS[CVE-2022-50420] = "fixed-version: Fixed from version 6.2" | ||
| 5016 | |||
| 5017 | CVE_STATUS[CVE-2022-50421] = "fixed-version: Fixed from version 6.1" | ||
| 5018 | |||
| 5019 | CVE_STATUS[CVE-2022-50422] = "fixed-version: Fixed from version 6.1" | ||
| 5020 | |||
| 5021 | CVE_STATUS[CVE-2022-50423] = "fixed-version: Fixed from version 6.2" | ||
| 5022 | |||
| 5023 | CVE_STATUS[CVE-2022-50424] = "fixed-version: Fixed from version 6.3" | ||
| 5024 | |||
| 5025 | CVE_STATUS[CVE-2022-50425] = "fixed-version: Fixed from version 6.1" | ||
| 5026 | |||
| 5027 | CVE_STATUS[CVE-2022-50426] = "fixed-version: Fixed from version 6.2" | ||
| 5028 | |||
| 5029 | CVE_STATUS[CVE-2022-50427] = "fixed-version: Fixed from version 6.1" | ||
| 5030 | |||
| 5031 | CVE_STATUS[CVE-2022-50428] = "fixed-version: Fixed from version 6.2" | ||
| 5032 | |||
| 5033 | CVE_STATUS[CVE-2022-50429] = "fixed-version: Fixed from version 6.1" | ||
| 5034 | |||
| 5035 | CVE_STATUS[CVE-2022-50430] = "fixed-version: Fixed from version 6.2" | ||
| 5036 | |||
| 5037 | CVE_STATUS[CVE-2022-50431] = "fixed-version: Fixed from version 6.1" | ||
| 5038 | |||
| 5039 | CVE_STATUS[CVE-2022-50432] = "fixed-version: Fixed from version 6.1" | ||
| 5040 | |||
| 5041 | CVE_STATUS[CVE-2022-50433] = "fixed-version: Fixed from version 6.1" | ||
| 5042 | |||
| 5043 | CVE_STATUS[CVE-2022-50434] = "fixed-version: Fixed from version 6.2" | ||
| 5044 | |||
| 5045 | CVE_STATUS[CVE-2022-50435] = "fixed-version: Fixed from version 6.1" | ||
| 5046 | |||
| 5047 | CVE_STATUS[CVE-2022-50436] = "fixed-version: Fixed from version 6.2" | ||
| 5048 | |||
| 5049 | CVE_STATUS[CVE-2022-50437] = "fixed-version: Fixed from version 6.1" | ||
| 5050 | |||
| 5051 | CVE_STATUS[CVE-2022-50438] = "fixed-version: Fixed from version 6.1" | ||
| 5052 | |||
| 5053 | CVE_STATUS[CVE-2022-50439] = "fixed-version: Fixed from version 6.2" | ||
| 5054 | |||
| 5055 | CVE_STATUS[CVE-2022-50440] = "fixed-version: Fixed from version 6.2" | ||
| 5056 | |||
| 5057 | CVE_STATUS[CVE-2022-50441] = "fixed-version: Fixed from version 6.2" | ||
| 5058 | |||
| 5059 | CVE_STATUS[CVE-2022-50442] = "fixed-version: Fixed from version 6.2" | ||
| 5060 | |||
| 5061 | CVE_STATUS[CVE-2022-50443] = "fixed-version: Fixed from version 6.2" | ||
| 5062 | |||
| 5063 | CVE_STATUS[CVE-2022-50444] = "fixed-version: Fixed from version 6.1" | ||
| 5064 | |||
| 5065 | CVE_STATUS[CVE-2022-50445] = "fixed-version: Fixed from version 6.1" | ||
| 5066 | |||
| 5067 | CVE_STATUS[CVE-2022-50446] = "fixed-version: Fixed from version 6.1" | ||
| 5068 | |||
| 5069 | CVE_STATUS[CVE-2022-50447] = "fixed-version: Fixed from version 6.2" | ||
| 5070 | |||
| 5071 | CVE_STATUS[CVE-2022-50448] = "fixed-version: Fixed from version 6.1" | ||
| 5072 | |||
| 5073 | CVE_STATUS[CVE-2022-50449] = "fixed-version: Fixed from version 6.2" | ||
| 5074 | |||
| 5075 | CVE_STATUS[CVE-2022-50451] = "fixed-version: Fixed from version 6.2" | ||
| 5076 | |||
| 5077 | CVE_STATUS[CVE-2022-50452] = "fixed-version: Fixed from version 6.1" | ||
| 5078 | |||
| 5079 | CVE_STATUS[CVE-2022-50453] = "fixed-version: Fixed from version 6.2" | ||
| 5080 | |||
| 5081 | CVE_STATUS[CVE-2022-50454] = "fixed-version: Fixed from version 6.1" | ||
| 5082 | |||
| 5083 | CVE_STATUS[CVE-2022-50456] = "fixed-version: Fixed from version 6.2" | ||
| 5084 | |||
| 5085 | CVE_STATUS[CVE-2022-50457] = "fixed-version: Fixed from version 6.2" | ||
| 5086 | |||
| 5087 | CVE_STATUS[CVE-2022-50458] = "fixed-version: Fixed from version 6.1" | ||
| 5088 | |||
| 5089 | CVE_STATUS[CVE-2022-50459] = "fixed-version: Fixed from version 6.1" | ||
| 5090 | |||
| 5091 | CVE_STATUS[CVE-2022-50460] = "fixed-version: Fixed from version 6.1" | ||
| 5092 | |||
| 5093 | CVE_STATUS[CVE-2022-50461] = "fixed-version: Fixed from version 6.2" | ||
| 5094 | |||
| 5095 | CVE_STATUS[CVE-2022-50462] = "fixed-version: Fixed from version 6.2" | ||
| 5096 | |||
| 5097 | CVE_STATUS[CVE-2022-50463] = "fixed-version: Fixed from version 6.2" | ||
| 5098 | |||
| 5099 | CVE_STATUS[CVE-2022-50464] = "fixed-version: Fixed from version 6.2" | ||
| 5100 | |||
| 5101 | CVE_STATUS[CVE-2022-50465] = "fixed-version: Fixed from version 6.2" | ||
| 5102 | |||
| 5103 | CVE_STATUS[CVE-2022-50466] = "fixed-version: Fixed from version 6.1" | ||
| 5104 | |||
| 5105 | CVE_STATUS[CVE-2022-50467] = "fixed-version: Fixed from version 6.1" | ||
| 5106 | |||
| 5107 | CVE_STATUS[CVE-2022-50468] = "fixed-version: Fixed from version 6.2" | ||
| 5108 | |||
| 5109 | CVE_STATUS[CVE-2022-50469] = "fixed-version: Fixed from version 6.1" | ||
| 5110 | |||
| 5111 | CVE_STATUS[CVE-2022-50470] = "fixed-version: Fixed from version 6.1" | ||
| 5112 | |||
| 5113 | CVE_STATUS[CVE-2022-50471] = "fixed-version: Fixed from version 6.1" | ||
| 5114 | |||
| 5115 | CVE_STATUS[CVE-2022-50472] = "fixed-version: Fixed from version 6.2" | ||
| 5116 | |||
| 5117 | CVE_STATUS[CVE-2022-50473] = "fixed-version: Fixed from version 6.2" | ||
| 5118 | |||
| 5119 | CVE_STATUS[CVE-2022-50474] = "fixed-version: Fixed from version 6.2" | ||
| 5120 | |||
| 5121 | CVE_STATUS[CVE-2022-50475] = "fixed-version: Fixed from version 6.2" | ||
| 5122 | |||
| 5123 | CVE_STATUS[CVE-2022-50476] = "fixed-version: Fixed from version 6.2" | ||
| 5124 | |||
| 5125 | CVE_STATUS[CVE-2022-50477] = "fixed-version: Fixed from version 6.2" | ||
| 5126 | |||
| 5127 | CVE_STATUS[CVE-2022-50478] = "fixed-version: Fixed from version 6.2" | ||
| 5128 | |||
| 5129 | CVE_STATUS[CVE-2022-50479] = "fixed-version: Fixed from version 6.1" | ||
| 5130 | |||
| 5131 | CVE_STATUS[CVE-2022-50480] = "fixed-version: Fixed from version 6.1" | ||
| 5132 | |||
| 5133 | CVE_STATUS[CVE-2022-50481] = "fixed-version: Fixed from version 6.2" | ||
| 5134 | |||
| 5135 | CVE_STATUS[CVE-2022-50482] = "fixed-version: Fixed from version 6.1" | ||
| 5136 | |||
| 5137 | CVE_STATUS[CVE-2022-50483] = "fixed-version: Fixed from version 6.2" | ||
| 5138 | |||
| 5139 | CVE_STATUS[CVE-2022-50484] = "fixed-version: Fixed from version 6.1" | ||
| 5140 | |||
| 5141 | CVE_STATUS[CVE-2022-50485] = "fixed-version: Fixed from version 6.2" | ||
| 5142 | |||
| 5143 | CVE_STATUS[CVE-2022-50486] = "fixed-version: Fixed from version 6.2" | ||
| 5144 | |||
| 5145 | CVE_STATUS[CVE-2022-50488] = "fixed-version: Fixed from version 6.2" | ||
| 5146 | |||
| 5147 | CVE_STATUS[CVE-2022-50489] = "fixed-version: Fixed from version 6.1" | ||
| 5148 | |||
| 5149 | CVE_STATUS[CVE-2022-50490] = "fixed-version: Fixed from version 6.1" | ||
| 5150 | |||
| 5151 | CVE_STATUS[CVE-2022-50491] = "fixed-version: Fixed from version 6.1" | ||
| 5152 | |||
| 5153 | CVE_STATUS[CVE-2022-50492] = "fixed-version: Fixed from version 6.1" | ||
| 5154 | |||
| 5155 | CVE_STATUS[CVE-2022-50493] = "fixed-version: Fixed from version 6.2" | ||
| 5156 | |||
| 5157 | CVE_STATUS[CVE-2022-50494] = "fixed-version: Fixed from version 6.1" | ||
| 5158 | |||
| 5159 | CVE_STATUS[CVE-2022-50496] = "fixed-version: Fixed from version 6.2" | ||
| 5160 | |||
| 5161 | CVE_STATUS[CVE-2022-50497] = "fixed-version: Fixed from version 6.2" | ||
| 5162 | |||
| 5163 | CVE_STATUS[CVE-2022-50498] = "fixed-version: Fixed from version 6.1" | ||
| 5164 | |||
| 5165 | CVE_STATUS[CVE-2022-50499] = "fixed-version: Fixed from version 6.2" | ||
| 5166 | |||
| 5167 | CVE_STATUS[CVE-2022-50500] = "fixed-version: Fixed from version 6.1" | ||
| 5168 | |||
| 5169 | CVE_STATUS[CVE-2022-50501] = "fixed-version: Fixed from version 6.2" | ||
| 5170 | |||
| 5171 | CVE_STATUS[CVE-2022-50503] = "fixed-version: Fixed from version 6.2" | ||
| 5172 | |||
| 5173 | CVE_STATUS[CVE-2022-50504] = "fixed-version: Fixed from version 6.2" | ||
| 5174 | |||
| 5175 | CVE_STATUS[CVE-2022-50505] = "fixed-version: Fixed from version 6.2" | ||
| 5176 | |||
| 5177 | CVE_STATUS[CVE-2022-50506] = "fixed-version: Fixed from version 6.1" | ||
| 5178 | |||
| 5179 | CVE_STATUS[CVE-2022-50507] = "fixed-version: Fixed from version 6.2" | ||
| 5180 | |||
| 5181 | CVE_STATUS[CVE-2022-50508] = "fixed-version: Fixed from version 6.3" | ||
| 5182 | |||
| 5183 | CVE_STATUS[CVE-2022-50509] = "fixed-version: Fixed from version 6.2" | ||
| 5184 | |||
| 5185 | CVE_STATUS[CVE-2022-50510] = "fixed-version: Fixed from version 6.2" | ||
| 5186 | |||
| 5187 | CVE_STATUS[CVE-2022-50511] = "fixed-version: Fixed from version 6.2" | ||
| 5188 | |||
| 5189 | CVE_STATUS[CVE-2022-50512] = "fixed-version: Fixed from version 6.1" | ||
| 5190 | |||
| 5191 | CVE_STATUS[CVE-2022-50513] = "fixed-version: Fixed from version 6.1" | ||
| 5192 | |||
| 5193 | CVE_STATUS[CVE-2022-50514] = "fixed-version: Fixed from version 6.2" | ||
| 5194 | |||
| 5195 | CVE_STATUS[CVE-2022-50515] = "fixed-version: Fixed from version 6.1" | ||
| 5196 | |||
| 5197 | CVE_STATUS[CVE-2022-50516] = "fixed-version: Fixed from version 6.1" | ||
| 5198 | |||
| 5199 | CVE_STATUS[CVE-2022-50517] = "fixed-version: Fixed from version 6.1" | ||
| 5200 | |||
| 5201 | CVE_STATUS[CVE-2022-50518] = "fixed-version: Fixed from version 6.2" | ||
| 5202 | |||
| 5203 | CVE_STATUS[CVE-2022-50519] = "fixed-version: Fixed from version 6.1" | ||
| 5204 | |||
| 5205 | CVE_STATUS[CVE-2022-50520] = "fixed-version: Fixed from version 6.2" | ||
| 5206 | |||
| 5207 | CVE_STATUS[CVE-2022-50521] = "fixed-version: Fixed from version 6.2" | ||
| 5208 | |||
| 5209 | CVE_STATUS[CVE-2022-50522] = "fixed-version: Fixed from version 6.2" | ||
| 5210 | |||
| 5211 | CVE_STATUS[CVE-2022-50523] = "fixed-version: Fixed from version 6.2" | ||
| 5212 | |||
| 5213 | CVE_STATUS[CVE-2022-50524] = "fixed-version: Fixed from version 6.2" | ||
| 5214 | |||
| 5215 | CVE_STATUS[CVE-2022-50525] = "fixed-version: Fixed from version 6.2" | ||
| 5216 | |||
| 5217 | CVE_STATUS[CVE-2022-50526] = "fixed-version: Fixed from version 6.1" | ||
| 5218 | |||
| 5219 | CVE_STATUS[CVE-2022-50527] = "fixed-version: Fixed from version 6.2" | ||
| 5220 | |||
| 5221 | CVE_STATUS[CVE-2022-50528] = "fixed-version: Fixed from version 6.2" | ||
| 5222 | |||
| 5223 | CVE_STATUS[CVE-2022-50529] = "fixed-version: Fixed from version 6.2" | ||
| 5224 | |||
| 5225 | CVE_STATUS[CVE-2022-50530] = "fixed-version: Fixed from version 6.1" | ||
| 5226 | |||
| 5227 | CVE_STATUS[CVE-2022-50531] = "fixed-version: Fixed from version 6.1" | ||
| 5228 | |||
| 5229 | CVE_STATUS[CVE-2022-50532] = "fixed-version: Fixed from version 6.2" | ||
| 5230 | |||
| 5231 | CVE_STATUS[CVE-2022-50533] = "fixed-version: Fixed from version 6.2" | ||
| 5232 | |||
| 5233 | CVE_STATUS[CVE-2022-50534] = "fixed-version: Fixed from version 6.2" | ||
| 5234 | |||
| 5235 | CVE_STATUS[CVE-2022-50535] = "fixed-version: Fixed from version 6.3" | ||
| 5236 | |||
| 5237 | CVE_STATUS[CVE-2022-50536] = "fixed-version: Fixed from version 6.2" | ||
| 5238 | |||
| 5239 | CVE_STATUS[CVE-2022-50537] = "fixed-version: Fixed from version 6.2" | ||
| 5240 | |||
| 5241 | CVE_STATUS[CVE-2022-50538] = "fixed-version: Fixed from version 6.2" | ||
| 5242 | |||
| 5243 | CVE_STATUS[CVE-2022-50539] = "fixed-version: Fixed from version 6.3" | ||
| 5244 | |||
| 5245 | CVE_STATUS[CVE-2022-50540] = "fixed-version: Fixed from version 6.1" | ||
| 5246 | |||
| 5247 | CVE_STATUS[CVE-2022-50541] = "fixed-version: Fixed from version 6.1" | ||
| 5248 | |||
| 5249 | CVE_STATUS[CVE-2022-50542] = "fixed-version: Fixed from version 6.2" | ||
| 5250 | |||
| 5251 | CVE_STATUS[CVE-2022-50543] = "fixed-version: Fixed from version 6.2" | ||
| 5252 | |||
| 5253 | CVE_STATUS[CVE-2022-50544] = "fixed-version: Fixed from version 6.1" | ||
| 5254 | |||
| 5255 | CVE_STATUS[CVE-2022-50545] = "fixed-version: Fixed from version 6.2" | ||
| 5256 | |||
| 5257 | CVE_STATUS[CVE-2022-50546] = "fixed-version: Fixed from version 6.2" | ||
| 5258 | |||
| 5259 | CVE_STATUS[CVE-2022-50547] = "fixed-version: Fixed from version 6.2" | ||
| 5260 | |||
| 5261 | CVE_STATUS[CVE-2022-50548] = "fixed-version: Fixed from version 6.2" | ||
| 5262 | |||
| 5263 | CVE_STATUS[CVE-2022-50549] = "fixed-version: Fixed from version 6.2" | ||
| 5264 | |||
| 5265 | CVE_STATUS[CVE-2022-50550] = "fixed-version: Fixed from version 6.2" | ||
| 5266 | |||
| 5267 | CVE_STATUS[CVE-2022-50551] = "fixed-version: Fixed from version 6.2" | ||
| 5268 | |||
| 5269 | CVE_STATUS[CVE-2022-50552] = "fixed-version: Fixed from version 6.1" | ||
| 5270 | |||
| 5271 | CVE_STATUS[CVE-2022-50553] = "fixed-version: Fixed from version 6.2" | ||
| 5272 | |||
| 5273 | CVE_STATUS[CVE-2022-50554] = "fixed-version: Fixed from version 6.2" | ||
| 5274 | |||
| 5275 | CVE_STATUS[CVE-2022-50555] = "fixed-version: Fixed from version 6.1" | ||
| 5276 | |||
| 5277 | CVE_STATUS[CVE-2022-50556] = "fixed-version: Fixed from version 6.3" | ||
| 5278 | |||
| 5279 | CVE_STATUS[CVE-2022-50557] = "fixed-version: Fixed from version 6.2" | ||
| 5280 | |||
| 5281 | CVE_STATUS[CVE-2022-50558] = "fixed-version: Fixed from version 6.2" | ||
| 5282 | |||
| 5283 | CVE_STATUS[CVE-2022-50559] = "fixed-version: Fixed from version 6.1" | ||
| 5284 | |||
| 5285 | CVE_STATUS[CVE-2022-50560] = "fixed-version: Fixed from version 6.1" | ||
| 5286 | |||
| 5287 | CVE_STATUS[CVE-2022-50561] = "fixed-version: Fixed from version 6.2" | ||
| 5288 | |||
| 5289 | CVE_STATUS[CVE-2022-50562] = "fixed-version: Fixed from version 6.2" | ||
| 5290 | |||
| 5291 | CVE_STATUS[CVE-2022-50563] = "fixed-version: Fixed from version 6.2" | ||
| 5292 | |||
| 5293 | CVE_STATUS[CVE-2022-50564] = "fixed-version: Fixed from version 6.2" | ||
| 5294 | |||
| 5295 | CVE_STATUS[CVE-2022-50565] = "fixed-version: Fixed from version 6.2" | ||
| 5296 | |||
| 5297 | CVE_STATUS[CVE-2022-50566] = "fixed-version: Fixed from version 6.2" | ||
| 5298 | |||
| 5299 | CVE_STATUS[CVE-2022-50567] = "fixed-version: Fixed from version 6.2" | ||
| 5300 | |||
| 5301 | CVE_STATUS[CVE-2022-50568] = "fixed-version: Fixed from version 6.2" | ||
| 5302 | |||
| 5303 | CVE_STATUS[CVE-2022-50569] = "fixed-version: Fixed from version 6.1" | ||
| 5304 | |||
| 5305 | CVE_STATUS[CVE-2022-50570] = "fixed-version: Fixed from version 6.1" | ||
| 5306 | |||
| 5307 | CVE_STATUS[CVE-2022-50571] = "fixed-version: Fixed from version 6.1" | ||
| 5308 | |||
| 5309 | CVE_STATUS[CVE-2022-50572] = "fixed-version: Fixed from version 6.2" | ||
| 5310 | |||
| 5311 | CVE_STATUS[CVE-2022-50573] = "fixed-version: Fixed from version 6.3" | ||
| 5312 | |||
| 5313 | CVE_STATUS[CVE-2022-50574] = "fixed-version: Fixed from version 6.1" | ||
| 5314 | |||
| 5315 | CVE_STATUS[CVE-2022-50575] = "fixed-version: Fixed from version 6.2" | ||
| 5316 | |||
| 5317 | CVE_STATUS[CVE-2022-50576] = "fixed-version: Fixed from version 6.2" | ||
| 5318 | |||
| 5319 | CVE_STATUS[CVE-2022-50577] = "fixed-version: Fixed from version 6.2" | ||
| 5320 | |||
| 5321 | CVE_STATUS[CVE-2022-50578] = "fixed-version: Fixed from version 6.2" | ||
| 5322 | |||
| 5323 | CVE_STATUS[CVE-2022-50579] = "fixed-version: Fixed from version 6.1" | ||
| 5324 | |||
| 5325 | CVE_STATUS[CVE-2022-50580] = "fixed-version: Fixed from version 6.1" | ||
| 5326 | |||
| 5327 | CVE_STATUS[CVE-2022-50581] = "fixed-version: Fixed from version 6.2" | ||
| 5328 | |||
| 5329 | CVE_STATUS[CVE-2022-50582] = "fixed-version: Fixed from version 6.1" | ||
| 5330 | |||
| 5331 | CVE_STATUS[CVE-2023-32246] = "fixed-version: Fixed from version 6.4" | ||
| 5332 | |||
| 5333 | CVE_STATUS[CVE-2023-32249] = "fixed-version: Fixed from version 6.4" | ||
| 5334 | |||
| 5335 | # CVE-2023-34319 has no known resolution | ||
| 5336 | |||
| 5337 | # CVE-2023-34324 has no known resolution | ||
| 5338 | |||
| 5339 | CVE_STATUS[CVE-2023-3865] = "fixed-version: Fixed from version 6.4" | ||
| 5340 | |||
| 5341 | CVE_STATUS[CVE-2023-3866] = "fixed-version: Fixed from version 6.4" | ||
| 5342 | |||
| 5343 | CVE_STATUS[CVE-2023-3867] = "fixed-version: Fixed from version 6.5" | ||
| 5344 | |||
| 5345 | # CVE-2023-46838 has no known resolution | ||
| 5346 | |||
| 5347 | CVE_STATUS[CVE-2023-4130] = "fixed-version: Fixed from version 6.5" | ||
| 5348 | |||
| 5349 | CVE_STATUS[CVE-2023-4515] = "fixed-version: Fixed from version 6.5" | ||
| 5350 | |||
| 5351 | CVE_STATUS[CVE-2023-52433] = "fixed-version: Fixed from version 6.6" | ||
| 5352 | |||
| 5353 | CVE_STATUS[CVE-2023-52434] = "fixed-version: Fixed from version 6.7" | ||
| 5354 | |||
| 5355 | CVE_STATUS[CVE-2023-52435] = "fixed-version: Fixed from version 6.7" | ||
| 5356 | |||
| 5357 | CVE_STATUS[CVE-2023-52436] = "fixed-version: Fixed from version 6.8" | ||
| 5358 | |||
| 5359 | CVE_STATUS[CVE-2023-52438] = "fixed-version: Fixed from version 6.8" | ||
| 5360 | |||
| 5361 | CVE_STATUS[CVE-2023-52439] = "fixed-version: Fixed from version 6.8" | ||
| 5362 | |||
| 5363 | CVE_STATUS[CVE-2023-52440] = "fixed-version: Fixed from version 6.6" | ||
| 5364 | |||
| 5365 | CVE_STATUS[CVE-2023-52441] = "fixed-version: Fixed from version 6.5" | ||
| 5366 | |||
| 5367 | CVE_STATUS[CVE-2023-52442] = "fixed-version: Fixed from version 6.5" | ||
| 5368 | |||
| 5369 | CVE_STATUS[CVE-2023-52443] = "fixed-version: Fixed from version 6.8" | ||
| 5370 | |||
| 5371 | CVE_STATUS[CVE-2023-52444] = "fixed-version: Fixed from version 6.8" | ||
| 5372 | |||
| 5373 | CVE_STATUS[CVE-2023-52445] = "fixed-version: Fixed from version 6.8" | ||
| 5374 | |||
| 5375 | CVE_STATUS[CVE-2023-52446] = "fixed-version: Fixed from version 6.8" | ||
| 5376 | |||
| 5377 | CVE_STATUS[CVE-2023-52447] = "fixed-version: Fixed from version 6.8" | ||
| 5378 | |||
| 5379 | CVE_STATUS[CVE-2023-52448] = "fixed-version: Fixed from version 6.8" | ||
| 5380 | |||
| 5381 | CVE_STATUS[CVE-2023-52449] = "fixed-version: Fixed from version 6.8" | ||
| 5382 | |||
| 5383 | CVE_STATUS[CVE-2023-52450] = "fixed-version: Fixed from version 6.8" | ||
| 5384 | |||
| 5385 | CVE_STATUS[CVE-2023-52451] = "fixed-version: Fixed from version 6.8" | ||
| 5386 | |||
| 5387 | CVE_STATUS[CVE-2023-52452] = "fixed-version: Fixed from version 6.8" | ||
| 5388 | |||
| 5389 | CVE_STATUS[CVE-2023-52453] = "fixed-version: Fixed from version 6.8" | ||
| 5390 | |||
| 5391 | CVE_STATUS[CVE-2023-52454] = "fixed-version: Fixed from version 6.8" | ||
| 5392 | |||
| 5393 | CVE_STATUS[CVE-2023-52455] = "fixed-version: Fixed from version 6.8" | ||
| 5394 | |||
| 5395 | CVE_STATUS[CVE-2023-52456] = "fixed-version: Fixed from version 6.8" | ||
| 5396 | |||
| 5397 | CVE_STATUS[CVE-2023-52457] = "fixed-version: Fixed from version 6.8" | ||
| 5398 | |||
| 5399 | CVE_STATUS[CVE-2023-52458] = "fixed-version: Fixed from version 6.8" | ||
| 5400 | |||
| 5401 | CVE_STATUS[CVE-2023-52459] = "fixed-version: Fixed from version 6.8" | ||
| 5402 | |||
| 5403 | CVE_STATUS[CVE-2023-52460] = "fixed-version: Fixed from version 6.8" | ||
| 5404 | |||
| 5405 | CVE_STATUS[CVE-2023-52461] = "fixed-version: Fixed from version 6.8" | ||
| 5406 | |||
| 5407 | CVE_STATUS[CVE-2023-52462] = "fixed-version: Fixed from version 6.8" | ||
| 5408 | |||
| 5409 | CVE_STATUS[CVE-2023-52463] = "fixed-version: Fixed from version 6.8" | ||
| 5410 | |||
| 5411 | CVE_STATUS[CVE-2023-52464] = "fixed-version: Fixed from version 6.8" | ||
| 5412 | |||
| 5413 | CVE_STATUS[CVE-2023-52465] = "fixed-version: Fixed from version 6.8" | ||
| 5414 | |||
| 5415 | CVE_STATUS[CVE-2023-52467] = "fixed-version: Fixed from version 6.8" | ||
| 5416 | |||
| 5417 | CVE_STATUS[CVE-2023-52468] = "fixed-version: Fixed from version 6.8" | ||
| 5418 | |||
| 5419 | CVE_STATUS[CVE-2023-52469] = "fixed-version: Fixed from version 6.8" | ||
| 5420 | |||
| 5421 | CVE_STATUS[CVE-2023-52470] = "fixed-version: Fixed from version 6.8" | ||
| 5422 | |||
| 5423 | CVE_STATUS[CVE-2023-52471] = "fixed-version: Fixed from version 6.8" | ||
| 5424 | |||
| 5425 | CVE_STATUS[CVE-2023-52472] = "fixed-version: Fixed from version 6.8" | ||
| 5426 | |||
| 5427 | CVE_STATUS[CVE-2023-52473] = "fixed-version: Fixed from version 6.8" | ||
| 5428 | |||
| 5429 | CVE_STATUS[CVE-2023-52474] = "fixed-version: Fixed from version 6.4" | ||
| 5430 | |||
| 5431 | CVE_STATUS[CVE-2023-52475] = "fixed-version: Fixed from version 6.6" | ||
| 5432 | |||
| 5433 | CVE_STATUS[CVE-2023-52476] = "fixed-version: Fixed from version 6.6" | ||
| 5434 | |||
| 5435 | CVE_STATUS[CVE-2023-52477] = "fixed-version: Fixed from version 6.6" | ||
| 5436 | |||
| 5437 | CVE_STATUS[CVE-2023-52478] = "fixed-version: Fixed from version 6.6" | ||
| 5438 | |||
| 5439 | CVE_STATUS[CVE-2023-52479] = "fixed-version: Fixed from version 6.6" | ||
| 5440 | |||
| 5441 | CVE_STATUS[CVE-2023-52480] = "fixed-version: Fixed from version 6.6" | ||
| 5442 | |||
| 5443 | CVE_STATUS[CVE-2023-52481] = "fixed-version: Fixed from version 6.6" | ||
| 5444 | |||
| 5445 | CVE_STATUS[CVE-2023-52482] = "fixed-version: Fixed from version 6.6" | ||
| 5446 | |||
| 5447 | CVE_STATUS[CVE-2023-52483] = "fixed-version: Fixed from version 6.6" | ||
| 5448 | |||
| 5449 | CVE_STATUS[CVE-2023-52484] = "fixed-version: Fixed from version 6.6" | ||
| 5450 | |||
| 5451 | CVE_STATUS[CVE-2023-52485] = "fixed-version: Fixed from version 6.8" | ||
| 5452 | |||
| 5453 | CVE_STATUS[CVE-2023-52486] = "fixed-version: Fixed from version 6.8" | ||
| 5454 | |||
| 5455 | CVE_STATUS[CVE-2023-52487] = "fixed-version: Fixed from version 6.8" | ||
| 5456 | |||
| 5457 | CVE_STATUS[CVE-2023-52488] = "fixed-version: Fixed from version 6.8" | ||
| 5458 | |||
| 5459 | CVE_STATUS[CVE-2023-52489] = "fixed-version: Fixed from version 6.8" | ||
| 5460 | |||
| 5461 | CVE_STATUS[CVE-2023-52490] = "fixed-version: Fixed from version 6.8" | ||
| 5462 | |||
| 5463 | CVE_STATUS[CVE-2023-52491] = "fixed-version: Fixed from version 6.8" | ||
| 5464 | |||
| 5465 | CVE_STATUS[CVE-2023-52492] = "fixed-version: Fixed from version 6.8" | ||
| 5466 | |||
| 5467 | CVE_STATUS[CVE-2023-52493] = "fixed-version: Fixed from version 6.8" | ||
| 5468 | |||
| 5469 | CVE_STATUS[CVE-2023-52494] = "fixed-version: Fixed from version 6.8" | ||
| 5470 | |||
| 5471 | CVE_STATUS[CVE-2023-52495] = "fixed-version: Fixed from version 6.8" | ||
| 5472 | |||
| 5473 | CVE_STATUS[CVE-2023-52497] = "fixed-version: Fixed from version 6.8" | ||
| 5474 | |||
| 5475 | CVE_STATUS[CVE-2023-52498] = "fixed-version: Fixed from version 6.8" | ||
| 5476 | |||
| 5477 | CVE_STATUS[CVE-2023-52499] = "fixed-version: Fixed from version 6.6" | ||
| 5478 | |||
| 5479 | CVE_STATUS[CVE-2023-52500] = "fixed-version: Fixed from version 6.6" | ||
| 5480 | |||
| 5481 | CVE_STATUS[CVE-2023-52501] = "fixed-version: Fixed from version 6.6" | ||
| 5482 | |||
| 5483 | CVE_STATUS[CVE-2023-52502] = "fixed-version: Fixed from version 6.6" | ||
| 5484 | |||
| 5485 | CVE_STATUS[CVE-2023-52503] = "fixed-version: Fixed from version 6.6" | ||
| 5486 | |||
| 5487 | CVE_STATUS[CVE-2023-52504] = "fixed-version: Fixed from version 6.6" | ||
| 5488 | |||
| 5489 | CVE_STATUS[CVE-2023-52505] = "fixed-version: Fixed from version 6.6" | ||
| 5490 | |||
| 5491 | CVE_STATUS[CVE-2023-52506] = "fixed-version: Fixed from version 6.6" | ||
| 5492 | |||
| 5493 | CVE_STATUS[CVE-2023-52507] = "fixed-version: Fixed from version 6.6" | ||
| 5494 | |||
| 5495 | CVE_STATUS[CVE-2023-52508] = "fixed-version: Fixed from version 6.6" | ||
| 5496 | |||
| 5497 | CVE_STATUS[CVE-2023-52509] = "fixed-version: Fixed from version 6.6" | ||
| 5498 | |||
| 5499 | CVE_STATUS[CVE-2023-52510] = "fixed-version: Fixed from version 6.6" | ||
| 5500 | |||
| 5501 | CVE_STATUS[CVE-2023-52511] = "fixed-version: Fixed from version 6.6" | ||
| 5502 | |||
| 5503 | CVE_STATUS[CVE-2023-52512] = "fixed-version: Fixed from version 6.6" | ||
| 5504 | |||
| 5505 | CVE_STATUS[CVE-2023-52513] = "fixed-version: Fixed from version 6.6" | ||
| 5506 | |||
| 5507 | CVE_STATUS[CVE-2023-52515] = "fixed-version: Fixed from version 6.6" | ||
| 5508 | |||
| 5509 | CVE_STATUS[CVE-2023-52516] = "fixed-version: Fixed from version 6.6" | ||
| 5510 | |||
| 5511 | CVE_STATUS[CVE-2023-52517] = "fixed-version: Fixed from version 6.6" | ||
| 5512 | |||
| 5513 | CVE_STATUS[CVE-2023-52518] = "fixed-version: Fixed from version 6.6" | ||
| 5514 | |||
| 5515 | CVE_STATUS[CVE-2023-52519] = "fixed-version: Fixed from version 6.6" | ||
| 5516 | |||
| 5517 | CVE_STATUS[CVE-2023-52520] = "fixed-version: Fixed from version 6.6" | ||
| 5518 | |||
| 5519 | CVE_STATUS[CVE-2023-52522] = "fixed-version: Fixed from version 6.6" | ||
| 5520 | |||
| 5521 | CVE_STATUS[CVE-2023-52523] = "fixed-version: Fixed from version 6.6" | ||
| 5522 | |||
| 5523 | CVE_STATUS[CVE-2023-52524] = "fixed-version: Fixed from version 6.6" | ||
| 5524 | |||
| 5525 | CVE_STATUS[CVE-2023-52525] = "fixed-version: Fixed from version 6.5.7" | ||
| 5526 | |||
| 5527 | CVE_STATUS[CVE-2023-52526] = "fixed-version: Fixed from version 6.6" | ||
| 5528 | |||
| 5529 | CVE_STATUS[CVE-2023-52527] = "fixed-version: Fixed from version 6.6" | ||
| 5530 | |||
| 5531 | CVE_STATUS[CVE-2023-52528] = "fixed-version: Fixed from version 6.6" | ||
| 5532 | |||
| 5533 | CVE_STATUS[CVE-2023-52529] = "fixed-version: Fixed from version 6.6" | ||
| 5534 | |||
| 5535 | CVE_STATUS[CVE-2023-52530] = "fixed-version: Fixed from version 6.6" | ||
| 5536 | |||
| 5537 | CVE_STATUS[CVE-2023-52531] = "fixed-version: Fixed from version 6.6" | ||
| 5538 | |||
| 5539 | CVE_STATUS[CVE-2023-52532] = "fixed-version: Fixed from version 6.6" | ||
| 5540 | |||
| 5541 | CVE_STATUS[CVE-2023-52559] = "fixed-version: Fixed from version 6.6" | ||
| 5542 | |||
| 5543 | CVE_STATUS[CVE-2023-52560] = "fixed-version: Fixed from version 6.6" | ||
| 5544 | |||
| 5545 | CVE_STATUS[CVE-2023-52561] = "fixed-version: Fixed from version 6.6" | ||
| 5546 | |||
| 5547 | CVE_STATUS[CVE-2023-52562] = "fixed-version: Fixed from version 6.6" | ||
| 5548 | |||
| 5549 | CVE_STATUS[CVE-2023-52563] = "fixed-version: Fixed from version 6.6" | ||
| 5550 | |||
| 5551 | CVE_STATUS[CVE-2023-52564] = "fixed-version: Fixed from version 6.6" | ||
| 5552 | |||
| 5553 | CVE_STATUS[CVE-2023-52565] = "fixed-version: Fixed from version 6.6" | ||
| 5554 | |||
| 5555 | CVE_STATUS[CVE-2023-52566] = "fixed-version: Fixed from version 6.6" | ||
| 5556 | |||
| 5557 | CVE_STATUS[CVE-2023-52567] = "fixed-version: Fixed from version 6.6" | ||
| 5558 | |||
| 5559 | CVE_STATUS[CVE-2023-52568] = "fixed-version: Fixed from version 6.6" | ||
| 5560 | |||
| 5561 | CVE_STATUS[CVE-2023-52569] = "fixed-version: Fixed from version 6.6" | ||
| 5562 | |||
| 5563 | CVE_STATUS[CVE-2023-52570] = "fixed-version: Fixed from version 6.6" | ||
| 5564 | |||
| 5565 | CVE_STATUS[CVE-2023-52571] = "fixed-version: Fixed from version 6.6" | ||
| 5566 | |||
| 5567 | CVE_STATUS[CVE-2023-52572] = "fixed-version: Fixed from version 6.6" | ||
| 5568 | |||
| 5569 | CVE_STATUS[CVE-2023-52573] = "fixed-version: Fixed from version 6.6" | ||
| 5570 | |||
| 5571 | CVE_STATUS[CVE-2023-52574] = "fixed-version: Fixed from version 6.6" | ||
| 5572 | |||
| 5573 | CVE_STATUS[CVE-2023-52576] = "fixed-version: Fixed from version 6.6" | ||
| 5574 | |||
| 5575 | CVE_STATUS[CVE-2023-52577] = "fixed-version: Fixed from version 6.5.6" | ||
| 5576 | |||
| 5577 | CVE_STATUS[CVE-2023-52578] = "fixed-version: Fixed from version 6.6" | ||
| 5578 | |||
| 5579 | CVE_STATUS[CVE-2023-52580] = "fixed-version: Fixed from version 6.6" | ||
| 5580 | |||
| 5581 | CVE_STATUS[CVE-2023-52581] = "fixed-version: Fixed from version 6.6" | ||
| 5582 | |||
| 5583 | CVE_STATUS[CVE-2023-52582] = "fixed-version: Fixed from version 6.6" | ||
| 5584 | |||
| 5585 | CVE_STATUS[CVE-2023-52583] = "fixed-version: Fixed from version 6.8" | ||
| 5586 | |||
| 5587 | CVE_STATUS[CVE-2023-52584] = "fixed-version: Fixed from version 6.8" | ||
| 5588 | |||
| 5589 | CVE_STATUS[CVE-2023-52585] = "fixed-version: Fixed from version 6.8" | ||
| 5590 | |||
| 5591 | CVE_STATUS[CVE-2023-52586] = "fixed-version: Fixed from version 6.8" | ||
| 5592 | |||
| 5593 | CVE_STATUS[CVE-2023-52587] = "fixed-version: Fixed from version 6.8" | ||
| 5594 | |||
| 5595 | CVE_STATUS[CVE-2023-52588] = "fixed-version: Fixed from version 6.8" | ||
| 5596 | |||
| 5597 | CVE_STATUS[CVE-2023-52589] = "fixed-version: Fixed from version 6.8" | ||
| 5598 | |||
| 5599 | CVE_STATUS[CVE-2023-52590] = "fixed-version: Fixed from version 6.8" | ||
| 5600 | |||
| 5601 | CVE_STATUS[CVE-2023-52591] = "fixed-version: Fixed from version 6.8" | ||
| 5602 | |||
| 5603 | CVE_STATUS[CVE-2023-52593] = "fixed-version: Fixed from version 6.8" | ||
| 5604 | |||
| 5605 | CVE_STATUS[CVE-2023-52594] = "fixed-version: Fixed from version 6.8" | ||
| 5606 | |||
| 5607 | CVE_STATUS[CVE-2023-52595] = "fixed-version: Fixed from version 6.8" | ||
| 5608 | |||
| 5609 | CVE_STATUS[CVE-2023-52596] = "fixed-version: Fixed from version 6.8" | ||
| 5610 | |||
| 5611 | CVE_STATUS[CVE-2023-52597] = "fixed-version: Fixed from version 6.8" | ||
| 5612 | |||
| 5613 | CVE_STATUS[CVE-2023-52598] = "fixed-version: Fixed from version 6.8" | ||
| 5614 | |||
| 5615 | CVE_STATUS[CVE-2023-52599] = "fixed-version: Fixed from version 6.8" | ||
| 5616 | |||
| 5617 | CVE_STATUS[CVE-2023-52600] = "fixed-version: Fixed from version 6.8" | ||
| 5618 | |||
| 5619 | CVE_STATUS[CVE-2023-52601] = "fixed-version: Fixed from version 6.8" | ||
| 5620 | |||
| 5621 | CVE_STATUS[CVE-2023-52602] = "fixed-version: Fixed from version 6.8" | ||
| 5622 | |||
| 5623 | CVE_STATUS[CVE-2023-52603] = "fixed-version: Fixed from version 6.8" | ||
| 5624 | |||
| 5625 | CVE_STATUS[CVE-2023-52604] = "fixed-version: Fixed from version 6.8" | ||
| 5626 | |||
| 5627 | CVE_STATUS[CVE-2023-52606] = "fixed-version: Fixed from version 6.8" | ||
| 5628 | |||
| 5629 | CVE_STATUS[CVE-2023-52607] = "fixed-version: Fixed from version 6.8" | ||
| 5630 | |||
| 5631 | CVE_STATUS[CVE-2023-52608] = "fixed-version: Fixed from version 6.8" | ||
| 5632 | |||
| 5633 | CVE_STATUS[CVE-2023-52609] = "fixed-version: Fixed from version 6.8" | ||
| 5634 | |||
| 5635 | CVE_STATUS[CVE-2023-52610] = "fixed-version: Fixed from version 6.8" | ||
| 5636 | |||
| 5637 | CVE_STATUS[CVE-2023-52611] = "fixed-version: Fixed from version 6.8" | ||
| 5638 | |||
| 5639 | CVE_STATUS[CVE-2023-52612] = "fixed-version: Fixed from version 6.8" | ||
| 5640 | |||
| 5641 | CVE_STATUS[CVE-2023-52613] = "fixed-version: Fixed from version 6.8" | ||
| 5642 | |||
| 5643 | CVE_STATUS[CVE-2023-52614] = "fixed-version: Fixed from version 6.8" | ||
| 5644 | |||
| 5645 | CVE_STATUS[CVE-2023-52615] = "fixed-version: Fixed from version 6.8" | ||
| 5646 | |||
| 5647 | CVE_STATUS[CVE-2023-52616] = "fixed-version: Fixed from version 6.8" | ||
| 5648 | |||
| 5649 | CVE_STATUS[CVE-2023-52617] = "fixed-version: Fixed from version 6.8" | ||
| 5650 | |||
| 5651 | CVE_STATUS[CVE-2023-52618] = "fixed-version: Fixed from version 6.8" | ||
| 5652 | |||
| 5653 | CVE_STATUS[CVE-2023-52619] = "fixed-version: Fixed from version 6.8" | ||
| 5654 | |||
| 5655 | CVE_STATUS[CVE-2023-52620] = "fixed-version: Fixed from version 6.4" | ||
| 5656 | |||
| 5657 | CVE_STATUS[CVE-2023-52621] = "fixed-version: Fixed from version 6.8" | ||
| 5658 | |||
| 5659 | CVE_STATUS[CVE-2023-52622] = "fixed-version: Fixed from version 6.8" | ||
| 5660 | |||
| 5661 | CVE_STATUS[CVE-2023-52623] = "fixed-version: Fixed from version 6.8" | ||
| 5662 | |||
| 5663 | CVE_STATUS[CVE-2023-52624] = "fixed-version: Fixed from version 6.8" | ||
| 5664 | |||
| 5665 | CVE_STATUS[CVE-2023-52625] = "fixed-version: Fixed from version 6.8" | ||
| 5666 | |||
| 5667 | CVE_STATUS[CVE-2023-52626] = "fixed-version: Fixed from version 6.8" | ||
| 5668 | |||
| 5669 | CVE_STATUS[CVE-2023-52627] = "fixed-version: Fixed from version 6.8" | ||
| 5670 | |||
| 5671 | CVE_STATUS[CVE-2023-52628] = "fixed-version: Fixed from version 6.6" | ||
| 5672 | |||
| 5673 | CVE_STATUS[CVE-2023-52629] = "fixed-version: Fixed from version 6.6" | ||
| 5674 | |||
| 5675 | CVE_STATUS[CVE-2023-52631] = "fixed-version: Fixed from version 6.8" | ||
| 5676 | |||
| 5677 | CVE_STATUS[CVE-2023-52632] = "fixed-version: Fixed from version 6.8" | ||
| 5678 | |||
| 5679 | CVE_STATUS[CVE-2023-52633] = "fixed-version: Fixed from version 6.8" | ||
| 5680 | |||
| 5681 | CVE_STATUS[CVE-2023-52634] = "fixed-version: Fixed from version 6.8" | ||
| 5682 | |||
| 5683 | CVE_STATUS[CVE-2023-52635] = "fixed-version: Fixed from version 6.8" | ||
| 5684 | |||
| 5685 | CVE_STATUS[CVE-2023-52636] = "fixed-version: Fixed from version 6.8" | ||
| 5686 | |||
| 5687 | CVE_STATUS[CVE-2023-52637] = "fixed-version: Fixed from version 6.8" | ||
| 5688 | |||
| 5689 | CVE_STATUS[CVE-2023-52638] = "fixed-version: Fixed from version 6.8" | ||
| 5690 | |||
| 5691 | CVE_STATUS[CVE-2023-52639] = "fixed-version: Fixed from version 6.8" | ||
| 5692 | |||
| 5693 | CVE_STATUS[CVE-2023-52640] = "fixed-version: Fixed from version 6.8" | ||
| 5694 | |||
| 5695 | CVE_STATUS[CVE-2023-52641] = "fixed-version: Fixed from version 6.8" | ||
| 5696 | |||
| 5697 | CVE_STATUS[CVE-2023-52642] = "fixed-version: Fixed from version 6.8" | ||
| 5698 | |||
| 5699 | CVE_STATUS[CVE-2023-52643] = "fixed-version: Fixed from version 6.8" | ||
| 5700 | |||
| 5701 | CVE_STATUS[CVE-2023-52644] = "fixed-version: Fixed from version 6.9" | ||
| 5702 | |||
| 5703 | CVE_STATUS[CVE-2023-52645] = "fixed-version: Fixed from version 6.8" | ||
| 5704 | |||
| 5705 | CVE_STATUS[CVE-2023-52646] = "fixed-version: Fixed from version 6.2" | ||
| 5706 | |||
| 5707 | CVE_STATUS[CVE-2023-52647] = "fixed-version: Fixed from version 6.9" | ||
| 5708 | |||
| 5709 | CVE_STATUS[CVE-2023-52648] = "fixed-version: Fixed from version 6.9" | ||
| 5710 | |||
| 5711 | CVE_STATUS[CVE-2023-52649] = "fixed-version: Fixed from version 6.9" | ||
| 5712 | |||
| 5713 | CVE_STATUS[CVE-2023-52650] = "fixed-version: Fixed from version 6.9" | ||
| 5714 | |||
| 5715 | CVE_STATUS[CVE-2023-52652] = "fixed-version: Fixed from version 6.9" | ||
| 5716 | |||
| 5717 | CVE_STATUS[CVE-2023-52653] = "fixed-version: Fixed from version 6.9" | ||
| 5718 | |||
| 5719 | CVE_STATUS[CVE-2023-52654] = "fixed-version: Fixed from version 6.7" | ||
| 5720 | |||
| 5721 | CVE_STATUS[CVE-2023-52655] = "fixed-version: Fixed from version 6.7" | ||
| 5722 | |||
| 5723 | CVE_STATUS[CVE-2023-52656] = "fixed-version: Fixed from version 6.8" | ||
| 5724 | |||
| 5725 | CVE_STATUS[CVE-2023-52657] = "fixed-version: Fixed from version 6.8" | ||
| 5726 | |||
| 5727 | CVE_STATUS[CVE-2023-52658] = "fixed-version: Fixed from version 6.8" | ||
| 5728 | |||
| 5729 | CVE_STATUS[CVE-2023-52659] = "fixed-version: Fixed from version 6.9" | ||
| 5730 | |||
| 5731 | CVE_STATUS[CVE-2023-52660] = "fixed-version: Fixed from version 6.8" | ||
| 5732 | |||
| 5733 | CVE_STATUS[CVE-2023-52661] = "fixed-version: Fixed from version 6.9" | ||
| 5734 | |||
| 5735 | CVE_STATUS[CVE-2023-52662] = "fixed-version: Fixed from version 6.9" | ||
| 5736 | |||
| 5737 | CVE_STATUS[CVE-2023-52663] = "fixed-version: Fixed from version 6.9" | ||
| 5738 | |||
| 5739 | CVE_STATUS[CVE-2023-52664] = "fixed-version: Fixed from version 6.8" | ||
| 5740 | |||
| 5741 | CVE_STATUS[CVE-2023-52667] = "fixed-version: Fixed from version 6.8" | ||
| 5742 | |||
| 5743 | CVE_STATUS[CVE-2023-52668] = "fixed-version: Fixed from version 6.8" | ||
| 5744 | |||
| 5745 | CVE_STATUS[CVE-2023-52669] = "fixed-version: Fixed from version 6.8" | ||
| 5746 | |||
| 5747 | CVE_STATUS[CVE-2023-52670] = "fixed-version: Fixed from version 6.8" | ||
| 5748 | |||
| 5749 | CVE_STATUS[CVE-2023-52671] = "fixed-version: Fixed from version 6.8" | ||
| 5750 | |||
| 5751 | CVE_STATUS[CVE-2023-52672] = "fixed-version: Fixed from version 6.8" | ||
| 5752 | |||
| 5753 | CVE_STATUS[CVE-2023-52673] = "fixed-version: Fixed from version 6.8" | ||
| 5754 | |||
| 5755 | CVE_STATUS[CVE-2023-52674] = "fixed-version: Fixed from version 6.8" | ||
| 5756 | |||
| 5757 | CVE_STATUS[CVE-2023-52675] = "fixed-version: Fixed from version 6.8" | ||
| 5758 | |||
| 5759 | CVE_STATUS[CVE-2023-52676] = "fixed-version: Fixed from version 6.8" | ||
| 5760 | |||
| 5761 | CVE_STATUS[CVE-2023-52677] = "fixed-version: Fixed from version 6.8" | ||
| 5762 | |||
| 5763 | CVE_STATUS[CVE-2023-52678] = "fixed-version: Fixed from version 6.8" | ||
| 5764 | |||
| 5765 | CVE_STATUS[CVE-2023-52679] = "fixed-version: Fixed from version 6.8" | ||
| 5766 | |||
| 5767 | CVE_STATUS[CVE-2023-52680] = "fixed-version: Fixed from version 6.8" | ||
| 5768 | |||
| 5769 | CVE_STATUS[CVE-2023-52681] = "fixed-version: Fixed from version 6.8" | ||
| 5770 | |||
| 5771 | CVE_STATUS[CVE-2023-52682] = "fixed-version: Fixed from version 6.8" | ||
| 5772 | |||
| 5773 | CVE_STATUS[CVE-2023-52683] = "fixed-version: Fixed from version 6.8" | ||
| 5774 | |||
| 5775 | CVE_STATUS[CVE-2023-52684] = "fixed-version: Fixed from version 6.8" | ||
| 5776 | |||
| 5777 | CVE_STATUS[CVE-2023-52686] = "fixed-version: Fixed from version 6.8" | ||
| 5778 | |||
| 5779 | CVE_STATUS[CVE-2023-52687] = "fixed-version: Fixed from version 6.8" | ||
| 5780 | |||
| 5781 | CVE_STATUS[CVE-2023-52688] = "fixed-version: Fixed from version 6.8" | ||
| 5782 | |||
| 5783 | CVE_STATUS[CVE-2023-52689] = "fixed-version: Fixed from version 6.8" | ||
| 5784 | |||
| 5785 | CVE_STATUS[CVE-2023-52690] = "fixed-version: Fixed from version 6.8" | ||
| 5786 | |||
| 5787 | CVE_STATUS[CVE-2023-52691] = "fixed-version: Fixed from version 6.8" | ||
| 5788 | |||
| 5789 | CVE_STATUS[CVE-2023-52692] = "fixed-version: Fixed from version 6.8" | ||
| 5790 | |||
| 5791 | CVE_STATUS[CVE-2023-52693] = "fixed-version: Fixed from version 6.8" | ||
| 5792 | |||
| 5793 | CVE_STATUS[CVE-2023-52694] = "fixed-version: Fixed from version 6.8" | ||
| 5794 | |||
| 5795 | CVE_STATUS[CVE-2023-52695] = "fixed-version: Fixed from version 6.8" | ||
| 5796 | |||
| 5797 | CVE_STATUS[CVE-2023-52696] = "fixed-version: Fixed from version 6.8" | ||
| 5798 | |||
| 5799 | CVE_STATUS[CVE-2023-52697] = "fixed-version: Fixed from version 6.8" | ||
| 5800 | |||
| 5801 | CVE_STATUS[CVE-2023-52698] = "fixed-version: Fixed from version 6.8" | ||
| 5802 | |||
| 5803 | CVE_STATUS[CVE-2023-52699] = "fixed-version: Fixed from version 6.9" | ||
| 5804 | |||
| 5805 | CVE_STATUS[CVE-2023-52700] = "fixed-version: Fixed from version 6.2" | ||
| 5806 | |||
| 5807 | CVE_STATUS[CVE-2023-52701] = "fixed-version: Fixed from version 6.2" | ||
| 5808 | |||
| 5809 | CVE_STATUS[CVE-2023-52702] = "fixed-version: Fixed from version 6.2" | ||
| 5810 | |||
| 5811 | CVE_STATUS[CVE-2023-52703] = "fixed-version: Fixed from version 6.2" | ||
| 5812 | |||
| 5813 | CVE_STATUS[CVE-2023-52704] = "fixed-version: Fixed from version 6.2" | ||
| 5814 | |||
| 5815 | CVE_STATUS[CVE-2023-52705] = "fixed-version: Fixed from version 6.2" | ||
| 5816 | |||
| 5817 | CVE_STATUS[CVE-2023-52706] = "fixed-version: Fixed from version 6.2" | ||
| 5818 | |||
| 5819 | CVE_STATUS[CVE-2023-52707] = "fixed-version: Fixed from version 6.2" | ||
| 5820 | |||
| 5821 | CVE_STATUS[CVE-2023-52708] = "fixed-version: Fixed from version 6.2" | ||
| 5822 | |||
| 5823 | CVE_STATUS[CVE-2023-52730] = "fixed-version: Fixed from version 6.2" | ||
| 5824 | |||
| 5825 | CVE_STATUS[CVE-2023-52731] = "fixed-version: Fixed from version 6.2" | ||
| 5826 | |||
| 5827 | CVE_STATUS[CVE-2023-52732] = "fixed-version: Fixed from version 6.2" | ||
| 5828 | |||
| 5829 | CVE_STATUS[CVE-2023-52735] = "fixed-version: Fixed from version 6.2" | ||
| 5830 | |||
| 5831 | CVE_STATUS[CVE-2023-52736] = "fixed-version: Fixed from version 6.2" | ||
| 5832 | |||
| 5833 | CVE_STATUS[CVE-2023-52737] = "fixed-version: Fixed from version 6.2" | ||
| 5834 | |||
| 5835 | CVE_STATUS[CVE-2023-52738] = "fixed-version: Fixed from version 6.2" | ||
| 5836 | |||
| 5837 | CVE_STATUS[CVE-2023-52739] = "fixed-version: Fixed from version 6.2" | ||
| 5838 | |||
| 5839 | CVE_STATUS[CVE-2023-52740] = "fixed-version: Fixed from version 6.2" | ||
| 5840 | |||
| 5841 | CVE_STATUS[CVE-2023-52741] = "fixed-version: Fixed from version 6.2" | ||
| 5842 | |||
| 5843 | CVE_STATUS[CVE-2023-52742] = "fixed-version: Fixed from version 6.2" | ||
| 5844 | |||
| 5845 | CVE_STATUS[CVE-2023-52743] = "fixed-version: Fixed from version 6.2" | ||
| 5846 | |||
| 5847 | CVE_STATUS[CVE-2023-52744] = "fixed-version: Fixed from version 6.2" | ||
| 5848 | |||
| 5849 | CVE_STATUS[CVE-2023-52745] = "fixed-version: Fixed from version 6.1.12" | ||
| 5850 | |||
| 5851 | CVE_STATUS[CVE-2023-52746] = "fixed-version: Fixed from version 6.2" | ||
| 5852 | |||
| 5853 | CVE_STATUS[CVE-2023-52747] = "fixed-version: Fixed from version 6.2" | ||
| 5854 | |||
| 5855 | CVE_STATUS[CVE-2023-52748] = "fixed-version: Fixed from version 6.7" | ||
| 5856 | |||
| 5857 | CVE_STATUS[CVE-2023-52749] = "fixed-version: Fixed from version 6.7" | ||
| 5858 | |||
| 5859 | CVE_STATUS[CVE-2023-52750] = "fixed-version: Fixed from version 6.7" | ||
| 5860 | |||
| 5861 | CVE_STATUS[CVE-2023-52751] = "fixed-version: Fixed from version 6.7" | ||
| 5862 | |||
| 5863 | CVE_STATUS[CVE-2023-52752] = "fixed-version: Fixed from version 6.7" | ||
| 5864 | |||
| 5865 | CVE_STATUS[CVE-2023-52753] = "fixed-version: Fixed from version 6.7" | ||
| 5866 | |||
| 5867 | CVE_STATUS[CVE-2023-52754] = "fixed-version: Fixed from version 6.7" | ||
| 5868 | |||
| 5869 | CVE_STATUS[CVE-2023-52755] = "fixed-version: Fixed from version 6.7" | ||
| 5870 | |||
| 5871 | CVE_STATUS[CVE-2023-52757] = "fixed-version: Fixed from version 6.7" | ||
| 5872 | |||
| 5873 | CVE_STATUS[CVE-2023-52760] = "fixed-version: Fixed from version 6.7" | ||
| 5874 | |||
| 5875 | CVE_STATUS[CVE-2023-52761] = "fixed-version: Fixed from version 6.7" | ||
| 5876 | |||
| 5877 | CVE_STATUS[CVE-2023-52762] = "fixed-version: Fixed from version 6.7" | ||
| 5878 | |||
| 5879 | CVE_STATUS[CVE-2023-52763] = "fixed-version: Fixed from version 6.7" | ||
| 5880 | |||
| 5881 | CVE_STATUS[CVE-2023-52764] = "fixed-version: Fixed from version 6.7" | ||
| 5882 | |||
| 5883 | CVE_STATUS[CVE-2023-52765] = "fixed-version: Fixed from version 6.7" | ||
| 5884 | |||
| 5885 | CVE_STATUS[CVE-2023-52766] = "fixed-version: Fixed from version 6.7" | ||
| 5886 | |||
| 5887 | CVE_STATUS[CVE-2023-52767] = "fixed-version: Fixed from version 6.7" | ||
| 5888 | |||
| 5889 | CVE_STATUS[CVE-2023-52768] = "fixed-version: Fixed from version 6.7" | ||
| 5890 | |||
| 5891 | CVE_STATUS[CVE-2023-52769] = "fixed-version: Fixed from version 6.7" | ||
| 5892 | |||
| 5893 | CVE_STATUS[CVE-2023-52770] = "fixed-version: Fixed from version 6.7" | ||
| 5894 | |||
| 5895 | CVE_STATUS[CVE-2023-52771] = "fixed-version: Fixed from version 6.7" | ||
| 5896 | |||
| 5897 | CVE_STATUS[CVE-2023-52772] = "fixed-version: Fixed from version 6.7" | ||
| 5898 | |||
| 5899 | CVE_STATUS[CVE-2023-52773] = "fixed-version: Fixed from version 6.7" | ||
| 5900 | |||
| 5901 | CVE_STATUS[CVE-2023-52774] = "fixed-version: Fixed from version 6.7" | ||
| 5902 | |||
| 5903 | CVE_STATUS[CVE-2023-52775] = "fixed-version: Fixed from version 6.7" | ||
| 5904 | |||
| 5905 | CVE_STATUS[CVE-2023-52776] = "fixed-version: Fixed from version 6.7" | ||
| 5906 | |||
| 5907 | CVE_STATUS[CVE-2023-52777] = "fixed-version: Fixed from version 6.7" | ||
| 5908 | |||
| 5909 | CVE_STATUS[CVE-2023-52778] = "fixed-version: Fixed from version 6.7" | ||
| 5910 | |||
| 5911 | CVE_STATUS[CVE-2023-52779] = "fixed-version: Fixed from version 6.7" | ||
| 5912 | |||
| 5913 | CVE_STATUS[CVE-2023-52780] = "fixed-version: Fixed from version 6.7" | ||
| 5914 | |||
| 5915 | CVE_STATUS[CVE-2023-52781] = "fixed-version: Fixed from version 6.7" | ||
| 5916 | |||
| 5917 | CVE_STATUS[CVE-2023-52782] = "fixed-version: Fixed from version 6.7" | ||
| 5918 | |||
| 5919 | CVE_STATUS[CVE-2023-52783] = "fixed-version: Fixed from version 6.7" | ||
| 5920 | |||
| 5921 | CVE_STATUS[CVE-2023-52784] = "fixed-version: Fixed from version 6.7" | ||
| 5922 | |||
| 5923 | CVE_STATUS[CVE-2023-52785] = "fixed-version: Fixed from version 6.7" | ||
| 5924 | |||
| 5925 | CVE_STATUS[CVE-2023-52786] = "fixed-version: Fixed from version 6.7" | ||
| 5926 | |||
| 5927 | CVE_STATUS[CVE-2023-52787] = "fixed-version: Fixed from version 6.7" | ||
| 5928 | |||
| 5929 | CVE_STATUS[CVE-2023-52788] = "fixed-version: Fixed from version 6.7" | ||
| 5930 | |||
| 5931 | CVE_STATUS[CVE-2023-52789] = "fixed-version: Fixed from version 6.7" | ||
| 5932 | |||
| 5933 | CVE_STATUS[CVE-2023-52790] = "fixed-version: Fixed from version 6.7" | ||
| 5934 | |||
| 5935 | CVE_STATUS[CVE-2023-52791] = "fixed-version: Fixed from version 6.7" | ||
| 5936 | |||
| 5937 | CVE_STATUS[CVE-2023-52792] = "fixed-version: Fixed from version 6.7" | ||
| 5938 | |||
| 5939 | CVE_STATUS[CVE-2023-52794] = "fixed-version: Fixed from version 6.7" | ||
| 5940 | |||
| 5941 | CVE_STATUS[CVE-2023-52795] = "fixed-version: Fixed from version 6.7" | ||
| 5942 | |||
| 5943 | CVE_STATUS[CVE-2023-52796] = "fixed-version: Fixed from version 6.7" | ||
| 5944 | |||
| 5945 | CVE_STATUS[CVE-2023-52797] = "fixed-version: Fixed from version 6.7" | ||
| 5946 | |||
| 5947 | CVE_STATUS[CVE-2023-52798] = "fixed-version: Fixed from version 6.7" | ||
| 5948 | |||
| 5949 | CVE_STATUS[CVE-2023-52799] = "fixed-version: Fixed from version 6.7" | ||
| 5950 | |||
| 5951 | CVE_STATUS[CVE-2023-52800] = "fixed-version: Fixed from version 6.7" | ||
| 5952 | |||
| 5953 | CVE_STATUS[CVE-2023-52801] = "fixed-version: Fixed from version 6.7" | ||
| 5954 | |||
| 5955 | CVE_STATUS[CVE-2023-52803] = "fixed-version: Fixed from version 6.7" | ||
| 5956 | |||
| 5957 | CVE_STATUS[CVE-2023-52804] = "fixed-version: Fixed from version 6.7" | ||
| 5958 | |||
| 5959 | CVE_STATUS[CVE-2023-52805] = "fixed-version: Fixed from version 6.7" | ||
| 5960 | |||
| 5961 | CVE_STATUS[CVE-2023-52806] = "fixed-version: Fixed from version 6.7" | ||
| 5962 | |||
| 5963 | CVE_STATUS[CVE-2023-52807] = "fixed-version: Fixed from version 6.7" | ||
| 5964 | |||
| 5965 | CVE_STATUS[CVE-2023-52808] = "fixed-version: Fixed from version 6.7" | ||
| 5966 | |||
| 5967 | CVE_STATUS[CVE-2023-52809] = "fixed-version: Fixed from version 6.7" | ||
| 5968 | |||
| 5969 | CVE_STATUS[CVE-2023-52810] = "fixed-version: Fixed from version 6.7" | ||
| 5970 | |||
| 5971 | CVE_STATUS[CVE-2023-52811] = "fixed-version: Fixed from version 6.7" | ||
| 5972 | |||
| 5973 | CVE_STATUS[CVE-2023-52812] = "fixed-version: Fixed from version 6.7" | ||
| 5974 | |||
| 5975 | CVE_STATUS[CVE-2023-52813] = "fixed-version: Fixed from version 6.7" | ||
| 5976 | |||
| 5977 | CVE_STATUS[CVE-2023-52814] = "fixed-version: Fixed from version 6.7" | ||
| 5978 | |||
| 5979 | CVE_STATUS[CVE-2023-52815] = "fixed-version: Fixed from version 6.7" | ||
| 5980 | |||
| 5981 | CVE_STATUS[CVE-2023-52816] = "fixed-version: Fixed from version 6.7" | ||
| 5982 | |||
| 5983 | CVE_STATUS[CVE-2023-52817] = "fixed-version: Fixed from version 6.7" | ||
| 5984 | |||
| 5985 | CVE_STATUS[CVE-2023-52818] = "fixed-version: Fixed from version 6.7" | ||
| 5986 | |||
| 5987 | CVE_STATUS[CVE-2023-52819] = "fixed-version: Fixed from version 6.7" | ||
| 5988 | |||
| 5989 | CVE_STATUS[CVE-2023-52821] = "fixed-version: Fixed from version 6.7" | ||
| 5990 | |||
| 5991 | CVE_STATUS[CVE-2023-52825] = "fixed-version: Fixed from version 6.7" | ||
| 5992 | |||
| 5993 | CVE_STATUS[CVE-2023-52826] = "fixed-version: Fixed from version 6.7" | ||
| 5994 | |||
| 5995 | CVE_STATUS[CVE-2023-52827] = "fixed-version: Fixed from version 6.7" | ||
| 5996 | |||
| 5997 | CVE_STATUS[CVE-2023-52828] = "fixed-version: Fixed from version 6.7" | ||
| 5998 | |||
| 5999 | CVE_STATUS[CVE-2023-52829] = "fixed-version: Fixed from version 6.7" | ||
| 6000 | |||
| 6001 | CVE_STATUS[CVE-2023-52831] = "fixed-version: Fixed from version 6.7" | ||
| 6002 | |||
| 6003 | CVE_STATUS[CVE-2023-52832] = "fixed-version: Fixed from version 6.7" | ||
| 6004 | |||
| 6005 | CVE_STATUS[CVE-2023-52833] = "fixed-version: Fixed from version 6.7" | ||
| 6006 | |||
| 6007 | CVE_STATUS[CVE-2023-52834] = "fixed-version: Fixed from version 6.7" | ||
| 6008 | |||
| 6009 | CVE_STATUS[CVE-2023-52835] = "fixed-version: Fixed from version 6.7" | ||
| 6010 | |||
| 6011 | CVE_STATUS[CVE-2023-52836] = "fixed-version: Fixed from version 6.7" | ||
| 6012 | |||
| 6013 | CVE_STATUS[CVE-2023-52837] = "fixed-version: Fixed from version 6.7" | ||
| 6014 | |||
| 6015 | CVE_STATUS[CVE-2023-52838] = "fixed-version: Fixed from version 6.7" | ||
| 6016 | |||
| 6017 | CVE_STATUS[CVE-2023-52839] = "fixed-version: Fixed from version 6.7" | ||
| 6018 | |||
| 6019 | CVE_STATUS[CVE-2023-52840] = "fixed-version: Fixed from version 6.7" | ||
| 6020 | |||
| 6021 | CVE_STATUS[CVE-2023-52841] = "fixed-version: Fixed from version 6.7" | ||
| 6022 | |||
| 6023 | CVE_STATUS[CVE-2023-52842] = "fixed-version: Fixed from version 6.7" | ||
| 6024 | |||
| 6025 | CVE_STATUS[CVE-2023-52843] = "fixed-version: Fixed from version 6.7" | ||
| 6026 | |||
| 6027 | CVE_STATUS[CVE-2023-52844] = "fixed-version: Fixed from version 6.7" | ||
| 6028 | |||
| 6029 | CVE_STATUS[CVE-2023-52845] = "fixed-version: Fixed from version 6.7" | ||
| 6030 | |||
| 6031 | CVE_STATUS[CVE-2023-52846] = "fixed-version: Fixed from version 6.7" | ||
| 6032 | |||
| 6033 | CVE_STATUS[CVE-2023-52847] = "fixed-version: Fixed from version 6.7" | ||
| 6034 | |||
| 6035 | CVE_STATUS[CVE-2023-52848] = "fixed-version: Fixed from version 6.7" | ||
| 6036 | |||
| 6037 | CVE_STATUS[CVE-2023-52849] = "fixed-version: Fixed from version 6.7" | ||
| 6038 | |||
| 6039 | CVE_STATUS[CVE-2023-52850] = "fixed-version: Fixed from version 6.7" | ||
| 6040 | |||
| 6041 | CVE_STATUS[CVE-2023-52851] = "fixed-version: Fixed from version 6.7" | ||
| 6042 | |||
| 6043 | CVE_STATUS[CVE-2023-52852] = "fixed-version: Fixed from version 6.7" | ||
| 6044 | |||
| 6045 | CVE_STATUS[CVE-2023-52853] = "fixed-version: Fixed from version 6.7" | ||
| 6046 | |||
| 6047 | CVE_STATUS[CVE-2023-52854] = "fixed-version: Fixed from version 6.7" | ||
| 6048 | |||
| 6049 | CVE_STATUS[CVE-2023-52855] = "fixed-version: Fixed from version 6.7" | ||
| 6050 | |||
| 6051 | CVE_STATUS[CVE-2023-52856] = "fixed-version: Fixed from version 6.7" | ||
| 6052 | |||
| 6053 | CVE_STATUS[CVE-2023-52857] = "fixed-version: Fixed from version 6.7" | ||
| 6054 | |||
| 6055 | CVE_STATUS[CVE-2023-52858] = "fixed-version: Fixed from version 6.7" | ||
| 6056 | |||
| 6057 | CVE_STATUS[CVE-2023-52859] = "fixed-version: Fixed from version 6.7" | ||
| 6058 | |||
| 6059 | CVE_STATUS[CVE-2023-52860] = "fixed-version: Fixed from version 6.7" | ||
| 6060 | |||
| 6061 | CVE_STATUS[CVE-2023-52861] = "fixed-version: Fixed from version 6.7" | ||
| 6062 | |||
| 6063 | CVE_STATUS[CVE-2023-52862] = "fixed-version: Fixed from version 6.7" | ||
| 6064 | |||
| 6065 | CVE_STATUS[CVE-2023-52863] = "fixed-version: Fixed from version 6.7" | ||
| 6066 | |||
| 6067 | CVE_STATUS[CVE-2023-52864] = "fixed-version: Fixed from version 6.7" | ||
| 6068 | |||
| 6069 | CVE_STATUS[CVE-2023-52865] = "fixed-version: Fixed from version 6.7" | ||
| 6070 | |||
| 6071 | CVE_STATUS[CVE-2023-52866] = "fixed-version: Fixed from version 6.7" | ||
| 6072 | |||
| 6073 | CVE_STATUS[CVE-2023-52867] = "fixed-version: Fixed from version 6.7" | ||
| 6074 | |||
| 6075 | CVE_STATUS[CVE-2023-52868] = "fixed-version: Fixed from version 6.7" | ||
| 6076 | |||
| 6077 | CVE_STATUS[CVE-2023-52869] = "fixed-version: Fixed from version 6.7" | ||
| 6078 | |||
| 6079 | CVE_STATUS[CVE-2023-52870] = "fixed-version: Fixed from version 6.7" | ||
| 6080 | |||
| 6081 | CVE_STATUS[CVE-2023-52871] = "fixed-version: Fixed from version 6.7" | ||
| 6082 | |||
| 6083 | CVE_STATUS[CVE-2023-52872] = "fixed-version: Fixed from version 6.7" | ||
| 6084 | |||
| 6085 | CVE_STATUS[CVE-2023-52873] = "fixed-version: Fixed from version 6.7" | ||
| 6086 | |||
| 6087 | CVE_STATUS[CVE-2023-52874] = "fixed-version: Fixed from version 6.7" | ||
| 6088 | |||
| 6089 | CVE_STATUS[CVE-2023-52875] = "fixed-version: Fixed from version 6.7" | ||
| 6090 | |||
| 6091 | CVE_STATUS[CVE-2023-52876] = "fixed-version: Fixed from version 6.7" | ||
| 6092 | |||
| 6093 | CVE_STATUS[CVE-2023-52877] = "fixed-version: Fixed from version 6.7" | ||
| 6094 | |||
| 6095 | CVE_STATUS[CVE-2023-52878] = "fixed-version: Fixed from version 6.7" | ||
| 6096 | |||
| 6097 | CVE_STATUS[CVE-2023-52879] = "fixed-version: Fixed from version 6.7" | ||
| 6098 | |||
| 6099 | CVE_STATUS[CVE-2023-52880] = "fixed-version: Fixed from version 6.6" | ||
| 6100 | |||
| 6101 | CVE_STATUS[CVE-2023-52881] = "fixed-version: Fixed from version 6.7" | ||
| 6102 | |||
| 6103 | CVE_STATUS[CVE-2023-52882] = "fixed-version: Fixed from version 6.9" | ||
| 6104 | |||
| 6105 | CVE_STATUS[CVE-2023-52883] = "fixed-version: Fixed from version 6.6" | ||
| 6106 | |||
| 6107 | CVE_STATUS[CVE-2023-52884] = "fixed-version: Fixed from version 6.10" | ||
| 6108 | |||
| 6109 | CVE_STATUS[CVE-2023-52885] = "fixed-version: Fixed from version 6.5" | ||
| 6110 | |||
| 6111 | CVE_STATUS[CVE-2023-52886] = "fixed-version: Fixed from version 6.6" | ||
| 6112 | |||
| 6113 | CVE_STATUS[CVE-2023-52887] = "fixed-version: Fixed from version 6.10" | ||
| 6114 | |||
| 6115 | CVE_STATUS[CVE-2023-52888] = "fixed-version: Fixed from version 6.10" | ||
| 6116 | |||
| 6117 | CVE_STATUS[CVE-2023-52889] = "fixed-version: Fixed from version 6.11" | ||
| 6118 | |||
| 6119 | CVE_STATUS[CVE-2023-52893] = "fixed-version: Fixed from version 6.2" | ||
| 6120 | |||
| 6121 | CVE_STATUS[CVE-2023-52894] = "fixed-version: Fixed from version 6.2" | ||
| 6122 | |||
| 6123 | CVE_STATUS[CVE-2023-52895] = "fixed-version: Fixed from version 6.1.8" | ||
| 6124 | |||
| 6125 | CVE_STATUS[CVE-2023-52896] = "fixed-version: Fixed from version 6.2" | ||
| 6126 | |||
| 6127 | CVE_STATUS[CVE-2023-52897] = "fixed-version: Fixed from version 6.2" | ||
| 6128 | |||
| 6129 | CVE_STATUS[CVE-2023-52898] = "fixed-version: Fixed from version 6.2" | ||
| 6130 | |||
| 6131 | CVE_STATUS[CVE-2023-52899] = "fixed-version: Fixed from version 6.2" | ||
| 6132 | |||
| 6133 | CVE_STATUS[CVE-2023-52900] = "fixed-version: Fixed from version 6.2" | ||
| 6134 | |||
| 6135 | CVE_STATUS[CVE-2023-52901] = "fixed-version: Fixed from version 6.2" | ||
| 6136 | |||
| 6137 | CVE_STATUS[CVE-2023-52902] = "fixed-version: Fixed from version 6.2" | ||
| 6138 | |||
| 6139 | CVE_STATUS[CVE-2023-52903] = "fixed-version: Fixed from version 6.2" | ||
| 6140 | |||
| 6141 | CVE_STATUS[CVE-2023-52904] = "fixed-version: Fixed from version 5.15.168" | ||
| 6142 | |||
| 6143 | CVE_STATUS[CVE-2023-52905] = "fixed-version: Fixed from version 6.2" | ||
| 6144 | |||
| 6145 | CVE_STATUS[CVE-2023-52906] = "fixed-version: Fixed from version 6.2" | ||
| 6146 | |||
| 6147 | CVE_STATUS[CVE-2023-52907] = "fixed-version: Fixed from version 6.2" | ||
| 6148 | |||
| 6149 | CVE_STATUS[CVE-2023-52908] = "fixed-version: Fixed from version 6.1.7" | ||
| 6150 | |||
| 6151 | CVE_STATUS[CVE-2023-52909] = "fixed-version: Fixed from version 6.2" | ||
| 6152 | |||
| 6153 | CVE_STATUS[CVE-2023-52910] = "fixed-version: Fixed from version 6.2" | ||
| 6154 | |||
| 6155 | CVE_STATUS[CVE-2023-52911] = "fixed-version: Fixed from version 6.2" | ||
| 6156 | |||
| 6157 | CVE_STATUS[CVE-2023-52912] = "fixed-version: Fixed from version 6.2" | ||
| 6158 | |||
| 6159 | CVE_STATUS[CVE-2023-52913] = "fixed-version: Fixed from version 6.2" | ||
| 6160 | |||
| 6161 | CVE_STATUS[CVE-2023-52914] = "fixed-version: Fixed from version 6.2" | ||
| 6162 | |||
| 6163 | CVE_STATUS[CVE-2023-52915] = "fixed-version: Fixed from version 6.6" | ||
| 6164 | |||
| 6165 | CVE_STATUS[CVE-2023-52916] = "fixed-version: Fixed from version 6.6" | ||
| 6166 | |||
| 6167 | CVE_STATUS[CVE-2023-52918] = "fixed-version: Fixed from version 6.9" | ||
| 6168 | |||
| 6169 | CVE_STATUS[CVE-2023-52919] = "fixed-version: Fixed from version 6.6" | ||
| 6170 | |||
| 6171 | CVE_STATUS[CVE-2023-52920] = "fixed-version: Fixed from version 6.8" | ||
| 6172 | |||
| 6173 | CVE_STATUS[CVE-2023-52921] = "fixed-version: Fixed from version 6.5" | ||
| 6174 | |||
| 6175 | CVE_STATUS[CVE-2023-52922] = "fixed-version: Fixed from version 6.5" | ||
| 6176 | |||
| 6177 | CVE_STATUS[CVE-2023-52923] = "fixed-version: Fixed from version 6.5" | ||
| 6178 | |||
| 6179 | CVE_STATUS[CVE-2023-52924] = "fixed-version: Fixed from version 6.5" | ||
| 6180 | |||
| 6181 | CVE_STATUS[CVE-2023-52925] = "fixed-version: Fixed from version 6.4.12" | ||
| 6182 | |||
| 6183 | CVE_STATUS[CVE-2023-52926] = "fixed-version: Fixed from version 6.7" | ||
| 6184 | |||
| 6185 | CVE_STATUS[CVE-2023-52927] = "fixed-version: Fixed from version 6.6" | ||
| 6186 | |||
| 6187 | CVE_STATUS[CVE-2023-52928] = "fixed-version: Fixed from version 6.2" | ||
| 6188 | |||
| 6189 | CVE_STATUS[CVE-2023-52929] = "fixed-version: Fixed from version 6.2" | ||
| 6190 | |||
| 6191 | CVE_STATUS[CVE-2023-52930] = "fixed-version: Fixed from version 6.2" | ||
| 6192 | |||
| 6193 | CVE_STATUS[CVE-2023-52931] = "fixed-version: Fixed from version 6.2" | ||
| 6194 | |||
| 6195 | CVE_STATUS[CVE-2023-52932] = "fixed-version: Fixed from version 6.2" | ||
| 6196 | |||
| 6197 | CVE_STATUS[CVE-2023-52933] = "fixed-version: Fixed from version 6.2" | ||
| 6198 | |||
| 6199 | CVE_STATUS[CVE-2023-52934] = "fixed-version: Fixed from version 6.2" | ||
| 6200 | |||
| 6201 | CVE_STATUS[CVE-2023-52935] = "fixed-version: Fixed from version 6.2" | ||
| 6202 | |||
| 6203 | CVE_STATUS[CVE-2023-52936] = "fixed-version: Fixed from version 6.2" | ||
| 6204 | |||
| 6205 | CVE_STATUS[CVE-2023-52937] = "fixed-version: Fixed from version 6.2" | ||
| 6206 | |||
| 6207 | CVE_STATUS[CVE-2023-52938] = "fixed-version: Fixed from version 6.1.11" | ||
| 6208 | |||
| 6209 | CVE_STATUS[CVE-2023-52939] = "fixed-version: Fixed from version 6.2" | ||
| 6210 | |||
| 6211 | CVE_STATUS[CVE-2023-52940] = "fixed-version: Fixed from version 6.2" | ||
| 6212 | |||
| 6213 | CVE_STATUS[CVE-2023-52941] = "fixed-version: Fixed from version 6.2" | ||
| 6214 | |||
| 6215 | CVE_STATUS[CVE-2023-52942] = "fixed-version: Fixed from version 6.2" | ||
| 6216 | |||
| 6217 | CVE_STATUS[CVE-2023-52973] = "fixed-version: Fixed from version 6.2" | ||
| 6218 | |||
| 6219 | CVE_STATUS[CVE-2023-52974] = "fixed-version: Fixed from version 6.2" | ||
| 6220 | |||
| 6221 | CVE_STATUS[CVE-2023-52975] = "fixed-version: Fixed from version 6.2" | ||
| 6222 | |||
| 6223 | CVE_STATUS[CVE-2023-52976] = "fixed-version: Fixed from version 6.2" | ||
| 6224 | |||
| 6225 | CVE_STATUS[CVE-2023-52977] = "fixed-version: Fixed from version 6.1.11" | ||
| 6226 | |||
| 6227 | CVE_STATUS[CVE-2023-52978] = "fixed-version: Fixed from version 6.2" | ||
| 6228 | |||
| 6229 | CVE_STATUS[CVE-2023-52980] = "fixed-version: Fixed from version 6.2" | ||
| 6230 | |||
| 6231 | CVE_STATUS[CVE-2023-52981] = "fixed-version: Fixed from version 6.2" | ||
| 6232 | |||
| 6233 | CVE_STATUS[CVE-2023-52982] = "fixed-version: Fixed from version 6.2" | ||
| 6234 | |||
| 6235 | CVE_STATUS[CVE-2023-52983] = "fixed-version: Fixed from version 6.1.11" | ||
| 6236 | |||
| 6237 | CVE_STATUS[CVE-2023-52984] = "fixed-version: Fixed from version 6.2" | ||
| 6238 | |||
| 6239 | CVE_STATUS[CVE-2023-52985] = "fixed-version: Fixed from version 6.2" | ||
| 6240 | |||
| 6241 | CVE_STATUS[CVE-2023-52986] = "fixed-version: Fixed from version 6.2" | ||
| 6242 | |||
| 6243 | CVE_STATUS[CVE-2023-52987] = "fixed-version: Fixed from version 6.2" | ||
| 6244 | |||
| 6245 | CVE_STATUS[CVE-2023-52988] = "fixed-version: Fixed from version 6.2" | ||
| 6246 | |||
| 6247 | CVE_STATUS[CVE-2023-52989] = "fixed-version: Fixed from version 6.2" | ||
| 6248 | |||
| 6249 | CVE_STATUS[CVE-2023-52991] = "fixed-version: Fixed from version 6.2" | ||
| 6250 | |||
| 6251 | CVE_STATUS[CVE-2023-52992] = "fixed-version: Fixed from version 6.2" | ||
| 6252 | |||
| 6253 | CVE_STATUS[CVE-2023-52993] = "fixed-version: Fixed from version 6.2" | ||
| 6254 | |||
| 6255 | CVE_STATUS[CVE-2023-52994] = "fixed-version: Fixed from version 6.1.9" | ||
| 6256 | |||
| 6257 | CVE_STATUS[CVE-2023-52995] = "fixed-version: Fixed from version 6.2" | ||
| 6258 | |||
| 6259 | CVE_STATUS[CVE-2023-52996] = "fixed-version: Fixed from version 6.2" | ||
| 6260 | |||
| 6261 | CVE_STATUS[CVE-2023-52997] = "fixed-version: Fixed from version 6.2" | ||
| 6262 | |||
| 6263 | CVE_STATUS[CVE-2023-52998] = "fixed-version: Fixed from version 6.2" | ||
| 6264 | |||
| 6265 | CVE_STATUS[CVE-2023-52999] = "fixed-version: Fixed from version 6.2" | ||
| 6266 | |||
| 6267 | CVE_STATUS[CVE-2023-53000] = "fixed-version: Fixed from version 6.2" | ||
| 6268 | |||
| 6269 | CVE_STATUS[CVE-2023-53002] = "fixed-version: Fixed from version 6.2" | ||
| 6270 | |||
| 6271 | CVE_STATUS[CVE-2023-53003] = "fixed-version: Fixed from version 6.2" | ||
| 6272 | |||
| 6273 | CVE_STATUS[CVE-2023-53004] = "fixed-version: Fixed from version 6.2" | ||
| 6274 | |||
| 6275 | CVE_STATUS[CVE-2023-53005] = "fixed-version: Fixed from version 6.2" | ||
| 6276 | |||
| 6277 | CVE_STATUS[CVE-2023-53006] = "fixed-version: Fixed from version 6.2" | ||
| 6278 | |||
| 6279 | CVE_STATUS[CVE-2023-53007] = "fixed-version: Fixed from version 6.2" | ||
| 6280 | |||
| 6281 | CVE_STATUS[CVE-2023-53008] = "fixed-version: Fixed from version 6.2" | ||
| 6282 | |||
| 6283 | CVE_STATUS[CVE-2023-53009] = "fixed-version: Fixed from version 6.2" | ||
| 6284 | |||
| 6285 | CVE_STATUS[CVE-2023-53010] = "fixed-version: Fixed from version 6.2" | ||
| 6286 | |||
| 6287 | CVE_STATUS[CVE-2023-53011] = "fixed-version: Fixed from version 6.2" | ||
| 6288 | |||
| 6289 | # CVE-2023-53012 has no known resolution | ||
| 6290 | |||
| 6291 | CVE_STATUS[CVE-2023-53013] = "fixed-version: Fixed from version 6.2" | ||
| 6292 | |||
| 6293 | CVE_STATUS[CVE-2023-53014] = "fixed-version: Fixed from version 6.2" | ||
| 6294 | |||
| 6295 | CVE_STATUS[CVE-2023-53015] = "fixed-version: Fixed from version 6.2" | ||
| 6296 | |||
| 6297 | CVE_STATUS[CVE-2023-53016] = "fixed-version: Fixed from version 6.2" | ||
| 6298 | |||
| 6299 | CVE_STATUS[CVE-2023-53017] = "fixed-version: Fixed from version 6.2" | ||
| 6300 | |||
| 6301 | CVE_STATUS[CVE-2023-53018] = "fixed-version: Fixed from version 6.2" | ||
| 6302 | |||
| 6303 | CVE_STATUS[CVE-2023-53019] = "fixed-version: Fixed from version 6.2" | ||
| 6304 | |||
| 6305 | CVE_STATUS[CVE-2023-53020] = "fixed-version: Fixed from version 6.2" | ||
| 6306 | |||
| 6307 | CVE_STATUS[CVE-2023-53021] = "fixed-version: Fixed from version 6.2" | ||
| 6308 | |||
| 6309 | CVE_STATUS[CVE-2023-53022] = "fixed-version: Fixed from version 6.2" | ||
| 6310 | |||
| 6311 | CVE_STATUS[CVE-2023-53023] = "fixed-version: Fixed from version 6.2" | ||
| 6312 | |||
| 6313 | CVE_STATUS[CVE-2023-53024] = "fixed-version: Fixed from version 6.2" | ||
| 6314 | |||
| 6315 | CVE_STATUS[CVE-2023-53026] = "fixed-version: Fixed from version 6.2" | ||
| 6316 | |||
| 6317 | CVE_STATUS[CVE-2023-53028] = "fixed-version: Fixed from version 6.1.8" | ||
| 6318 | |||
| 6319 | CVE_STATUS[CVE-2023-53029] = "fixed-version: Fixed from version 6.1.8" | ||
| 6320 | |||
| 6321 | CVE_STATUS[CVE-2023-53030] = "fixed-version: Fixed from version 6.1.8" | ||
| 6322 | |||
| 6323 | CVE_STATUS[CVE-2023-53031] = "fixed-version: Fixed from version 6.2" | ||
| 6324 | |||
| 6325 | CVE_STATUS[CVE-2023-53032] = "fixed-version: Fixed from version 6.2" | ||
| 6326 | |||
| 6327 | CVE_STATUS[CVE-2023-53033] = "fixed-version: Fixed from version 6.2" | ||
| 6328 | |||
| 6329 | CVE_STATUS[CVE-2023-53034] = "fixed-version: Fixed from version 6.15" | ||
| 6330 | |||
| 6331 | CVE_STATUS[CVE-2023-53035] = "fixed-version: Fixed from version 6.3" | ||
| 6332 | |||
| 6333 | CVE_STATUS[CVE-2023-53036] = "fixed-version: Fixed from version 6.3" | ||
| 6334 | |||
| 6335 | CVE_STATUS[CVE-2023-53037] = "fixed-version: Fixed from version 6.3" | ||
| 6336 | |||
| 6337 | CVE_STATUS[CVE-2023-53038] = "fixed-version: Fixed from version 6.3" | ||
| 6338 | |||
| 6339 | CVE_STATUS[CVE-2023-53039] = "fixed-version: Fixed from version 6.3" | ||
| 6340 | |||
| 6341 | CVE_STATUS[CVE-2023-53040] = "fixed-version: Fixed from version 6.3" | ||
| 6342 | |||
| 6343 | CVE_STATUS[CVE-2023-53041] = "fixed-version: Fixed from version 6.3" | ||
| 6344 | |||
| 6345 | CVE_STATUS[CVE-2023-53042] = "fixed-version: Fixed from version 6.3" | ||
| 6346 | |||
| 6347 | CVE_STATUS[CVE-2023-53043] = "fixed-version: Fixed from version 6.3" | ||
| 6348 | |||
| 6349 | CVE_STATUS[CVE-2023-53044] = "fixed-version: Fixed from version 6.3" | ||
| 6350 | |||
| 6351 | CVE_STATUS[CVE-2023-53045] = "fixed-version: Fixed from version 6.3" | ||
| 6352 | |||
| 6353 | CVE_STATUS[CVE-2023-53046] = "fixed-version: Fixed from version 6.3" | ||
| 6354 | |||
| 6355 | CVE_STATUS[CVE-2023-53047] = "fixed-version: Fixed from version 6.3" | ||
| 6356 | |||
| 6357 | CVE_STATUS[CVE-2023-53048] = "fixed-version: Fixed from version 6.3" | ||
| 6358 | |||
| 6359 | CVE_STATUS[CVE-2023-53049] = "fixed-version: Fixed from version 6.3" | ||
| 6360 | |||
| 6361 | CVE_STATUS[CVE-2023-53050] = "fixed-version: Fixed from version 6.3" | ||
| 6362 | |||
| 6363 | CVE_STATUS[CVE-2023-53051] = "fixed-version: Fixed from version 6.3" | ||
| 6364 | |||
| 6365 | CVE_STATUS[CVE-2023-53052] = "fixed-version: Fixed from version 6.3" | ||
| 6366 | |||
| 6367 | CVE_STATUS[CVE-2023-53053] = "fixed-version: Fixed from version 6.3" | ||
| 6368 | |||
| 6369 | CVE_STATUS[CVE-2023-53054] = "fixed-version: Fixed from version 6.3" | ||
| 6370 | |||
| 6371 | CVE_STATUS[CVE-2023-53055] = "fixed-version: Fixed from version 6.3" | ||
| 6372 | |||
| 6373 | CVE_STATUS[CVE-2023-53056] = "fixed-version: Fixed from version 6.2.9" | ||
| 6374 | |||
| 6375 | CVE_STATUS[CVE-2023-53057] = "fixed-version: Fixed from version 6.3" | ||
| 6376 | |||
| 6377 | CVE_STATUS[CVE-2023-53058] = "fixed-version: Fixed from version 6.3" | ||
| 6378 | |||
| 6379 | CVE_STATUS[CVE-2023-53059] = "fixed-version: Fixed from version 6.3" | ||
| 6380 | |||
| 6381 | CVE_STATUS[CVE-2023-53060] = "fixed-version: Fixed from version 6.3" | ||
| 6382 | |||
| 6383 | CVE_STATUS[CVE-2023-53061] = "fixed-version: Fixed from version 6.3" | ||
| 6384 | |||
| 6385 | CVE_STATUS[CVE-2023-53062] = "fixed-version: Fixed from version 6.3" | ||
| 6386 | |||
| 6387 | CVE_STATUS[CVE-2023-53064] = "fixed-version: Fixed from version 6.3" | ||
| 6388 | |||
| 6389 | CVE_STATUS[CVE-2023-53065] = "fixed-version: Fixed from version 6.3" | ||
| 6390 | |||
| 6391 | CVE_STATUS[CVE-2023-53066] = "fixed-version: Fixed from version 6.3" | ||
| 6392 | |||
| 6393 | CVE_STATUS[CVE-2023-53067] = "fixed-version: Fixed from version 6.3" | ||
| 6394 | |||
| 6395 | CVE_STATUS[CVE-2023-53068] = "fixed-version: Fixed from version 6.3" | ||
| 6396 | |||
| 6397 | CVE_STATUS[CVE-2023-53069] = "fixed-version: Fixed from version 6.3" | ||
| 6398 | |||
| 6399 | CVE_STATUS[CVE-2023-53070] = "fixed-version: Fixed from version 6.3" | ||
| 6400 | |||
| 6401 | CVE_STATUS[CVE-2023-53071] = "fixed-version: Fixed from version 6.3" | ||
| 6402 | |||
| 6403 | CVE_STATUS[CVE-2023-53072] = "fixed-version: Fixed from version 6.3" | ||
| 6404 | |||
| 6405 | CVE_STATUS[CVE-2023-53073] = "fixed-version: Fixed from version 6.3" | ||
| 6406 | |||
| 6407 | CVE_STATUS[CVE-2023-53074] = "fixed-version: Fixed from version 6.3" | ||
| 6408 | |||
| 6409 | CVE_STATUS[CVE-2023-53075] = "fixed-version: Fixed from version 6.3" | ||
| 6410 | |||
| 6411 | CVE_STATUS[CVE-2023-53077] = "fixed-version: Fixed from version 6.3" | ||
| 6412 | |||
| 6413 | CVE_STATUS[CVE-2023-53078] = "fixed-version: Fixed from version 6.3" | ||
| 6414 | |||
| 6415 | CVE_STATUS[CVE-2023-53079] = "fixed-version: Fixed from version 6.3" | ||
| 6416 | |||
| 6417 | CVE_STATUS[CVE-2023-53080] = "fixed-version: Fixed from version 6.3" | ||
| 6418 | |||
| 6419 | CVE_STATUS[CVE-2023-53081] = "fixed-version: Fixed from version 6.3" | ||
| 6420 | |||
| 6421 | CVE_STATUS[CVE-2023-53082] = "fixed-version: Fixed from version 6.3" | ||
| 6422 | |||
| 6423 | CVE_STATUS[CVE-2023-53083] = "fixed-version: Fixed from version 6.3" | ||
| 6424 | |||
| 6425 | CVE_STATUS[CVE-2023-53084] = "fixed-version: Fixed from version 6.3" | ||
| 6426 | |||
| 6427 | CVE_STATUS[CVE-2023-53085] = "fixed-version: Fixed from version 6.3" | ||
| 6428 | |||
| 6429 | CVE_STATUS[CVE-2023-53086] = "fixed-version: Fixed from version 6.3" | ||
| 6430 | |||
| 6431 | CVE_STATUS[CVE-2023-53087] = "fixed-version: Fixed from version 6.3" | ||
| 6432 | |||
| 6433 | CVE_STATUS[CVE-2023-53088] = "fixed-version: Fixed from version 6.3" | ||
| 6434 | |||
| 6435 | CVE_STATUS[CVE-2023-53089] = "fixed-version: Fixed from version 6.3" | ||
| 6436 | |||
| 6437 | CVE_STATUS[CVE-2023-53090] = "fixed-version: Fixed from version 6.3" | ||
| 6438 | |||
| 6439 | CVE_STATUS[CVE-2023-53091] = "fixed-version: Fixed from version 6.3" | ||
| 6440 | |||
| 6441 | CVE_STATUS[CVE-2023-53092] = "fixed-version: Fixed from version 6.3" | ||
| 6442 | |||
| 6443 | CVE_STATUS[CVE-2023-53093] = "fixed-version: Fixed from version 6.3" | ||
| 6444 | |||
| 6445 | CVE_STATUS[CVE-2023-53094] = "fixed-version: Fixed from version 6.3" | ||
| 6446 | |||
| 6447 | CVE_STATUS[CVE-2023-53095] = "fixed-version: Fixed from version 6.3" | ||
| 6448 | |||
| 6449 | CVE_STATUS[CVE-2023-53096] = "fixed-version: Fixed from version 6.3" | ||
| 6450 | |||
| 6451 | CVE_STATUS[CVE-2023-53097] = "fixed-version: Fixed from version 6.3" | ||
| 6452 | |||
| 6453 | CVE_STATUS[CVE-2023-53098] = "fixed-version: Fixed from version 6.3" | ||
| 6454 | |||
| 6455 | CVE_STATUS[CVE-2023-53099] = "fixed-version: Fixed from version 6.3" | ||
| 6456 | |||
| 6457 | CVE_STATUS[CVE-2023-53100] = "fixed-version: Fixed from version 6.3" | ||
| 6458 | |||
| 6459 | CVE_STATUS[CVE-2023-53101] = "fixed-version: Fixed from version 6.3" | ||
| 6460 | |||
| 6461 | CVE_STATUS[CVE-2023-53102] = "fixed-version: Fixed from version 6.3" | ||
| 6462 | |||
| 6463 | CVE_STATUS[CVE-2023-53103] = "fixed-version: Fixed from version 6.3" | ||
| 6464 | |||
| 6465 | CVE_STATUS[CVE-2023-53105] = "fixed-version: Fixed from version 6.3" | ||
| 6466 | |||
| 6467 | CVE_STATUS[CVE-2023-53106] = "fixed-version: Fixed from version 6.3" | ||
| 6468 | |||
| 6469 | CVE_STATUS[CVE-2023-53107] = "fixed-version: Fixed from version 6.3" | ||
| 6470 | |||
| 6471 | CVE_STATUS[CVE-2023-53108] = "fixed-version: Fixed from version 6.3" | ||
| 6472 | |||
| 6473 | CVE_STATUS[CVE-2023-53109] = "fixed-version: Fixed from version 6.3" | ||
| 6474 | |||
| 6475 | CVE_STATUS[CVE-2023-53110] = "fixed-version: Fixed from version 6.3" | ||
| 6476 | |||
| 6477 | CVE_STATUS[CVE-2023-53111] = "fixed-version: Fixed from version 6.3" | ||
| 6478 | |||
| 6479 | CVE_STATUS[CVE-2023-53112] = "fixed-version: Fixed from version 6.3" | ||
| 6480 | |||
| 6481 | CVE_STATUS[CVE-2023-53113] = "fixed-version: Fixed from version 6.3" | ||
| 6482 | |||
| 6483 | CVE_STATUS[CVE-2023-53114] = "fixed-version: Fixed from version 6.3" | ||
| 6484 | |||
| 6485 | CVE_STATUS[CVE-2023-53115] = "fixed-version: Fixed from version 6.3" | ||
| 6486 | |||
| 6487 | CVE_STATUS[CVE-2023-53116] = "fixed-version: Fixed from version 6.3" | ||
| 6488 | |||
| 6489 | CVE_STATUS[CVE-2023-53117] = "fixed-version: Fixed from version 6.3" | ||
| 6490 | |||
| 6491 | CVE_STATUS[CVE-2023-53118] = "fixed-version: Fixed from version 6.2.8" | ||
| 6492 | |||
| 6493 | CVE_STATUS[CVE-2023-53119] = "fixed-version: Fixed from version 6.3" | ||
| 6494 | |||
| 6495 | CVE_STATUS[CVE-2023-53120] = "fixed-version: Fixed from version 6.3" | ||
| 6496 | |||
| 6497 | CVE_STATUS[CVE-2023-53121] = "fixed-version: Fixed from version 6.3" | ||
| 6498 | |||
| 6499 | CVE_STATUS[CVE-2023-53123] = "fixed-version: Fixed from version 6.3" | ||
| 6500 | |||
| 6501 | CVE_STATUS[CVE-2023-53124] = "fixed-version: Fixed from version 6.3" | ||
| 6502 | |||
| 6503 | CVE_STATUS[CVE-2023-53125] = "fixed-version: Fixed from version 6.3" | ||
| 6504 | |||
| 6505 | CVE_STATUS[CVE-2023-53126] = "fixed-version: Fixed from version 6.3" | ||
| 6506 | |||
| 6507 | CVE_STATUS[CVE-2023-53127] = "fixed-version: Fixed from version 6.3" | ||
| 6508 | |||
| 6509 | CVE_STATUS[CVE-2023-53128] = "fixed-version: Fixed from version 6.3" | ||
| 6510 | |||
| 6511 | CVE_STATUS[CVE-2023-53131] = "fixed-version: Fixed from version 6.3" | ||
| 6512 | |||
| 6513 | CVE_STATUS[CVE-2023-53132] = "fixed-version: Fixed from version 6.3" | ||
| 6514 | |||
| 6515 | CVE_STATUS[CVE-2023-53133] = "fixed-version: Fixed from version 6.3" | ||
| 6516 | |||
| 6517 | CVE_STATUS[CVE-2023-53134] = "fixed-version: Fixed from version 6.3" | ||
| 6518 | |||
| 6519 | CVE_STATUS[CVE-2023-53135] = "fixed-version: Fixed from version 6.3" | ||
| 6520 | |||
| 6521 | CVE_STATUS[CVE-2023-53136] = "fixed-version: Fixed from version 6.3" | ||
| 6522 | |||
| 6523 | CVE_STATUS[CVE-2023-53138] = "fixed-version: Fixed from version 6.3" | ||
| 6524 | |||
| 6525 | CVE_STATUS[CVE-2023-53139] = "fixed-version: Fixed from version 6.3" | ||
| 6526 | |||
| 6527 | CVE_STATUS[CVE-2023-53140] = "fixed-version: Fixed from version 6.3" | ||
| 6528 | |||
| 6529 | CVE_STATUS[CVE-2023-53141] = "fixed-version: Fixed from version 6.3" | ||
| 6530 | |||
| 6531 | CVE_STATUS[CVE-2023-53142] = "fixed-version: Fixed from version 6.3" | ||
| 6532 | |||
| 6533 | CVE_STATUS[CVE-2023-53143] = "fixed-version: Fixed from version 6.3" | ||
| 6534 | |||
| 6535 | CVE_STATUS[CVE-2023-53144] = "fixed-version: Fixed from version 6.3" | ||
| 6536 | |||
| 6537 | CVE_STATUS[CVE-2023-53145] = "fixed-version: Fixed from version 6.3" | ||
| 6538 | |||
| 6539 | CVE_STATUS[CVE-2023-53146] = "fixed-version: Fixed from version 6.6" | ||
| 6540 | |||
| 6541 | CVE_STATUS[CVE-2023-53147] = "fixed-version: Fixed from version 6.5" | ||
| 6542 | |||
| 6543 | CVE_STATUS[CVE-2023-53148] = "fixed-version: Fixed from version 6.5" | ||
| 6544 | |||
| 6545 | CVE_STATUS[CVE-2023-53149] = "fixed-version: Fixed from version 6.4" | ||
| 6546 | |||
| 6547 | CVE_STATUS[CVE-2023-53150] = "fixed-version: Fixed from version 6.5" | ||
| 6548 | |||
| 6549 | CVE_STATUS[CVE-2023-53151] = "fixed-version: Fixed from version 6.5" | ||
| 6550 | |||
| 6551 | CVE_STATUS[CVE-2023-53152] = "fixed-version: Fixed from version 6.5" | ||
| 6552 | |||
| 6553 | CVE_STATUS[CVE-2023-53153] = "fixed-version: Fixed from version 6.3" | ||
| 6554 | |||
| 6555 | CVE_STATUS[CVE-2023-53163] = "fixed-version: Fixed from version 6.2" | ||
| 6556 | |||
| 6557 | CVE_STATUS[CVE-2023-53164] = "fixed-version: Fixed from version 6.3" | ||
| 6558 | |||
| 6559 | CVE_STATUS[CVE-2023-53165] = "fixed-version: Fixed from version 6.5" | ||
| 6560 | |||
| 6561 | CVE_STATUS[CVE-2023-53166] = "fixed-version: Fixed from version 6.4" | ||
| 6562 | |||
| 6563 | CVE_STATUS[CVE-2023-53167] = "fixed-version: Fixed from version 6.5" | ||
| 6564 | |||
| 6565 | CVE_STATUS[CVE-2023-53168] = "fixed-version: Fixed from version 6.3" | ||
| 6566 | |||
| 6567 | CVE_STATUS[CVE-2023-53169] = "fixed-version: Fixed from version 6.3" | ||
| 6568 | |||
| 6569 | CVE_STATUS[CVE-2023-53170] = "fixed-version: Fixed from version 6.5" | ||
| 6570 | |||
| 6571 | CVE_STATUS[CVE-2023-53171] = "fixed-version: Fixed from version 6.3" | ||
| 6572 | |||
| 6573 | CVE_STATUS[CVE-2023-53172] = "fixed-version: Fixed from version 6.4" | ||
| 6574 | |||
| 6575 | CVE_STATUS[CVE-2023-53173] = "fixed-version: Fixed from version 6.3" | ||
| 6576 | |||
| 6577 | CVE_STATUS[CVE-2023-53174] = "fixed-version: Fixed from version 6.5" | ||
| 6578 | |||
| 6579 | CVE_STATUS[CVE-2023-53175] = "fixed-version: Fixed from version 6.6" | ||
| 6580 | |||
| 6581 | CVE_STATUS[CVE-2023-53176] = "fixed-version: Fixed from version 6.4" | ||
| 6582 | |||
| 6583 | CVE_STATUS[CVE-2023-53177] = "fixed-version: Fixed from version 6.5" | ||
| 6584 | |||
| 6585 | CVE_STATUS[CVE-2023-53178] = "fixed-version: Fixed from version 6.4" | ||
| 6586 | |||
| 6587 | CVE_STATUS[CVE-2023-53179] = "fixed-version: Fixed from version 6.6" | ||
| 6588 | |||
| 6589 | CVE_STATUS[CVE-2023-53180] = "fixed-version: Fixed from version 6.5" | ||
| 6590 | |||
| 6591 | CVE_STATUS[CVE-2023-53181] = "fixed-version: Fixed from version 6.5" | ||
| 6592 | |||
| 6593 | CVE_STATUS[CVE-2023-53182] = "fixed-version: Fixed from version 6.4" | ||
| 6594 | |||
| 6595 | CVE_STATUS[CVE-2023-53183] = "fixed-version: Fixed from version 6.5" | ||
| 6596 | |||
| 6597 | CVE_STATUS[CVE-2023-53184] = "fixed-version: Fixed from version 6.4.8" | ||
| 6598 | |||
| 6599 | CVE_STATUS[CVE-2023-53185] = "fixed-version: Fixed from version 6.5" | ||
| 6600 | |||
| 6601 | CVE_STATUS[CVE-2023-53186] = "fixed-version: Fixed from version 6.3" | ||
| 6602 | |||
| 6603 | # CVE-2023-53187 has no known resolution | ||
| 6604 | |||
| 6605 | CVE_STATUS[CVE-2023-53188] = "fixed-version: Fixed from version 6.3" | ||
| 6606 | |||
| 6607 | CVE_STATUS[CVE-2023-53189] = "fixed-version: Fixed from version 6.5" | ||
| 6608 | |||
| 6609 | CVE_STATUS[CVE-2023-53190] = "fixed-version: Fixed from version 6.2" | ||
| 6610 | |||
| 6611 | CVE_STATUS[CVE-2023-53191] = "fixed-version: Fixed from version 6.3" | ||
| 6612 | |||
| 6613 | CVE_STATUS[CVE-2023-53192] = "fixed-version: Fixed from version 6.5" | ||
| 6614 | |||
| 6615 | CVE_STATUS[CVE-2023-53193] = "fixed-version: Fixed from version 6.4" | ||
| 6616 | |||
| 6617 | CVE_STATUS[CVE-2023-53194] = "fixed-version: Fixed from version 6.4" | ||
| 6618 | |||
| 6619 | CVE_STATUS[CVE-2023-53195] = "fixed-version: Fixed from version 6.5" | ||
| 6620 | |||
| 6621 | CVE_STATUS[CVE-2023-53196] = "fixed-version: Fixed from version 6.5" | ||
| 6622 | |||
| 6623 | CVE_STATUS[CVE-2023-53197] = "fixed-version: Fixed from version 6.3" | ||
| 6624 | |||
| 6625 | CVE_STATUS[CVE-2023-53198] = "fixed-version: Fixed from version 6.3" | ||
| 6626 | |||
| 6627 | CVE_STATUS[CVE-2023-53199] = "fixed-version: Fixed from version 6.3" | ||
| 6628 | |||
| 6629 | CVE_STATUS[CVE-2023-53200] = "fixed-version: Fixed from version 6.3" | ||
| 6630 | |||
| 6631 | CVE_STATUS[CVE-2023-53201] = "fixed-version: Fixed from version 6.5" | ||
| 6632 | |||
| 6633 | CVE_STATUS[CVE-2023-53202] = "fixed-version: Fixed from version 6.3" | ||
| 6634 | |||
| 6635 | CVE_STATUS[CVE-2023-53203] = "fixed-version: Fixed from version 6.3" | ||
| 6636 | |||
| 6637 | CVE_STATUS[CVE-2023-53204] = "fixed-version: Fixed from version 6.6" | ||
| 6638 | |||
| 6639 | CVE_STATUS[CVE-2023-53205] = "fixed-version: Fixed from version 6.5" | ||
| 6640 | |||
| 6641 | CVE_STATUS[CVE-2023-53206] = "fixed-version: Fixed from version 6.5" | ||
| 6642 | |||
| 6643 | CVE_STATUS[CVE-2023-53207] = "fixed-version: Fixed from version 6.5" | ||
| 6644 | |||
| 6645 | CVE_STATUS[CVE-2023-53208] = "fixed-version: Fixed from version 6.6" | ||
| 6646 | |||
| 6647 | CVE_STATUS[CVE-2023-53209] = "fixed-version: Fixed from version 6.5" | ||
| 6648 | |||
| 6649 | CVE_STATUS[CVE-2023-53210] = "fixed-version: Fixed from version 6.6" | ||
| 6650 | |||
| 6651 | CVE_STATUS[CVE-2023-53211] = "fixed-version: Fixed from version 6.3" | ||
| 6652 | |||
| 6653 | CVE_STATUS[CVE-2023-53213] = "fixed-version: Fixed from version 6.4" | ||
| 6654 | |||
| 6655 | CVE_STATUS[CVE-2023-53214] = "fixed-version: Fixed from version 6.3" | ||
| 6656 | |||
| 6657 | CVE_STATUS[CVE-2023-53215] = "fixed-version: Fixed from version 6.5" | ||
| 6658 | |||
| 6659 | CVE_STATUS[CVE-2023-53216] = "fixed-version: Fixed from version 6.3" | ||
| 6660 | |||
| 6661 | CVE_STATUS[CVE-2023-53217] = "fixed-version: Fixed from version 6.5" | ||
| 6662 | |||
| 6663 | CVE_STATUS[CVE-2023-53218] = "fixed-version: Fixed from version 6.4" | ||
| 6664 | |||
| 6665 | CVE_STATUS[CVE-2023-53219] = "fixed-version: Fixed from version 6.4" | ||
| 6666 | |||
| 6667 | CVE_STATUS[CVE-2023-53220] = "fixed-version: Fixed from version 6.6" | ||
| 6668 | |||
| 6669 | CVE_STATUS[CVE-2023-53221] = "fixed-version: Fixed from version 6.5" | ||
| 6670 | |||
| 6671 | CVE_STATUS[CVE-2023-53222] = "fixed-version: Fixed from version 6.5" | ||
| 6672 | |||
| 6673 | CVE_STATUS[CVE-2023-53223] = "fixed-version: Fixed from version 6.3" | ||
| 6674 | |||
| 6675 | CVE_STATUS[CVE-2023-53224] = "fixed-version: Fixed from version 6.3" | ||
| 6676 | |||
| 6677 | CVE_STATUS[CVE-2023-53225] = "fixed-version: Fixed from version 6.4" | ||
| 6678 | |||
| 6679 | CVE_STATUS[CVE-2023-53226] = "fixed-version: Fixed from version 6.6" | ||
| 6680 | |||
| 6681 | CVE_STATUS[CVE-2023-53228] = "fixed-version: Fixed from version 6.4" | ||
| 6682 | |||
| 6683 | CVE_STATUS[CVE-2023-53229] = "fixed-version: Fixed from version 6.3" | ||
| 6684 | |||
| 6685 | CVE_STATUS[CVE-2023-53230] = "fixed-version: Fixed from version 6.5" | ||
| 6686 | |||
| 6687 | CVE_STATUS[CVE-2023-53231] = "fixed-version: Fixed from version 6.5" | ||
| 6688 | |||
| 6689 | CVE_STATUS[CVE-2023-53232] = "fixed-version: Fixed from version 6.4" | ||
| 6690 | |||
| 6691 | CVE_STATUS[CVE-2023-53233] = "fixed-version: Fixed from version 6.3" | ||
| 6692 | |||
| 6693 | CVE_STATUS[CVE-2023-53234] = "fixed-version: Fixed from version 6.3" | ||
| 6694 | |||
| 6695 | CVE_STATUS[CVE-2023-53235] = "fixed-version: Fixed from version 6.6" | ||
| 6696 | |||
| 6697 | CVE_STATUS[CVE-2023-53236] = "fixed-version: Fixed from version 6.3" | ||
| 6698 | |||
| 6699 | CVE_STATUS[CVE-2023-53237] = "fixed-version: Fixed from version 6.4" | ||
| 6700 | |||
| 6701 | CVE_STATUS[CVE-2023-53238] = "fixed-version: Fixed from version 6.5" | ||
| 6702 | |||
| 6703 | CVE_STATUS[CVE-2023-53239] = "fixed-version: Fixed from version 6.3" | ||
| 6704 | |||
| 6705 | CVE_STATUS[CVE-2023-53240] = "fixed-version: Fixed from version 6.3" | ||
| 6706 | |||
| 6707 | CVE_STATUS[CVE-2023-53241] = "fixed-version: Fixed from version 6.3" | ||
| 6708 | |||
| 6709 | CVE_STATUS[CVE-2023-53242] = "fixed-version: Fixed from version 6.3" | ||
| 6710 | |||
| 6711 | CVE_STATUS[CVE-2023-53243] = "fixed-version: Fixed from version 6.5" | ||
| 6712 | |||
| 6713 | CVE_STATUS[CVE-2023-53244] = "fixed-version: Fixed from version 6.4" | ||
| 6714 | |||
| 6715 | CVE_STATUS[CVE-2023-53245] = "fixed-version: Fixed from version 6.5" | ||
| 6716 | |||
| 6717 | CVE_STATUS[CVE-2023-53246] = "fixed-version: Fixed from version 6.3" | ||
| 6718 | |||
| 6719 | CVE_STATUS[CVE-2023-53247] = "fixed-version: Fixed from version 6.5" | ||
| 6720 | |||
| 6721 | CVE_STATUS[CVE-2023-53248] = "fixed-version: Fixed from version 6.5" | ||
| 6722 | |||
| 6723 | CVE_STATUS[CVE-2023-53249] = "fixed-version: Fixed from version 6.5" | ||
| 6724 | |||
| 6725 | CVE_STATUS[CVE-2023-53250] = "fixed-version: Fixed from version 6.3" | ||
| 6726 | |||
| 6727 | CVE_STATUS[CVE-2023-53251] = "fixed-version: Fixed from version 6.5" | ||
| 6728 | |||
| 6729 | CVE_STATUS[CVE-2023-53252] = "fixed-version: Fixed from version 6.5" | ||
| 6730 | |||
| 6731 | CVE_STATUS[CVE-2023-53253] = "fixed-version: Fixed from version 6.6" | ||
| 6732 | |||
| 6733 | CVE_STATUS[CVE-2023-53254] = "fixed-version: Fixed from version 6.3" | ||
| 6734 | |||
| 6735 | CVE_STATUS[CVE-2023-53255] = "fixed-version: Fixed from version 6.5" | ||
| 6736 | |||
| 6737 | CVE_STATUS[CVE-2023-53256] = "fixed-version: Fixed from version 6.4" | ||
| 6738 | |||
| 6739 | CVE_STATUS[CVE-2023-53257] = "fixed-version: Fixed from version 6.6" | ||
| 6740 | |||
| 6741 | CVE_STATUS[CVE-2023-53258] = "fixed-version: Fixed from version 6.5" | ||
| 6742 | |||
| 6743 | CVE_STATUS[CVE-2023-53259] = "fixed-version: Fixed from version 6.3" | ||
| 6744 | |||
| 6745 | CVE_STATUS[CVE-2023-53260] = "fixed-version: Fixed from version 6.5" | ||
| 6746 | |||
| 6747 | CVE_STATUS[CVE-2023-53261] = "fixed-version: Fixed from version 6.6" | ||
| 6748 | |||
| 6749 | CVE_STATUS[CVE-2023-53262] = "fixed-version: Fixed from version 6.4" | ||
| 6750 | |||
| 6751 | CVE_STATUS[CVE-2023-53263] = "fixed-version: Fixed from version 6.5" | ||
| 6752 | |||
| 6753 | CVE_STATUS[CVE-2023-53264] = "fixed-version: Fixed from version 6.5" | ||
| 6754 | |||
| 6755 | CVE_STATUS[CVE-2023-53265] = "fixed-version: Fixed from version 6.3" | ||
| 6756 | |||
| 6757 | CVE_STATUS[CVE-2023-53266] = "fixed-version: Fixed from version 6.3" | ||
| 6758 | |||
| 6759 | CVE_STATUS[CVE-2023-53267] = "fixed-version: Fixed from version 6.3" | ||
| 6760 | |||
| 6761 | CVE_STATUS[CVE-2023-53268] = "fixed-version: Fixed from version 6.4" | ||
| 6762 | |||
| 6763 | CVE_STATUS[CVE-2023-53269] = "fixed-version: Fixed from version 6.3" | ||
| 6764 | |||
| 6765 | CVE_STATUS[CVE-2023-53270] = "fixed-version: Fixed from version 6.4" | ||
| 6766 | |||
| 6767 | CVE_STATUS[CVE-2023-53271] = "fixed-version: Fixed from version 6.3" | ||
| 6768 | |||
| 6769 | CVE_STATUS[CVE-2023-53272] = "fixed-version: Fixed from version 6.5" | ||
| 6770 | |||
| 6771 | CVE_STATUS[CVE-2023-53273] = "fixed-version: Fixed from version 6.3" | ||
| 6772 | |||
| 6773 | CVE_STATUS[CVE-2023-53274] = "fixed-version: Fixed from version 6.5" | ||
| 6774 | |||
| 6775 | CVE_STATUS[CVE-2023-53275] = "fixed-version: Fixed from version 6.5" | ||
| 6776 | |||
| 6777 | CVE_STATUS[CVE-2023-53276] = "fixed-version: Fixed from version 6.4" | ||
| 6778 | |||
| 6779 | CVE_STATUS[CVE-2023-53277] = "fixed-version: Fixed from version 6.3" | ||
| 6780 | |||
| 6781 | CVE_STATUS[CVE-2023-53278] = "fixed-version: Fixed from version 6.3" | ||
| 6782 | |||
| 6783 | CVE_STATUS[CVE-2023-53279] = "fixed-version: Fixed from version 6.3" | ||
| 6784 | |||
| 6785 | CVE_STATUS[CVE-2023-53280] = "fixed-version: Fixed from version 6.5" | ||
| 6786 | |||
| 6787 | CVE_STATUS[CVE-2023-53281] = "fixed-version: Fixed from version 6.4" | ||
| 6788 | |||
| 6789 | CVE_STATUS[CVE-2023-53282] = "fixed-version: Fixed from version 6.3" | ||
| 6790 | |||
| 6791 | CVE_STATUS[CVE-2023-53284] = "fixed-version: Fixed from version 6.3" | ||
| 6792 | |||
| 6793 | CVE_STATUS[CVE-2023-53285] = "fixed-version: Fixed from version 6.4" | ||
| 6794 | |||
| 6795 | CVE_STATUS[CVE-2023-53286] = "fixed-version: Fixed from version 6.5" | ||
| 6796 | |||
| 6797 | CVE_STATUS[CVE-2023-53287] = "fixed-version: Fixed from version 6.6" | ||
| 6798 | |||
| 6799 | CVE_STATUS[CVE-2023-53288] = "fixed-version: Fixed from version 6.5" | ||
| 6800 | |||
| 6801 | CVE_STATUS[CVE-2023-53289] = "fixed-version: Fixed from version 6.4" | ||
| 6802 | |||
| 6803 | CVE_STATUS[CVE-2023-53290] = "fixed-version: Fixed from version 6.4" | ||
| 6804 | |||
| 6805 | CVE_STATUS[CVE-2023-53291] = "fixed-version: Fixed from version 6.5" | ||
| 6806 | |||
| 6807 | CVE_STATUS[CVE-2023-53292] = "fixed-version: Fixed from version 6.5" | ||
| 6808 | |||
| 6809 | CVE_STATUS[CVE-2023-53294] = "fixed-version: Fixed from version 6.4" | ||
| 6810 | |||
| 6811 | CVE_STATUS[CVE-2023-53295] = "fixed-version: Fixed from version 6.3" | ||
| 6812 | |||
| 6813 | CVE_STATUS[CVE-2023-53296] = "fixed-version: Fixed from version 6.3" | ||
| 6814 | |||
| 6815 | CVE_STATUS[CVE-2023-53297] = "fixed-version: Fixed from version 6.4" | ||
| 6816 | |||
| 6817 | CVE_STATUS[CVE-2023-53298] = "fixed-version: Fixed from version 6.3" | ||
| 6818 | |||
| 6819 | CVE_STATUS[CVE-2023-53299] = "fixed-version: Fixed from version 6.4" | ||
| 6820 | |||
| 6821 | CVE_STATUS[CVE-2023-53300] = "fixed-version: Fixed from version 6.4" | ||
| 6822 | |||
| 6823 | CVE_STATUS[CVE-2023-53301] = "fixed-version: Fixed from version 6.3" | ||
| 6824 | |||
| 6825 | CVE_STATUS[CVE-2023-53302] = "fixed-version: Fixed from version 6.3" | ||
| 6826 | |||
| 6827 | CVE_STATUS[CVE-2023-53303] = "fixed-version: Fixed from version 6.6" | ||
| 6828 | |||
| 6829 | CVE_STATUS[CVE-2023-53304] = "fixed-version: Fixed from version 6.5" | ||
| 6830 | |||
| 6831 | CVE_STATUS[CVE-2023-53305] = "fixed-version: Fixed from version 6.5" | ||
| 6832 | |||
| 6833 | CVE_STATUS[CVE-2023-53306] = "fixed-version: Fixed from version 6.3" | ||
| 6834 | |||
| 6835 | CVE_STATUS[CVE-2023-53307] = "fixed-version: Fixed from version 6.3" | ||
| 6836 | |||
| 6837 | CVE_STATUS[CVE-2023-53308] = "fixed-version: Fixed from version 6.4" | ||
| 6838 | |||
| 6839 | CVE_STATUS[CVE-2023-53309] = "fixed-version: Fixed from version 6.5" | ||
| 6840 | |||
| 6841 | CVE_STATUS[CVE-2023-53310] = "fixed-version: Fixed from version 6.4" | ||
| 6842 | |||
| 6843 | CVE_STATUS[CVE-2023-53311] = "fixed-version: Fixed from version 6.5" | ||
| 6844 | |||
| 6845 | CVE_STATUS[CVE-2023-53312] = "fixed-version: Fixed from version 6.5" | ||
| 6846 | |||
| 6847 | CVE_STATUS[CVE-2023-53313] = "fixed-version: Fixed from version 6.5" | ||
| 6848 | |||
| 6849 | CVE_STATUS[CVE-2023-53314] = "fixed-version: Fixed from version 6.6" | ||
| 6850 | |||
| 6851 | CVE_STATUS[CVE-2023-53315] = "fixed-version: Fixed from version 6.4" | ||
| 6852 | |||
| 6853 | CVE_STATUS[CVE-2023-53316] = "fixed-version: Fixed from version 6.5" | ||
| 6854 | |||
| 6855 | CVE_STATUS[CVE-2023-53317] = "fixed-version: Fixed from version 6.4" | ||
| 6856 | |||
| 6857 | CVE_STATUS[CVE-2023-53318] = "fixed-version: Fixed from version 6.4" | ||
| 6858 | |||
| 6859 | CVE_STATUS[CVE-2023-53319] = "fixed-version: Fixed from version 6.5" | ||
| 6860 | |||
| 6861 | CVE_STATUS[CVE-2023-53320] = "fixed-version: Fixed from version 6.3" | ||
| 6862 | |||
| 6863 | CVE_STATUS[CVE-2023-53321] = "fixed-version: Fixed from version 6.6" | ||
| 6864 | |||
| 6865 | CVE_STATUS[CVE-2023-53322] = "fixed-version: Fixed from version 6.5" | ||
| 6866 | |||
| 6867 | CVE_STATUS[CVE-2023-53323] = "fixed-version: Fixed from version 6.5" | ||
| 6868 | |||
| 6869 | CVE_STATUS[CVE-2023-53324] = "fixed-version: Fixed from version 6.6" | ||
| 6870 | |||
| 6871 | CVE_STATUS[CVE-2023-53325] = "fixed-version: Fixed from version 6.6" | ||
| 6872 | |||
| 6873 | CVE_STATUS[CVE-2023-53326] = "fixed-version: Fixed from version 6.3" | ||
| 6874 | |||
| 6875 | CVE_STATUS[CVE-2023-53327] = "fixed-version: Fixed from version 6.4" | ||
| 6876 | |||
| 6877 | CVE_STATUS[CVE-2023-53328] = "fixed-version: Fixed from version 6.5" | ||
| 6878 | |||
| 6879 | CVE_STATUS[CVE-2023-53329] = "fixed-version: Fixed from version 6.6" | ||
| 6880 | |||
| 6881 | CVE_STATUS[CVE-2023-53330] = "fixed-version: Fixed from version 6.2" | ||
| 6882 | |||
| 6883 | CVE_STATUS[CVE-2023-53331] = "fixed-version: Fixed from version 6.6" | ||
| 6884 | |||
| 6885 | CVE_STATUS[CVE-2023-53332] = "fixed-version: Fixed from version 6.3" | ||
| 6886 | |||
| 6887 | CVE_STATUS[CVE-2023-53333] = "fixed-version: Fixed from version 6.5" | ||
| 6888 | |||
| 6889 | CVE_STATUS[CVE-2023-53334] = "fixed-version: Fixed from version 6.3" | ||
| 6890 | |||
| 6891 | CVE_STATUS[CVE-2023-53335] = "fixed-version: Fixed from version 6.3" | ||
| 6892 | |||
| 6893 | CVE_STATUS[CVE-2023-53336] = "fixed-version: Fixed from version 6.6" | ||
| 6894 | |||
| 6895 | CVE_STATUS[CVE-2023-53337] = "fixed-version: Fixed from version 6.4" | ||
| 6896 | |||
| 6897 | CVE_STATUS[CVE-2023-53338] = "fixed-version: Fixed from version 6.6" | ||
| 6898 | |||
| 6899 | CVE_STATUS[CVE-2023-53339] = "fixed-version: Fixed from version 6.5" | ||
| 6900 | |||
| 6901 | CVE_STATUS[CVE-2023-53340] = "fixed-version: Fixed from version 6.4" | ||
| 6902 | |||
| 6903 | CVE_STATUS[CVE-2023-53341] = "fixed-version: Fixed from version 6.2" | ||
| 6904 | |||
| 6905 | CVE_STATUS[CVE-2023-53342] = "fixed-version: Fixed from version 6.5" | ||
| 6906 | |||
| 6907 | CVE_STATUS[CVE-2023-53343] = "fixed-version: Fixed from version 6.5" | ||
| 6908 | |||
| 6909 | CVE_STATUS[CVE-2023-53344] = "fixed-version: Fixed from version 6.3" | ||
| 6910 | |||
| 6911 | CVE_STATUS[CVE-2023-53345] = "fixed-version: Fixed from version 6.4" | ||
| 6912 | |||
| 6913 | CVE_STATUS[CVE-2023-53346] = "fixed-version: Fixed from version 6.3" | ||
| 6914 | |||
| 6915 | CVE_STATUS[CVE-2023-53347] = "fixed-version: Fixed from version 6.4" | ||
| 6916 | |||
| 6917 | CVE_STATUS[CVE-2023-53348] = "fixed-version: Fixed from version 6.3" | ||
| 6918 | |||
| 6919 | CVE_STATUS[CVE-2023-53349] = "fixed-version: Fixed from version 6.3" | ||
| 6920 | |||
| 6921 | CVE_STATUS[CVE-2023-53350] = "fixed-version: Fixed from version 6.5" | ||
| 6922 | |||
| 6923 | CVE_STATUS[CVE-2023-53351] = "fixed-version: Fixed from version 6.4" | ||
| 6924 | |||
| 6925 | CVE_STATUS[CVE-2023-53352] = "fixed-version: Fixed from version 6.4.10" | ||
| 6926 | |||
| 6927 | CVE_STATUS[CVE-2023-53353] = "fixed-version: Fixed from version 6.4" | ||
| 6928 | |||
| 6929 | CVE_STATUS[CVE-2023-53354] = "fixed-version: Fixed from version 6.6" | ||
| 6930 | |||
| 6931 | CVE_STATUS[CVE-2023-53355] = "fixed-version: Fixed from version 6.3" | ||
| 6932 | |||
| 6933 | CVE_STATUS[CVE-2023-53356] = "fixed-version: Fixed from version 6.5" | ||
| 6934 | |||
| 6935 | CVE_STATUS[CVE-2023-53357] = "fixed-version: Fixed from version 6.5" | ||
| 6936 | |||
| 6937 | CVE_STATUS[CVE-2023-53358] = "fixed-version: Fixed from version 6.4" | ||
| 6938 | |||
| 6939 | CVE_STATUS[CVE-2023-53359] = "fixed-version: Fixed from version 6.3" | ||
| 6940 | |||
| 6941 | CVE_STATUS[CVE-2023-53360] = "fixed-version: Fixed from version 6.6" | ||
| 6942 | |||
| 6943 | CVE_STATUS[CVE-2023-53361] = "fixed-version: Fixed from version 6.6" | ||
| 6944 | |||
| 6945 | CVE_STATUS[CVE-2023-53362] = "fixed-version: Fixed from version 6.5" | ||
| 6946 | |||
| 6947 | CVE_STATUS[CVE-2023-53363] = "fixed-version: Fixed from version 6.3" | ||
| 6948 | |||
| 6949 | CVE_STATUS[CVE-2023-53364] = "fixed-version: Fixed from version 6.4.12" | ||
| 6950 | |||
| 6951 | CVE_STATUS[CVE-2023-53365] = "fixed-version: Fixed from version 6.5" | ||
| 6952 | |||
| 6953 | CVE_STATUS[CVE-2023-53366] = "fixed-version: Fixed from version 6.3" | ||
| 6954 | |||
| 6955 | CVE_STATUS[CVE-2023-53367] = "fixed-version: Fixed from version 6.5" | ||
| 6956 | |||
| 6957 | CVE_STATUS[CVE-2023-53368] = "fixed-version: Fixed from version 6.6" | ||
| 6958 | |||
| 6959 | CVE_STATUS[CVE-2023-53369] = "fixed-version: Fixed from version 6.5" | ||
| 6960 | |||
| 6961 | CVE_STATUS[CVE-2023-53370] = "fixed-version: Fixed from version 6.5" | ||
| 6962 | |||
| 6963 | CVE_STATUS[CVE-2023-53371] = "fixed-version: Fixed from version 6.5" | ||
| 6964 | |||
| 6965 | CVE_STATUS[CVE-2023-53372] = "fixed-version: Fixed from version 6.3" | ||
| 6966 | |||
| 6967 | CVE_STATUS[CVE-2023-53373] = "fixed-version: Fixed from version 6.3" | ||
| 6968 | |||
| 6969 | CVE_STATUS[CVE-2023-53374] = "fixed-version: Fixed from version 6.6" | ||
| 6970 | |||
| 6971 | CVE_STATUS[CVE-2023-53375] = "fixed-version: Fixed from version 6.3" | ||
| 6972 | |||
| 6973 | CVE_STATUS[CVE-2023-53376] = "fixed-version: Fixed from version 6.3" | ||
| 6974 | |||
| 6975 | CVE_STATUS[CVE-2023-53377] = "fixed-version: Fixed from version 6.5" | ||
| 6976 | |||
| 6977 | CVE_STATUS[CVE-2023-53378] = "fixed-version: Fixed from version 6.3" | ||
| 6978 | |||
| 6979 | CVE_STATUS[CVE-2023-53379] = "fixed-version: Fixed from version 6.5" | ||
| 6980 | |||
| 6981 | CVE_STATUS[CVE-2023-53380] = "fixed-version: Fixed from version 6.5" | ||
| 6982 | |||
| 6983 | CVE_STATUS[CVE-2023-53381] = "fixed-version: Fixed from version 6.3" | ||
| 6984 | |||
| 6985 | CVE_STATUS[CVE-2023-53382] = "fixed-version: Fixed from version 6.4" | ||
| 6986 | |||
| 6987 | CVE_STATUS[CVE-2023-53383] = "fixed-version: Fixed from version 6.4" | ||
| 6988 | |||
| 6989 | CVE_STATUS[CVE-2023-53384] = "fixed-version: Fixed from version 6.6" | ||
| 6990 | |||
| 6991 | CVE_STATUS[CVE-2023-53385] = "fixed-version: Fixed from version 6.6" | ||
| 6992 | |||
| 6993 | CVE_STATUS[CVE-2023-53386] = "fixed-version: Fixed from version 6.6" | ||
| 6994 | |||
| 6995 | CVE_STATUS[CVE-2023-53387] = "fixed-version: Fixed from version 6.3" | ||
| 6996 | |||
| 6997 | CVE_STATUS[CVE-2023-53388] = "fixed-version: Fixed from version 6.3" | ||
| 6998 | |||
| 6999 | CVE_STATUS[CVE-2023-53389] = "fixed-version: Fixed from version 6.4" | ||
| 7000 | |||
| 7001 | CVE_STATUS[CVE-2023-53390] = "fixed-version: Fixed from version 6.3" | ||
| 7002 | |||
| 7003 | CVE_STATUS[CVE-2023-53391] = "fixed-version: Fixed from version 6.5" | ||
| 7004 | |||
| 7005 | CVE_STATUS[CVE-2023-53392] = "fixed-version: Fixed from version 6.3" | ||
| 7006 | |||
| 7007 | CVE_STATUS[CVE-2023-53393] = "fixed-version: Fixed from version 6.2" | ||
| 7008 | |||
| 7009 | CVE_STATUS[CVE-2023-53394] = "fixed-version: Fixed from version 6.5" | ||
| 7010 | |||
| 7011 | CVE_STATUS[CVE-2023-53395] = "fixed-version: Fixed from version 6.6" | ||
| 7012 | |||
| 7013 | CVE_STATUS[CVE-2023-53396] = "fixed-version: Fixed from version 6.4" | ||
| 7014 | |||
| 7015 | CVE_STATUS[CVE-2023-53397] = "fixed-version: Fixed from version 6.5" | ||
| 7016 | |||
| 7017 | CVE_STATUS[CVE-2023-53398] = "fixed-version: Fixed from version 6.3" | ||
| 7018 | |||
| 7019 | CVE_STATUS[CVE-2023-53399] = "fixed-version: Fixed from version 6.4" | ||
| 7020 | |||
| 7021 | CVE_STATUS[CVE-2023-53400] = "fixed-version: Fixed from version 6.4" | ||
| 7022 | |||
| 7023 | CVE_STATUS[CVE-2023-53401] = "fixed-version: Fixed from version 6.5" | ||
| 7024 | |||
| 7025 | CVE_STATUS[CVE-2023-53402] = "fixed-version: Fixed from version 6.3" | ||
| 7026 | |||
| 7027 | CVE_STATUS[CVE-2023-53403] = "fixed-version: Fixed from version 6.3" | ||
| 7028 | |||
| 7029 | CVE_STATUS[CVE-2023-53404] = "fixed-version: Fixed from version 6.3" | ||
| 7030 | |||
| 7031 | CVE_STATUS[CVE-2023-53405] = "fixed-version: Fixed from version 6.3" | ||
| 7032 | |||
| 7033 | CVE_STATUS[CVE-2023-53406] = "fixed-version: Fixed from version 6.3" | ||
| 7034 | |||
| 7035 | CVE_STATUS[CVE-2023-53407] = "fixed-version: Fixed from version 6.3" | ||
| 7036 | |||
| 7037 | CVE_STATUS[CVE-2023-53408] = "fixed-version: Fixed from version 6.3" | ||
| 7038 | |||
| 7039 | CVE_STATUS[CVE-2023-53409] = "fixed-version: Fixed from version 6.3" | ||
| 7040 | |||
| 7041 | CVE_STATUS[CVE-2023-53410] = "fixed-version: Fixed from version 6.3" | ||
| 7042 | |||
| 7043 | CVE_STATUS[CVE-2023-53411] = "fixed-version: Fixed from version 6.3" | ||
| 7044 | |||
| 7045 | CVE_STATUS[CVE-2023-53412] = "fixed-version: Fixed from version 6.3" | ||
| 7046 | |||
| 7047 | CVE_STATUS[CVE-2023-53413] = "fixed-version: Fixed from version 6.3" | ||
| 7048 | |||
| 7049 | CVE_STATUS[CVE-2023-53414] = "fixed-version: Fixed from version 6.3" | ||
| 7050 | |||
| 7051 | CVE_STATUS[CVE-2023-53415] = "fixed-version: Fixed from version 6.3" | ||
| 7052 | |||
| 7053 | CVE_STATUS[CVE-2023-53416] = "fixed-version: Fixed from version 6.3" | ||
| 7054 | |||
| 7055 | CVE_STATUS[CVE-2023-53417] = "fixed-version: Fixed from version 6.3" | ||
| 7056 | |||
| 7057 | CVE_STATUS[CVE-2023-53418] = "fixed-version: Fixed from version 6.3" | ||
| 7058 | |||
| 7059 | CVE_STATUS[CVE-2023-53419] = "fixed-version: Fixed from version 6.4" | ||
| 7060 | |||
| 7061 | CVE_STATUS[CVE-2023-53420] = "fixed-version: Fixed from version 6.5" | ||
| 7062 | |||
| 7063 | CVE_STATUS[CVE-2023-53421] = "fixed-version: Fixed from version 6.5" | ||
| 7064 | |||
| 7065 | CVE_STATUS[CVE-2023-53422] = "fixed-version: Fixed from version 6.4" | ||
| 7066 | |||
| 7067 | CVE_STATUS[CVE-2023-53423] = "fixed-version: Fixed from version 6.3" | ||
| 7068 | |||
| 7069 | CVE_STATUS[CVE-2023-53424] = "fixed-version: Fixed from version 6.5" | ||
| 7070 | |||
| 7071 | CVE_STATUS[CVE-2023-53425] = "fixed-version: Fixed from version 6.5" | ||
| 7072 | |||
| 7073 | CVE_STATUS[CVE-2023-53426] = "fixed-version: Fixed from version 6.6" | ||
| 7074 | |||
| 7075 | CVE_STATUS[CVE-2023-53427] = "fixed-version: Fixed from version 6.3" | ||
| 7076 | |||
| 7077 | CVE_STATUS[CVE-2023-53428] = "fixed-version: Fixed from version 6.6" | ||
| 7078 | |||
| 7079 | CVE_STATUS[CVE-2023-53429] = "fixed-version: Fixed from version 6.5" | ||
| 7080 | |||
| 7081 | CVE_STATUS[CVE-2023-53430] = "fixed-version: Fixed from version 6.3" | ||
| 7082 | |||
| 7083 | CVE_STATUS[CVE-2023-53431] = "fixed-version: Fixed from version 6.3" | ||
| 7084 | |||
| 7085 | CVE_STATUS[CVE-2023-53432] = "fixed-version: Fixed from version 6.5" | ||
| 7086 | |||
| 7087 | CVE_STATUS[CVE-2023-53433] = "fixed-version: Fixed from version 6.4" | ||
| 7088 | |||
| 7089 | CVE_STATUS[CVE-2023-53434] = "fixed-version: Fixed from version 6.4" | ||
| 7090 | |||
| 7091 | CVE_STATUS[CVE-2023-53435] = "fixed-version: Fixed from version 6.4" | ||
| 7092 | |||
| 7093 | CVE_STATUS[CVE-2023-53436] = "fixed-version: Fixed from version 6.5" | ||
| 7094 | |||
| 7095 | CVE_STATUS[CVE-2023-53437] = "fixed-version: Fixed from version 6.3" | ||
| 7096 | |||
| 7097 | CVE_STATUS[CVE-2023-53438] = "fixed-version: Fixed from version 6.6" | ||
| 7098 | |||
| 7099 | CVE_STATUS[CVE-2023-53439] = "fixed-version: Fixed from version 6.4" | ||
| 7100 | |||
| 7101 | CVE_STATUS[CVE-2023-53440] = "fixed-version: Fixed from version 6.3" | ||
| 7102 | |||
| 7103 | CVE_STATUS[CVE-2023-53441] = "fixed-version: Fixed from version 6.5" | ||
| 7104 | |||
| 7105 | CVE_STATUS[CVE-2023-53442] = "fixed-version: Fixed from version 6.5" | ||
| 7106 | |||
| 7107 | CVE_STATUS[CVE-2023-53443] = "fixed-version: Fixed from version 6.3" | ||
| 7108 | |||
| 7109 | CVE_STATUS[CVE-2023-53444] = "fixed-version: Fixed from version 6.5" | ||
| 7110 | |||
| 7111 | CVE_STATUS[CVE-2023-53445] = "fixed-version: Fixed from version 6.3" | ||
| 7112 | |||
| 7113 | CVE_STATUS[CVE-2023-53446] = "fixed-version: Fixed from version 6.5" | ||
| 7114 | |||
| 7115 | CVE_STATUS[CVE-2023-53447] = "fixed-version: Fixed from version 6.5" | ||
| 7116 | |||
| 7117 | CVE_STATUS[CVE-2023-53448] = "fixed-version: Fixed from version 6.5" | ||
| 7118 | |||
| 7119 | CVE_STATUS[CVE-2023-53449] = "fixed-version: Fixed from version 6.3" | ||
| 7120 | |||
| 7121 | CVE_STATUS[CVE-2023-53450] = "fixed-version: Fixed from version 6.4" | ||
| 7122 | |||
| 7123 | CVE_STATUS[CVE-2023-53451] = "fixed-version: Fixed from version 6.5" | ||
| 7124 | |||
| 7125 | CVE_STATUS[CVE-2023-53452] = "fixed-version: Fixed from version 6.4" | ||
| 7126 | |||
| 7127 | CVE_STATUS[CVE-2023-53453] = "fixed-version: Fixed from version 6.3" | ||
| 7128 | |||
| 7129 | CVE_STATUS[CVE-2023-53454] = "fixed-version: Fixed from version 6.6" | ||
| 7130 | |||
| 7131 | CVE_STATUS[CVE-2023-53455] = "fixed-version: Fixed from version 6.3" | ||
| 7132 | |||
| 7133 | CVE_STATUS[CVE-2023-53456] = "fixed-version: Fixed from version 6.6" | ||
| 7134 | |||
| 7135 | CVE_STATUS[CVE-2023-53457] = "fixed-version: Fixed from version 6.5" | ||
| 7136 | |||
| 7137 | CVE_STATUS[CVE-2023-53458] = "fixed-version: Fixed from version 6.4" | ||
| 7138 | |||
| 7139 | CVE_STATUS[CVE-2023-53459] = "fixed-version: Fixed from version 6.3" | ||
| 7140 | |||
| 7141 | CVE_STATUS[CVE-2023-53460] = "fixed-version: Fixed from version 6.4" | ||
| 7142 | |||
| 7143 | CVE_STATUS[CVE-2023-53461] = "fixed-version: Fixed from version 6.5" | ||
| 7144 | |||
| 7145 | CVE_STATUS[CVE-2023-53462] = "fixed-version: Fixed from version 6.6" | ||
| 7146 | |||
| 7147 | CVE_STATUS[CVE-2023-53463] = "fixed-version: Fixed from version 6.5" | ||
| 7148 | |||
| 7149 | CVE_STATUS[CVE-2023-53464] = "fixed-version: Fixed from version 6.3" | ||
| 7150 | |||
| 7151 | CVE_STATUS[CVE-2023-53465] = "fixed-version: Fixed from version 6.5" | ||
| 7152 | |||
| 7153 | CVE_STATUS[CVE-2023-53466] = "fixed-version: Fixed from version 6.3" | ||
| 7154 | |||
| 7155 | CVE_STATUS[CVE-2023-53467] = "fixed-version: Fixed from version 6.3" | ||
| 7156 | |||
| 7157 | CVE_STATUS[CVE-2023-53468] = "fixed-version: Fixed from version 6.3" | ||
| 7158 | |||
| 7159 | CVE_STATUS[CVE-2023-53469] = "fixed-version: Fixed from version 6.5" | ||
| 7160 | |||
| 7161 | CVE_STATUS[CVE-2023-53470] = "fixed-version: Fixed from version 6.4" | ||
| 7162 | |||
| 7163 | CVE_STATUS[CVE-2023-53471] = "fixed-version: Fixed from version 6.4" | ||
| 7164 | |||
| 7165 | CVE_STATUS[CVE-2023-53472] = "fixed-version: Fixed from version 6.6" | ||
| 7166 | |||
| 7167 | CVE_STATUS[CVE-2023-53473] = "fixed-version: Fixed from version 6.4" | ||
| 7168 | |||
| 7169 | CVE_STATUS[CVE-2023-53474] = "fixed-version: Fixed from version 6.4" | ||
| 7170 | |||
| 7171 | CVE_STATUS[CVE-2023-53475] = "fixed-version: Fixed from version 6.3" | ||
| 7172 | |||
| 7173 | CVE_STATUS[CVE-2023-53476] = "fixed-version: Fixed from version 6.3" | ||
| 7174 | |||
| 7175 | CVE_STATUS[CVE-2023-53477] = "fixed-version: Fixed from version 6.3" | ||
| 7176 | |||
| 7177 | CVE_STATUS[CVE-2023-53478] = "fixed-version: Fixed from version 6.3" | ||
| 7178 | |||
| 7179 | CVE_STATUS[CVE-2023-53479] = "fixed-version: Fixed from version 6.5" | ||
| 7180 | |||
| 7181 | CVE_STATUS[CVE-2023-53480] = "fixed-version: Fixed from version 6.6" | ||
| 7182 | |||
| 7183 | CVE_STATUS[CVE-2023-53481] = "fixed-version: Fixed from version 6.3" | ||
| 7184 | |||
| 7185 | CVE_STATUS[CVE-2023-53482] = "fixed-version: Fixed from version 6.3" | ||
| 7186 | |||
| 7187 | CVE_STATUS[CVE-2023-53483] = "fixed-version: Fixed from version 6.4" | ||
| 7188 | |||
| 7189 | CVE_STATUS[CVE-2023-53484] = "fixed-version: Fixed from version 6.4" | ||
| 7190 | |||
| 7191 | CVE_STATUS[CVE-2023-53485] = "fixed-version: Fixed from version 6.5" | ||
| 7192 | |||
| 7193 | CVE_STATUS[CVE-2023-53486] = "fixed-version: Fixed from version 6.4" | ||
| 7194 | |||
| 7195 | CVE_STATUS[CVE-2023-53487] = "fixed-version: Fixed from version 6.5" | ||
| 7196 | |||
| 7197 | CVE_STATUS[CVE-2023-53488] = "fixed-version: Fixed from version 6.5" | ||
| 7198 | |||
| 7199 | CVE_STATUS[CVE-2023-53489] = "fixed-version: Fixed from version 6.4" | ||
| 7200 | |||
| 7201 | CVE_STATUS[CVE-2023-53490] = "fixed-version: Fixed from version 6.5" | ||
| 7202 | |||
| 7203 | CVE_STATUS[CVE-2023-53491] = "fixed-version: Fixed from version 6.5" | ||
| 7204 | |||
| 7205 | CVE_STATUS[CVE-2023-53492] = "fixed-version: Fixed from version 6.5" | ||
| 7206 | |||
| 7207 | CVE_STATUS[CVE-2023-53493] = "fixed-version: Fixed from version 6.5" | ||
| 7208 | |||
| 7209 | CVE_STATUS[CVE-2023-53494] = "fixed-version: Fixed from version 6.3" | ||
| 7210 | |||
| 7211 | CVE_STATUS[CVE-2023-53495] = "fixed-version: Fixed from version 6.6" | ||
| 7212 | |||
| 7213 | CVE_STATUS[CVE-2023-53496] = "fixed-version: Fixed from version 6.6" | ||
| 7214 | |||
| 7215 | CVE_STATUS[CVE-2023-53497] = "fixed-version: Fixed from version 6.4" | ||
| 7216 | |||
| 7217 | CVE_STATUS[CVE-2023-53498] = "fixed-version: Fixed from version 6.4" | ||
| 7218 | |||
| 7219 | CVE_STATUS[CVE-2023-53499] = "fixed-version: Fixed from version 6.4" | ||
| 7220 | |||
| 7221 | CVE_STATUS[CVE-2023-53500] = "fixed-version: Fixed from version 6.5" | ||
| 7222 | |||
| 7223 | CVE_STATUS[CVE-2023-53501] = "fixed-version: Fixed from version 6.6" | ||
| 7224 | |||
| 7225 | CVE_STATUS[CVE-2023-53503] = "fixed-version: Fixed from version 6.4" | ||
| 7226 | |||
| 7227 | CVE_STATUS[CVE-2023-53504] = "fixed-version: Fixed from version 6.5" | ||
| 7228 | |||
| 7229 | CVE_STATUS[CVE-2023-53505] = "fixed-version: Fixed from version 6.5" | ||
| 7230 | |||
| 7231 | CVE_STATUS[CVE-2023-53506] = "fixed-version: Fixed from version 6.3" | ||
| 7232 | |||
| 7233 | CVE_STATUS[CVE-2023-53507] = "fixed-version: Fixed from version 6.5" | ||
| 7234 | |||
| 7235 | CVE_STATUS[CVE-2023-53508] = "fixed-version: Fixed from version 6.5" | ||
| 7236 | |||
| 7237 | CVE_STATUS[CVE-2023-53509] = "fixed-version: Fixed from version 6.2" | ||
| 7238 | |||
| 7239 | CVE_STATUS[CVE-2023-53510] = "fixed-version: Fixed from version 6.5" | ||
| 7240 | |||
| 7241 | CVE_STATUS[CVE-2023-53511] = "fixed-version: Fixed from version 6.3" | ||
| 7242 | |||
| 7243 | CVE_STATUS[CVE-2023-53512] = "fixed-version: Fixed from version 6.3" | ||
| 7244 | |||
| 7245 | CVE_STATUS[CVE-2023-53513] = "fixed-version: Fixed from version 6.4" | ||
| 7246 | |||
| 7247 | CVE_STATUS[CVE-2023-53514] = "fixed-version: Fixed from version 6.4" | ||
| 7248 | |||
| 7249 | CVE_STATUS[CVE-2023-53515] = "fixed-version: Fixed from version 6.5" | ||
| 7250 | |||
| 7251 | CVE_STATUS[CVE-2023-53516] = "fixed-version: Fixed from version 6.5" | ||
| 7252 | |||
| 7253 | CVE_STATUS[CVE-2023-53517] = "fixed-version: Fixed from version 6.4" | ||
| 7254 | |||
| 7255 | CVE_STATUS[CVE-2023-53518] = "fixed-version: Fixed from version 6.6" | ||
| 7256 | |||
| 7257 | CVE_STATUS[CVE-2023-53519] = "fixed-version: Fixed from version 6.5" | ||
| 7258 | |||
| 7259 | CVE_STATUS[CVE-2023-53520] = "fixed-version: Fixed from version 6.6" | ||
| 7260 | |||
| 7261 | CVE_STATUS[CVE-2023-53521] = "fixed-version: Fixed from version 6.3" | ||
| 7262 | |||
| 7263 | CVE_STATUS[CVE-2023-53522] = "fixed-version: Fixed from version 6.3" | ||
| 7264 | |||
| 7265 | CVE_STATUS[CVE-2023-53523] = "fixed-version: Fixed from version 6.5" | ||
| 7266 | |||
| 7267 | CVE_STATUS[CVE-2023-53524] = "fixed-version: Fixed from version 6.4" | ||
| 7268 | |||
| 7269 | CVE_STATUS[CVE-2023-53525] = "fixed-version: Fixed from version 6.3" | ||
| 7270 | |||
| 7271 | CVE_STATUS[CVE-2023-53526] = "fixed-version: Fixed from version 6.6" | ||
| 7272 | |||
| 7273 | CVE_STATUS[CVE-2023-53527] = "fixed-version: Fixed from version 6.5" | ||
| 7274 | |||
| 7275 | CVE_STATUS[CVE-2023-53528] = "fixed-version: Fixed from version 6.6" | ||
| 7276 | |||
| 7277 | CVE_STATUS[CVE-2023-53529] = "fixed-version: Fixed from version 6.4" | ||
| 7278 | |||
| 7279 | CVE_STATUS[CVE-2023-53530] = "fixed-version: Fixed from version 6.6" | ||
| 7280 | |||
| 7281 | CVE_STATUS[CVE-2023-53531] = "fixed-version: Fixed from version 6.6" | ||
| 7282 | |||
| 7283 | CVE_STATUS[CVE-2023-53532] = "fixed-version: Fixed from version 6.4" | ||
| 7284 | |||
| 7285 | CVE_STATUS[CVE-2023-53533] = "fixed-version: Fixed from version 6.4" | ||
| 7286 | |||
| 7287 | CVE_STATUS[CVE-2023-53534] = "fixed-version: Fixed from version 6.3" | ||
| 7288 | |||
| 7289 | CVE_STATUS[CVE-2023-53535] = "fixed-version: Fixed from version 6.3" | ||
| 7290 | |||
| 7291 | CVE_STATUS[CVE-2023-53536] = "fixed-version: Fixed from version 6.4" | ||
| 7292 | |||
| 7293 | CVE_STATUS[CVE-2023-53537] = "fixed-version: Fixed from version 6.4" | ||
| 7294 | |||
| 7295 | CVE_STATUS[CVE-2023-53538] = "fixed-version: Fixed from version 6.5" | ||
| 7296 | |||
| 7297 | CVE_STATUS[CVE-2023-53539] = "fixed-version: Fixed from version 6.6" | ||
| 7298 | |||
| 7299 | CVE_STATUS[CVE-2023-53540] = "fixed-version: Fixed from version 6.6" | ||
| 7300 | |||
| 7301 | CVE_STATUS[CVE-2023-53541] = "fixed-version: Fixed from version 6.6" | ||
| 7302 | |||
| 7303 | CVE_STATUS[CVE-2023-53542] = "fixed-version: Fixed from version 6.3" | ||
| 7304 | |||
| 7305 | CVE_STATUS[CVE-2023-53543] = "fixed-version: Fixed from version 6.5" | ||
| 7306 | |||
| 7307 | CVE_STATUS[CVE-2023-53544] = "fixed-version: Fixed from version 6.3" | ||
| 7308 | |||
| 7309 | CVE_STATUS[CVE-2023-53545] = "fixed-version: Fixed from version 6.5" | ||
| 7310 | |||
| 7311 | CVE_STATUS[CVE-2023-53546] = "fixed-version: Fixed from version 6.5" | ||
| 7312 | |||
| 7313 | CVE_STATUS[CVE-2023-53547] = "fixed-version: Fixed from version 6.4" | ||
| 7314 | |||
| 7315 | CVE_STATUS[CVE-2023-53548] = "fixed-version: Fixed from version 6.5" | ||
| 7316 | |||
| 7317 | CVE_STATUS[CVE-2023-53549] = "fixed-version: Fixed from version 6.2" | ||
| 7318 | |||
| 7319 | CVE_STATUS[CVE-2023-53550] = "fixed-version: Fixed from version 6.5" | ||
| 7320 | |||
| 7321 | CVE_STATUS[CVE-2023-53551] = "fixed-version: Fixed from version 6.3" | ||
| 7322 | |||
| 7323 | CVE_STATUS[CVE-2023-53552] = "fixed-version: Fixed from version 6.6" | ||
| 7324 | |||
| 7325 | CVE_STATUS[CVE-2023-53553] = "fixed-version: Fixed from version 6.5" | ||
| 7326 | |||
| 7327 | CVE_STATUS[CVE-2023-53554] = "fixed-version: Fixed from version 6.5" | ||
| 7328 | |||
| 7329 | CVE_STATUS[CVE-2023-53555] = "fixed-version: Fixed from version 6.5" | ||
| 7330 | |||
| 7331 | CVE_STATUS[CVE-2023-53556] = "fixed-version: Fixed from version 6.5" | ||
| 7332 | |||
| 7333 | CVE_STATUS[CVE-2023-53557] = "fixed-version: Fixed from version 6.5" | ||
| 7334 | |||
| 7335 | CVE_STATUS[CVE-2023-53558] = "fixed-version: Fixed from version 6.5" | ||
| 7336 | |||
| 7337 | CVE_STATUS[CVE-2023-53559] = "fixed-version: Fixed from version 6.5" | ||
| 7338 | |||
| 7339 | CVE_STATUS[CVE-2023-53560] = "fixed-version: Fixed from version 6.5" | ||
| 7340 | |||
| 7341 | CVE_STATUS[CVE-2023-53561] = "fixed-version: Fixed from version 6.4" | ||
| 7342 | |||
| 7343 | CVE_STATUS[CVE-2023-53562] = "fixed-version: Fixed from version 6.4" | ||
| 7344 | |||
| 7345 | CVE_STATUS[CVE-2023-53563] = "fixed-version: Fixed from version 6.6" | ||
| 7346 | |||
| 7347 | CVE_STATUS[CVE-2023-53564] = "fixed-version: Fixed from version 6.3" | ||
| 7348 | |||
| 7349 | CVE_STATUS[CVE-2023-53565] = "fixed-version: Fixed from version 6.4" | ||
| 7350 | |||
| 7351 | CVE_STATUS[CVE-2023-53566] = "fixed-version: Fixed from version 6.4" | ||
| 7352 | |||
| 7353 | CVE_STATUS[CVE-2023-53567] = "fixed-version: Fixed from version 6.4" | ||
| 7354 | |||
| 7355 | CVE_STATUS[CVE-2023-53568] = "fixed-version: Fixed from version 6.6" | ||
| 7356 | |||
| 7357 | CVE_STATUS[CVE-2023-53569] = "fixed-version: Fixed from version 6.4" | ||
| 7358 | |||
| 7359 | CVE_STATUS[CVE-2023-53570] = "fixed-version: Fixed from version 6.5" | ||
| 7360 | |||
| 7361 | CVE_STATUS[CVE-2023-53571] = "fixed-version: Fixed from version 6.4" | ||
| 7362 | |||
| 7363 | CVE_STATUS[CVE-2023-53572] = "fixed-version: Fixed from version 6.5" | ||
| 7364 | |||
| 7365 | CVE_STATUS[CVE-2023-53573] = "fixed-version: Fixed from version 6.3" | ||
| 7366 | |||
| 7367 | CVE_STATUS[CVE-2023-53574] = "fixed-version: Fixed from version 6.6" | ||
| 7368 | |||
| 7369 | CVE_STATUS[CVE-2023-53575] = "fixed-version: Fixed from version 6.5" | ||
| 7370 | |||
| 7371 | CVE_STATUS[CVE-2023-53576] = "fixed-version: Fixed from version 6.4" | ||
| 7372 | |||
| 7373 | CVE_STATUS[CVE-2023-53577] = "fixed-version: Fixed from version 6.5" | ||
| 7374 | |||
| 7375 | CVE_STATUS[CVE-2023-53578] = "fixed-version: Fixed from version 6.3" | ||
| 7376 | |||
| 7377 | CVE_STATUS[CVE-2023-53579] = "fixed-version: Fixed from version 6.5" | ||
| 7378 | |||
| 7379 | CVE_STATUS[CVE-2023-53580] = "fixed-version: Fixed from version 6.5" | ||
| 7380 | |||
| 7381 | CVE_STATUS[CVE-2023-53581] = "fixed-version: Fixed from version 6.5" | ||
| 7382 | |||
| 7383 | CVE_STATUS[CVE-2023-53582] = "fixed-version: Fixed from version 6.3" | ||
| 7384 | |||
| 7385 | CVE_STATUS[CVE-2023-53583] = "fixed-version: Fixed from version 6.5" | ||
| 7386 | |||
| 7387 | CVE_STATUS[CVE-2023-53584] = "fixed-version: Fixed from version 6.3" | ||
| 7388 | |||
| 7389 | CVE_STATUS[CVE-2023-53585] = "fixed-version: Fixed from version 6.6" | ||
| 7390 | |||
| 7391 | CVE_STATUS[CVE-2023-53586] = "fixed-version: Fixed from version 6.4" | ||
| 7392 | |||
| 7393 | CVE_STATUS[CVE-2023-53587] = "fixed-version: Fixed from version 6.4" | ||
| 7394 | |||
| 7395 | CVE_STATUS[CVE-2023-53588] = "fixed-version: Fixed from version 6.6" | ||
| 7396 | |||
| 7397 | CVE_STATUS[CVE-2023-53589] = "fixed-version: Fixed from version 6.4" | ||
| 7398 | |||
| 7399 | CVE_STATUS[CVE-2023-53590] = "fixed-version: Fixed from version 6.3" | ||
| 7400 | |||
| 7401 | CVE_STATUS[CVE-2023-53591] = "fixed-version: Fixed from version 6.4" | ||
| 7402 | |||
| 7403 | CVE_STATUS[CVE-2023-53592] = "fixed-version: Fixed from version 6.2" | ||
| 7404 | |||
| 7405 | CVE_STATUS[CVE-2023-53593] = "fixed-version: Fixed from version 6.5" | ||
| 7406 | |||
| 7407 | CVE_STATUS[CVE-2023-53594] = "fixed-version: Fixed from version 6.3" | ||
| 7408 | |||
| 7409 | CVE_STATUS[CVE-2023-53595] = "fixed-version: Fixed from version 6.4" | ||
| 7410 | |||
| 7411 | CVE_STATUS[CVE-2023-53596] = "fixed-version: Fixed from version 6.6" | ||
| 7412 | |||
| 7413 | CVE_STATUS[CVE-2023-53597] = "fixed-version: Fixed from version 6.5" | ||
| 7414 | |||
| 7415 | CVE_STATUS[CVE-2023-53598] = "fixed-version: Fixed from version 6.4" | ||
| 7416 | |||
| 7417 | CVE_STATUS[CVE-2023-53599] = "fixed-version: Fixed from version 6.6" | ||
| 7418 | |||
| 7419 | CVE_STATUS[CVE-2023-53600] = "fixed-version: Fixed from version 6.5" | ||
| 7420 | |||
| 7421 | CVE_STATUS[CVE-2023-53601] = "fixed-version: Fixed from version 6.5" | ||
| 7422 | |||
| 7423 | CVE_STATUS[CVE-2023-53602] = "fixed-version: Fixed from version 6.5" | ||
| 7424 | |||
| 7425 | CVE_STATUS[CVE-2023-53603] = "fixed-version: Fixed from version 6.5" | ||
| 7426 | |||
| 7427 | CVE_STATUS[CVE-2023-53604] = "fixed-version: Fixed from version 6.4" | ||
| 7428 | |||
| 7429 | CVE_STATUS[CVE-2023-53605] = "fixed-version: Fixed from version 6.3" | ||
| 7430 | |||
| 7431 | CVE_STATUS[CVE-2023-53606] = "fixed-version: Fixed from version 6.3" | ||
| 7432 | |||
| 7433 | CVE_STATUS[CVE-2023-53607] = "fixed-version: Fixed from version 6.3" | ||
| 7434 | |||
| 7435 | CVE_STATUS[CVE-2023-53608] = "fixed-version: Fixed from version 6.3" | ||
| 7436 | |||
| 7437 | CVE_STATUS[CVE-2023-53609] = "fixed-version: Fixed from version 6.4" | ||
| 7438 | |||
| 7439 | CVE_STATUS[CVE-2023-53610] = "fixed-version: Fixed from version 6.3" | ||
| 7440 | |||
| 7441 | CVE_STATUS[CVE-2023-53611] = "fixed-version: Fixed from version 6.6" | ||
| 7442 | |||
| 7443 | CVE_STATUS[CVE-2023-53612] = "fixed-version: Fixed from version 6.3" | ||
| 7444 | |||
| 7445 | CVE_STATUS[CVE-2023-53613] = "fixed-version: Fixed from version 6.5" | ||
| 7446 | |||
| 7447 | CVE_STATUS[CVE-2023-53614] = "fixed-version: Fixed from version 6.3" | ||
| 7448 | |||
| 7449 | CVE_STATUS[CVE-2023-53615] = "fixed-version: Fixed from version 6.6" | ||
| 7450 | |||
| 7451 | CVE_STATUS[CVE-2023-53616] = "fixed-version: Fixed from version 6.6" | ||
| 7452 | |||
| 7453 | CVE_STATUS[CVE-2023-53617] = "fixed-version: Fixed from version 6.5" | ||
| 7454 | |||
| 7455 | CVE_STATUS[CVE-2023-53618] = "fixed-version: Fixed from version 6.5" | ||
| 7456 | |||
| 7457 | CVE_STATUS[CVE-2023-53619] = "fixed-version: Fixed from version 6.5" | ||
| 7458 | |||
| 7459 | CVE_STATUS[CVE-2023-53620] = "fixed-version: Fixed from version 6.4" | ||
| 7460 | |||
| 7461 | CVE_STATUS[CVE-2023-53621] = "fixed-version: Fixed from version 6.6" | ||
| 7462 | |||
| 7463 | CVE_STATUS[CVE-2023-53622] = "fixed-version: Fixed from version 6.5" | ||
| 7464 | |||
| 7465 | CVE_STATUS[CVE-2023-53623] = "fixed-version: Fixed from version 6.3" | ||
| 7466 | |||
| 7467 | CVE_STATUS[CVE-2023-53624] = "fixed-version: Fixed from version 6.4" | ||
| 7468 | |||
| 7469 | CVE_STATUS[CVE-2023-53625] = "fixed-version: Fixed from version 6.2" | ||
| 7470 | |||
| 7471 | CVE_STATUS[CVE-2023-53626] = "fixed-version: Fixed from version 6.2.8" | ||
| 7472 | |||
| 7473 | CVE_STATUS[CVE-2023-53627] = "fixed-version: Fixed from version 6.4" | ||
| 7474 | |||
| 7475 | CVE_STATUS[CVE-2023-53628] = "fixed-version: Fixed from version 6.4" | ||
| 7476 | |||
| 7477 | CVE_STATUS[CVE-2023-53629] = "fixed-version: Fixed from version 6.3" | ||
| 7478 | |||
| 7479 | CVE_STATUS[CVE-2023-53630] = "fixed-version: Fixed from version 6.3" | ||
| 7480 | |||
| 7481 | CVE_STATUS[CVE-2023-53631] = "fixed-version: Fixed from version 6.6" | ||
| 7482 | |||
| 7483 | CVE_STATUS[CVE-2023-53632] = "fixed-version: Fixed from version 6.5" | ||
| 7484 | |||
| 7485 | CVE_STATUS[CVE-2023-53633] = "fixed-version: Fixed from version 6.5" | ||
| 7486 | |||
| 7487 | CVE_STATUS[CVE-2023-53634] = "fixed-version: Fixed from version 6.3" | ||
| 7488 | |||
| 7489 | CVE_STATUS[CVE-2023-53635] = "fixed-version: Fixed from version 6.4" | ||
| 7490 | |||
| 7491 | CVE_STATUS[CVE-2023-53636] = "fixed-version: Fixed from version 6.4" | ||
| 7492 | |||
| 7493 | CVE_STATUS[CVE-2023-53637] = "fixed-version: Fixed from version 6.3" | ||
| 7494 | |||
| 7495 | CVE_STATUS[CVE-2023-53638] = "fixed-version: Fixed from version 6.5" | ||
| 7496 | |||
| 7497 | CVE_STATUS[CVE-2023-53639] = "fixed-version: Fixed from version 6.4" | ||
| 7498 | |||
| 7499 | CVE_STATUS[CVE-2023-53640] = "fixed-version: Fixed from version 6.4" | ||
| 7500 | |||
| 7501 | CVE_STATUS[CVE-2023-53641] = "fixed-version: Fixed from version 6.4" | ||
| 7502 | |||
| 7503 | CVE_STATUS[CVE-2023-53642] = "fixed-version: Fixed from version 6.4" | ||
| 7504 | |||
| 7505 | CVE_STATUS[CVE-2023-53643] = "fixed-version: Fixed from version 6.3" | ||
| 7506 | |||
| 7507 | CVE_STATUS[CVE-2023-53644] = "fixed-version: Fixed from version 6.4" | ||
| 7508 | |||
| 7509 | CVE_STATUS[CVE-2023-53645] = "fixed-version: Fixed from version 6.5" | ||
| 7510 | |||
| 7511 | CVE_STATUS[CVE-2023-53646] = "fixed-version: Fixed from version 6.5" | ||
| 7512 | |||
| 7513 | CVE_STATUS[CVE-2023-53647] = "fixed-version: Fixed from version 6.6" | ||
| 7514 | |||
| 7515 | CVE_STATUS[CVE-2023-53648] = "fixed-version: Fixed from version 6.5" | ||
| 7516 | |||
| 7517 | CVE_STATUS[CVE-2023-53649] = "fixed-version: Fixed from version 6.6" | ||
| 7518 | |||
| 7519 | CVE_STATUS[CVE-2023-53650] = "fixed-version: Fixed from version 6.5" | ||
| 7520 | |||
| 7521 | CVE_STATUS[CVE-2023-53651] = "fixed-version: Fixed from version 6.3" | ||
| 7522 | |||
| 7523 | CVE_STATUS[CVE-2023-53652] = "fixed-version: Fixed from version 6.5" | ||
| 7524 | |||
| 7525 | CVE_STATUS[CVE-2023-53653] = "fixed-version: Fixed from version 6.6" | ||
| 7526 | |||
| 7527 | CVE_STATUS[CVE-2023-53654] = "fixed-version: Fixed from version 6.5" | ||
| 7528 | |||
| 7529 | CVE_STATUS[CVE-2023-53655] = "fixed-version: Fixed from version 6.4" | ||
| 7530 | |||
| 7531 | CVE_STATUS[CVE-2023-53656] = "fixed-version: Fixed from version 6.5" | ||
| 7532 | |||
| 7533 | CVE_STATUS[CVE-2023-53657] = "fixed-version: Fixed from version 6.6" | ||
| 7534 | |||
| 7535 | CVE_STATUS[CVE-2023-53658] = "fixed-version: Fixed from version 6.5" | ||
| 7536 | |||
| 7537 | CVE_STATUS[CVE-2023-53659] = "fixed-version: Fixed from version 6.5" | ||
| 7538 | |||
| 7539 | CVE_STATUS[CVE-2023-53660] = "fixed-version: Fixed from version 6.5" | ||
| 7540 | |||
| 7541 | CVE_STATUS[CVE-2023-53661] = "fixed-version: Fixed from version 6.4" | ||
| 7542 | |||
| 7543 | CVE_STATUS[CVE-2023-53662] = "fixed-version: Fixed from version 6.6" | ||
| 7544 | |||
| 7545 | CVE_STATUS[CVE-2023-53663] = "fixed-version: Fixed from version 6.6" | ||
| 7546 | |||
| 7547 | CVE_STATUS[CVE-2023-53664] = "fixed-version: Fixed from version 6.6" | ||
| 7548 | |||
| 7549 | CVE_STATUS[CVE-2023-53665] = "fixed-version: Fixed from version 6.6" | ||
| 7550 | |||
| 7551 | CVE_STATUS[CVE-2023-53666] = "fixed-version: Fixed from version 6.5" | ||
| 7552 | |||
| 7553 | CVE_STATUS[CVE-2023-53667] = "fixed-version: Fixed from version 6.4" | ||
| 7554 | |||
| 7555 | CVE_STATUS[CVE-2023-53668] = "fixed-version: Fixed from version 6.5" | ||
| 7556 | |||
| 7557 | CVE_STATUS[CVE-2023-53669] = "fixed-version: Fixed from version 6.4" | ||
| 7558 | |||
| 7559 | CVE_STATUS[CVE-2023-53670] = "fixed-version: Fixed from version 6.5" | ||
| 7560 | |||
| 7561 | CVE_STATUS[CVE-2023-53671] = "fixed-version: Fixed from version 6.3" | ||
| 7562 | |||
| 7563 | CVE_STATUS[CVE-2023-53672] = "fixed-version: Fixed from version 6.6" | ||
| 7564 | |||
| 7565 | CVE_STATUS[CVE-2023-53673] = "fixed-version: Fixed from version 6.5" | ||
| 7566 | |||
| 7567 | CVE_STATUS[CVE-2023-53674] = "fixed-version: Fixed from version 6.5" | ||
| 7568 | |||
| 7569 | CVE_STATUS[CVE-2023-53675] = "fixed-version: Fixed from version 6.3" | ||
| 7570 | |||
| 7571 | CVE_STATUS[CVE-2023-53676] = "fixed-version: Fixed from version 6.6" | ||
| 7572 | |||
| 7573 | CVE_STATUS[CVE-2023-53677] = "fixed-version: Fixed from version 6.4" | ||
| 7574 | |||
| 7575 | CVE_STATUS[CVE-2023-53678] = "fixed-version: Fixed from version 6.3" | ||
| 7576 | |||
| 7577 | CVE_STATUS[CVE-2023-53679] = "fixed-version: Fixed from version 6.3" | ||
| 7578 | |||
| 7579 | CVE_STATUS[CVE-2023-53680] = "fixed-version: Fixed from version 6.3" | ||
| 7580 | |||
| 7581 | CVE_STATUS[CVE-2023-53681] = "fixed-version: Fixed from version 6.5" | ||
| 7582 | |||
| 7583 | CVE_STATUS[CVE-2023-53682] = "fixed-version: Fixed from version 6.3" | ||
| 7584 | |||
| 7585 | CVE_STATUS[CVE-2023-53683] = "fixed-version: Fixed from version 6.4" | ||
| 7586 | |||
| 7587 | CVE_STATUS[CVE-2023-53684] = "fixed-version: Fixed from version 6.3" | ||
| 7588 | |||
| 7589 | CVE_STATUS[CVE-2023-53685] = "fixed-version: Fixed from version 6.4" | ||
| 7590 | |||
| 7591 | CVE_STATUS[CVE-2023-53686] = "fixed-version: Fixed from version 6.6" | ||
| 7592 | |||
| 7593 | CVE_STATUS[CVE-2023-53687] = "fixed-version: Fixed from version 6.5" | ||
| 7594 | |||
| 7595 | CVE_STATUS[CVE-2023-53692] = "fixed-version: Fixed from version 6.4" | ||
| 7596 | |||
| 7597 | CVE_STATUS[CVE-2023-53693] = "fixed-version: Fixed from version 6.5" | ||
| 7598 | |||
| 7599 | CVE_STATUS[CVE-2023-53694] = "fixed-version: Fixed from version 6.3" | ||
| 7600 | |||
| 7601 | CVE_STATUS[CVE-2023-53695] = "fixed-version: Fixed from version 6.3" | ||
| 7602 | |||
| 7603 | CVE_STATUS[CVE-2023-53696] = "fixed-version: Fixed from version 6.3" | ||
| 7604 | |||
| 7605 | CVE_STATUS[CVE-2023-53697] = "fixed-version: Fixed from version 6.6" | ||
| 7606 | |||
| 7607 | CVE_STATUS[CVE-2023-53698] = "fixed-version: Fixed from version 6.5" | ||
| 7608 | |||
| 7609 | CVE_STATUS[CVE-2023-53699] = "fixed-version: Fixed from version 6.5" | ||
| 7610 | |||
| 7611 | CVE_STATUS[CVE-2023-53700] = "fixed-version: Fixed from version 6.3" | ||
| 7612 | |||
| 7613 | CVE_STATUS[CVE-2023-53702] = "fixed-version: Fixed from version 6.4" | ||
| 7614 | |||
| 7615 | CVE_STATUS[CVE-2023-53703] = "fixed-version: Fixed from version 6.5" | ||
| 7616 | |||
| 7617 | CVE_STATUS[CVE-2023-53704] = "fixed-version: Fixed from version 6.5" | ||
| 7618 | |||
| 7619 | CVE_STATUS[CVE-2023-53705] = "fixed-version: Fixed from version 6.4" | ||
| 7620 | |||
| 7621 | CVE_STATUS[CVE-2023-53706] = "fixed-version: Fixed from version 6.4" | ||
| 7622 | |||
| 7623 | CVE_STATUS[CVE-2023-53707] = "fixed-version: Fixed from version 6.5" | ||
| 7624 | |||
| 7625 | CVE_STATUS[CVE-2023-53708] = "fixed-version: Fixed from version 6.6" | ||
| 7626 | |||
| 7627 | CVE_STATUS[CVE-2023-53709] = "fixed-version: Fixed from version 6.3" | ||
| 7628 | |||
| 7629 | CVE_STATUS[CVE-2023-53710] = "fixed-version: Fixed from version 6.3" | ||
| 7630 | |||
| 7631 | CVE_STATUS[CVE-2023-53711] = "fixed-version: Fixed from version 6.6" | ||
| 7632 | |||
| 7633 | CVE_STATUS[CVE-2023-53712] = "fixed-version: Fixed from version 6.6" | ||
| 7634 | |||
| 7635 | CVE_STATUS[CVE-2023-53713] = "fixed-version: Fixed from version 6.5" | ||
| 7636 | |||
| 7637 | CVE_STATUS[CVE-2023-53714] = "fixed-version: Fixed from version 6.5" | ||
| 7638 | |||
| 7639 | CVE_STATUS[CVE-2023-53715] = "fixed-version: Fixed from version 6.4" | ||
| 7640 | |||
| 7641 | CVE_STATUS[CVE-2023-53716] = "fixed-version: Fixed from version 6.3.5" | ||
| 7642 | |||
| 7643 | CVE_STATUS[CVE-2023-53717] = "fixed-version: Fixed from version 6.3" | ||
| 7644 | |||
| 7645 | CVE_STATUS[CVE-2023-53718] = "fixed-version: Fixed from version 6.5" | ||
| 7646 | |||
| 7647 | CVE_STATUS[CVE-2023-53719] = "fixed-version: Fixed from version 6.4" | ||
| 7648 | |||
| 7649 | CVE_STATUS[CVE-2023-53720] = "fixed-version: Fixed from version 6.4" | ||
| 7650 | |||
| 7651 | CVE_STATUS[CVE-2023-53721] = "fixed-version: Fixed from version 6.6" | ||
| 7652 | |||
| 7653 | CVE_STATUS[CVE-2023-53722] = "fixed-version: Fixed from version 6.6" | ||
| 7654 | |||
| 7655 | CVE_STATUS[CVE-2023-53723] = "fixed-version: Fixed from version 6.4" | ||
| 7656 | |||
| 7657 | CVE_STATUS[CVE-2023-53724] = "fixed-version: Fixed from version 6.3" | ||
| 7658 | |||
| 7659 | CVE_STATUS[CVE-2023-53725] = "fixed-version: Fixed from version 6.5" | ||
| 7660 | |||
| 7661 | CVE_STATUS[CVE-2023-53726] = "fixed-version: Fixed from version 6.6" | ||
| 7662 | |||
| 7663 | CVE_STATUS[CVE-2023-53727] = "fixed-version: Fixed from version 6.6" | ||
| 7664 | |||
| 7665 | CVE_STATUS[CVE-2023-53728] = "fixed-version: Fixed from version 6.5" | ||
| 7666 | |||
| 7667 | CVE_STATUS[CVE-2023-53729] = "fixed-version: Fixed from version 6.6" | ||
| 7668 | |||
| 7669 | CVE_STATUS[CVE-2023-53730] = "fixed-version: Fixed from version 6.5" | ||
| 7670 | |||
| 7671 | CVE_STATUS[CVE-2023-53731] = "fixed-version: Fixed from version 6.5" | ||
| 7672 | |||
| 7673 | CVE_STATUS[CVE-2023-53732] = "fixed-version: Fixed from version 6.4" | ||
| 7674 | |||
| 7675 | CVE_STATUS[CVE-2023-53733] = "fixed-version: Fixed from version 6.5" | ||
| 7676 | |||
| 7677 | CVE_STATUS[CVE-2023-7324] = "fixed-version: Fixed from version 6.3" | ||
| 7678 | |||
| 7679 | CVE_STATUS[CVE-2024-26581] = "fixed-version: Fixed from version 6.8" | ||
| 7680 | |||
| 7681 | CVE_STATUS[CVE-2024-26582] = "fixed-version: Fixed from version 6.8" | ||
| 7682 | |||
| 7683 | CVE_STATUS[CVE-2024-26583] = "fixed-version: Fixed from version 6.8" | ||
| 7684 | |||
| 7685 | CVE_STATUS[CVE-2024-26584] = "fixed-version: Fixed from version 6.8" | ||
| 7686 | |||
| 7687 | CVE_STATUS[CVE-2024-26585] = "fixed-version: Fixed from version 6.8" | ||
| 7688 | |||
| 7689 | CVE_STATUS[CVE-2024-26586] = "fixed-version: Fixed from version 6.8" | ||
| 7690 | |||
| 7691 | CVE_STATUS[CVE-2024-26587] = "fixed-version: Fixed from version 6.8" | ||
| 7692 | |||
| 7693 | CVE_STATUS[CVE-2024-26588] = "fixed-version: Fixed from version 6.8" | ||
| 7694 | |||
| 7695 | CVE_STATUS[CVE-2024-26589] = "fixed-version: Fixed from version 6.8" | ||
| 7696 | |||
| 7697 | CVE_STATUS[CVE-2024-26590] = "fixed-version: Fixed from version 6.8" | ||
| 7698 | |||
| 7699 | CVE_STATUS[CVE-2024-26591] = "fixed-version: Fixed from version 6.8" | ||
| 7700 | |||
| 7701 | CVE_STATUS[CVE-2024-26592] = "fixed-version: Fixed from version 6.8" | ||
| 7702 | |||
| 7703 | CVE_STATUS[CVE-2024-26593] = "fixed-version: Fixed from version 6.8" | ||
| 7704 | |||
| 7705 | CVE_STATUS[CVE-2024-26594] = "fixed-version: Fixed from version 6.8" | ||
| 7706 | |||
| 7707 | CVE_STATUS[CVE-2024-26595] = "fixed-version: Fixed from version 6.8" | ||
| 7708 | |||
| 7709 | CVE_STATUS[CVE-2024-26596] = "fixed-version: Fixed from version 6.8" | ||
| 7710 | |||
| 7711 | CVE_STATUS[CVE-2024-26597] = "fixed-version: Fixed from version 6.8" | ||
| 7712 | |||
| 7713 | CVE_STATUS[CVE-2024-26598] = "fixed-version: Fixed from version 6.8" | ||
| 7714 | |||
| 7715 | CVE_STATUS[CVE-2024-26599] = "fixed-version: Fixed from version 6.8" | ||
| 7716 | |||
| 7717 | CVE_STATUS[CVE-2024-26600] = "fixed-version: Fixed from version 6.8" | ||
| 7718 | |||
| 7719 | CVE_STATUS[CVE-2024-26601] = "fixed-version: Fixed from version 6.8" | ||
| 7720 | |||
| 7721 | CVE_STATUS[CVE-2024-26602] = "fixed-version: Fixed from version 6.8" | ||
| 7722 | |||
| 7723 | CVE_STATUS[CVE-2024-26603] = "fixed-version: Fixed from version 6.8" | ||
| 7724 | |||
| 7725 | CVE_STATUS[CVE-2024-26604] = "fixed-version: Fixed from version 6.8" | ||
| 7726 | |||
| 7727 | CVE_STATUS[CVE-2024-26605] = "fixed-version: Fixed from version 6.8" | ||
| 7728 | |||
| 7729 | CVE_STATUS[CVE-2024-26606] = "fixed-version: Fixed from version 6.8" | ||
| 7730 | |||
| 7731 | CVE_STATUS[CVE-2024-26607] = "fixed-version: Fixed from version 6.8" | ||
| 7732 | |||
| 7733 | CVE_STATUS[CVE-2024-26608] = "fixed-version: Fixed from version 6.8" | ||
| 7734 | |||
| 7735 | CVE_STATUS[CVE-2024-26610] = "fixed-version: Fixed from version 6.8" | ||
| 7736 | |||
| 7737 | CVE_STATUS[CVE-2024-26611] = "fixed-version: Fixed from version 6.8" | ||
| 7738 | |||
| 7739 | CVE_STATUS[CVE-2024-26612] = "fixed-version: Fixed from version 6.8" | ||
| 7740 | |||
| 7741 | CVE_STATUS[CVE-2024-26614] = "fixed-version: Fixed from version 6.8" | ||
| 7742 | |||
| 7743 | CVE_STATUS[CVE-2024-26615] = "fixed-version: Fixed from version 6.8" | ||
| 7744 | |||
| 7745 | CVE_STATUS[CVE-2024-26616] = "fixed-version: Fixed from version 6.8" | ||
| 7746 | |||
| 7747 | CVE_STATUS[CVE-2024-26617] = "fixed-version: Fixed from version 6.8" | ||
| 7748 | |||
| 7749 | CVE_STATUS[CVE-2024-26618] = "fixed-version: Fixed from version 6.8" | ||
| 7750 | |||
| 7751 | CVE_STATUS[CVE-2024-26619] = "fixed-version: Fixed from version 6.8" | ||
| 7752 | |||
| 7753 | CVE_STATUS[CVE-2024-26620] = "fixed-version: Fixed from version 6.8" | ||
| 7754 | |||
| 7755 | CVE_STATUS[CVE-2024-26621] = "fixed-version: Fixed from version 6.8" | ||
| 7756 | |||
| 7757 | CVE_STATUS[CVE-2024-26622] = "fixed-version: Fixed from version 6.8" | ||
| 7758 | |||
| 7759 | CVE_STATUS[CVE-2024-26623] = "fixed-version: Fixed from version 6.8" | ||
| 7760 | |||
| 7761 | CVE_STATUS[CVE-2024-26625] = "fixed-version: Fixed from version 6.8" | ||
| 7762 | |||
| 7763 | CVE_STATUS[CVE-2024-26626] = "fixed-version: Fixed from version 6.7.4" | ||
| 7764 | |||
| 7765 | CVE_STATUS[CVE-2024-26627] = "fixed-version: Fixed from version 6.8" | ||
| 7766 | |||
| 7767 | CVE_STATUS[CVE-2024-26629] = "fixed-version: Fixed from version 6.8" | ||
| 7768 | |||
| 7769 | CVE_STATUS[CVE-2024-26630] = "fixed-version: Fixed from version 6.8" | ||
| 7770 | |||
| 7771 | CVE_STATUS[CVE-2024-26631] = "fixed-version: Fixed from version 6.8" | ||
| 7772 | |||
| 7773 | CVE_STATUS[CVE-2024-26632] = "fixed-version: Fixed from version 6.8" | ||
| 7774 | |||
| 7775 | CVE_STATUS[CVE-2024-26633] = "fixed-version: Fixed from version 6.8" | ||
| 7776 | |||
| 7777 | CVE_STATUS[CVE-2024-26634] = "fixed-version: Fixed from version 6.8" | ||
| 7778 | |||
| 7779 | CVE_STATUS[CVE-2024-26635] = "fixed-version: Fixed from version 6.8" | ||
| 7780 | |||
| 7781 | CVE_STATUS[CVE-2024-26636] = "fixed-version: Fixed from version 6.8" | ||
| 7782 | |||
| 7783 | CVE_STATUS[CVE-2024-26637] = "fixed-version: Fixed from version 6.8" | ||
| 7784 | |||
| 7785 | CVE_STATUS[CVE-2024-26638] = "fixed-version: Fixed from version 6.8" | ||
| 7786 | |||
| 7787 | CVE_STATUS[CVE-2024-26640] = "fixed-version: Fixed from version 6.8" | ||
| 7788 | |||
| 7789 | CVE_STATUS[CVE-2024-26641] = "fixed-version: Fixed from version 6.8" | ||
| 7790 | |||
| 7791 | CVE_STATUS[CVE-2024-26642] = "fixed-version: Fixed from version 6.8" | ||
| 7792 | |||
| 7793 | CVE_STATUS[CVE-2024-26643] = "fixed-version: Fixed from version 6.8" | ||
| 7794 | |||
| 7795 | CVE_STATUS[CVE-2024-26644] = "fixed-version: Fixed from version 6.8" | ||
| 7796 | |||
| 7797 | CVE_STATUS[CVE-2024-26645] = "fixed-version: Fixed from version 6.8" | ||
| 7798 | |||
| 7799 | CVE_STATUS[CVE-2024-26646] = "fixed-version: Fixed from version 6.8" | ||
| 7800 | |||
| 7801 | CVE_STATUS[CVE-2024-26647] = "fixed-version: Fixed from version 6.8" | ||
| 7802 | |||
| 7803 | CVE_STATUS[CVE-2024-26648] = "fixed-version: Fixed from version 6.8" | ||
| 7804 | |||
| 7805 | CVE_STATUS[CVE-2024-26649] = "fixed-version: Fixed from version 6.8" | ||
| 7806 | |||
| 7807 | CVE_STATUS[CVE-2024-26651] = "fixed-version: Fixed from version 6.9" | ||
| 7808 | |||
| 7809 | CVE_STATUS[CVE-2024-26652] = "fixed-version: Fixed from version 6.8" | ||
| 7810 | |||
| 7811 | CVE_STATUS[CVE-2024-26653] = "fixed-version: Fixed from version 6.9" | ||
| 7812 | |||
| 7813 | CVE_STATUS[CVE-2024-26654] = "fixed-version: Fixed from version 6.9" | ||
| 7814 | |||
| 7815 | CVE_STATUS[CVE-2024-26655] = "fixed-version: Fixed from version 6.9" | ||
| 7816 | |||
| 7817 | CVE_STATUS[CVE-2024-26656] = "fixed-version: Fixed from version 6.9" | ||
| 7818 | |||
| 7819 | CVE_STATUS[CVE-2024-26657] = "fixed-version: Fixed from version 6.9" | ||
| 7820 | |||
| 7821 | CVE_STATUS[CVE-2024-26658] = "fixed-version: Fixed from version 6.8" | ||
| 7822 | |||
| 7823 | CVE_STATUS[CVE-2024-26659] = "fixed-version: Fixed from version 6.8" | ||
| 7824 | |||
| 7825 | CVE_STATUS[CVE-2024-26660] = "fixed-version: Fixed from version 6.8" | ||
| 7826 | |||
| 7827 | CVE_STATUS[CVE-2024-26661] = "fixed-version: Fixed from version 6.8" | ||
| 7828 | |||
| 7829 | CVE_STATUS[CVE-2024-26662] = "fixed-version: Fixed from version 6.8" | ||
| 7830 | |||
| 7831 | CVE_STATUS[CVE-2024-26663] = "fixed-version: Fixed from version 6.8" | ||
| 7832 | |||
| 7833 | CVE_STATUS[CVE-2024-26664] = "fixed-version: Fixed from version 6.8" | ||
| 7834 | |||
| 7835 | CVE_STATUS[CVE-2024-26665] = "fixed-version: Fixed from version 6.8" | ||
| 7836 | |||
| 7837 | CVE_STATUS[CVE-2024-26666] = "fixed-version: Fixed from version 6.8" | ||
| 7838 | |||
| 7839 | CVE_STATUS[CVE-2024-26667] = "fixed-version: Fixed from version 6.8" | ||
| 7840 | |||
| 7841 | CVE_STATUS[CVE-2024-26668] = "fixed-version: Fixed from version 6.8" | ||
| 7842 | |||
| 7843 | CVE_STATUS[CVE-2024-26669] = "fixed-version: Fixed from version 6.8" | ||
| 7844 | |||
| 7845 | CVE_STATUS[CVE-2024-26670] = "fixed-version: Fixed from version 6.8" | ||
| 7846 | |||
| 7847 | CVE_STATUS[CVE-2024-26671] = "fixed-version: Fixed from version 6.8" | ||
| 7848 | |||
| 7849 | CVE_STATUS[CVE-2024-26672] = "fixed-version: Fixed from version 6.8" | ||
| 7850 | |||
| 7851 | CVE_STATUS[CVE-2024-26673] = "fixed-version: Fixed from version 6.8" | ||
| 7852 | |||
| 7853 | CVE_STATUS[CVE-2024-26674] = "fixed-version: Fixed from version 6.8" | ||
| 7854 | |||
| 7855 | CVE_STATUS[CVE-2024-26675] = "fixed-version: Fixed from version 6.8" | ||
| 7856 | |||
| 7857 | CVE_STATUS[CVE-2024-26676] = "fixed-version: Fixed from version 6.8" | ||
| 7858 | |||
| 7859 | CVE_STATUS[CVE-2024-26677] = "fixed-version: Fixed from version 6.8" | ||
| 7860 | |||
| 7861 | CVE_STATUS[CVE-2024-26678] = "fixed-version: Fixed from version 6.8" | ||
| 7862 | |||
| 7863 | CVE_STATUS[CVE-2024-26679] = "fixed-version: Fixed from version 6.8" | ||
| 7864 | |||
| 7865 | CVE_STATUS[CVE-2024-26680] = "fixed-version: Fixed from version 6.8" | ||
| 7866 | |||
| 7867 | CVE_STATUS[CVE-2024-26681] = "fixed-version: Fixed from version 6.8" | ||
| 7868 | |||
| 7869 | CVE_STATUS[CVE-2024-26682] = "fixed-version: Fixed from version 6.8" | ||
| 7870 | |||
| 7871 | CVE_STATUS[CVE-2024-26683] = "fixed-version: Fixed from version 6.8" | ||
| 7872 | |||
| 7873 | CVE_STATUS[CVE-2024-26684] = "fixed-version: Fixed from version 6.8" | ||
| 7874 | |||
| 7875 | CVE_STATUS[CVE-2024-26685] = "fixed-version: Fixed from version 6.8" | ||
| 7876 | |||
| 7877 | CVE_STATUS[CVE-2024-26686] = "fixed-version: Fixed from version 6.8" | ||
| 7878 | |||
| 7879 | CVE_STATUS[CVE-2024-26687] = "fixed-version: Fixed from version 6.8" | ||
| 7880 | |||
| 7881 | CVE_STATUS[CVE-2024-26688] = "fixed-version: Fixed from version 6.8" | ||
| 7882 | |||
| 7883 | CVE_STATUS[CVE-2024-26689] = "fixed-version: Fixed from version 6.8" | ||
| 7884 | |||
| 7885 | CVE_STATUS[CVE-2024-26690] = "fixed-version: Fixed from version 6.8" | ||
| 7886 | |||
| 7887 | CVE_STATUS[CVE-2024-26691] = "fixed-version: Fixed from version 6.8" | ||
| 7888 | |||
| 7889 | CVE_STATUS[CVE-2024-26692] = "fixed-version: Fixed from version 6.8" | ||
| 7890 | |||
| 7891 | CVE_STATUS[CVE-2024-26693] = "fixed-version: Fixed from version 6.8" | ||
| 7892 | |||
| 7893 | CVE_STATUS[CVE-2024-26694] = "fixed-version: Fixed from version 6.8" | ||
| 7894 | |||
| 7895 | CVE_STATUS[CVE-2024-26695] = "fixed-version: Fixed from version 6.8" | ||
| 7896 | |||
| 7897 | CVE_STATUS[CVE-2024-26696] = "fixed-version: Fixed from version 6.8" | ||
| 7898 | |||
| 7899 | CVE_STATUS[CVE-2024-26697] = "fixed-version: Fixed from version 6.8" | ||
| 7900 | |||
| 7901 | CVE_STATUS[CVE-2024-26698] = "fixed-version: Fixed from version 6.8" | ||
| 7902 | |||
| 7903 | CVE_STATUS[CVE-2024-26699] = "fixed-version: Fixed from version 6.8" | ||
| 7904 | |||
| 7905 | CVE_STATUS[CVE-2024-26700] = "fixed-version: Fixed from version 6.8" | ||
| 7906 | |||
| 7907 | CVE_STATUS[CVE-2024-26702] = "fixed-version: Fixed from version 6.8" | ||
| 7908 | |||
| 7909 | CVE_STATUS[CVE-2024-26703] = "fixed-version: Fixed from version 6.8" | ||
| 7910 | |||
| 7911 | CVE_STATUS[CVE-2024-26704] = "fixed-version: Fixed from version 6.8" | ||
| 7912 | |||
| 7913 | CVE_STATUS[CVE-2024-26705] = "fixed-version: Fixed from version 6.8" | ||
| 7914 | |||
| 7915 | CVE_STATUS[CVE-2024-26706] = "fixed-version: Fixed from version 6.8" | ||
| 7916 | |||
| 7917 | CVE_STATUS[CVE-2024-26707] = "fixed-version: Fixed from version 6.8" | ||
| 7918 | |||
| 7919 | CVE_STATUS[CVE-2024-26708] = "fixed-version: Fixed from version 6.8" | ||
| 7920 | |||
| 7921 | CVE_STATUS[CVE-2024-26709] = "fixed-version: Fixed from version 6.8" | ||
| 7922 | |||
| 7923 | CVE_STATUS[CVE-2024-26710] = "fixed-version: Fixed from version 6.7.6" | ||
| 7924 | |||
| 7925 | CVE_STATUS[CVE-2024-26711] = "fixed-version: Fixed from version 6.8" | ||
| 7926 | |||
| 7927 | CVE_STATUS[CVE-2024-26712] = "fixed-version: Fixed from version 6.8" | ||
| 7928 | |||
| 7929 | CVE_STATUS[CVE-2024-26714] = "fixed-version: Fixed from version 6.8" | ||
| 7930 | |||
| 7931 | CVE_STATUS[CVE-2024-26715] = "fixed-version: Fixed from version 6.8" | ||
| 7932 | |||
| 7933 | CVE_STATUS[CVE-2024-26716] = "fixed-version: Fixed from version 6.8" | ||
| 7934 | |||
| 7935 | CVE_STATUS[CVE-2024-26717] = "fixed-version: Fixed from version 6.8" | ||
| 7936 | |||
| 7937 | CVE_STATUS[CVE-2024-26718] = "fixed-version: Fixed from version 6.8" | ||
| 7938 | |||
| 7939 | CVE_STATUS[CVE-2024-26719] = "fixed-version: Fixed from version 6.8" | ||
| 7940 | |||
| 7941 | CVE_STATUS[CVE-2024-26721] = "fixed-version: Fixed from version 6.8" | ||
| 7942 | |||
| 7943 | CVE_STATUS[CVE-2024-26722] = "fixed-version: Fixed from version 6.8" | ||
| 7944 | |||
| 7945 | CVE_STATUS[CVE-2024-26723] = "fixed-version: Fixed from version 6.8" | ||
| 7946 | |||
| 7947 | CVE_STATUS[CVE-2024-26724] = "fixed-version: Fixed from version 6.8" | ||
| 7948 | |||
| 7949 | CVE_STATUS[CVE-2024-26725] = "fixed-version: Fixed from version 6.8" | ||
| 7950 | |||
| 7951 | CVE_STATUS[CVE-2024-26726] = "fixed-version: Fixed from version 6.8" | ||
| 7952 | |||
| 7953 | CVE_STATUS[CVE-2024-26727] = "fixed-version: Fixed from version 6.8" | ||
| 7954 | |||
| 7955 | CVE_STATUS[CVE-2024-26728] = "fixed-version: Fixed from version 6.8" | ||
| 7956 | |||
| 7957 | CVE_STATUS[CVE-2024-26729] = "fixed-version: Fixed from version 6.8" | ||
| 7958 | |||
| 7959 | CVE_STATUS[CVE-2024-26730] = "fixed-version: Fixed from version 6.8" | ||
| 7960 | |||
| 7961 | CVE_STATUS[CVE-2024-26731] = "fixed-version: Fixed from version 6.8" | ||
| 7962 | |||
| 7963 | CVE_STATUS[CVE-2024-26732] = "fixed-version: Fixed from version 6.8" | ||
| 7964 | |||
| 7965 | CVE_STATUS[CVE-2024-26733] = "fixed-version: Fixed from version 6.8" | ||
| 7966 | |||
| 7967 | CVE_STATUS[CVE-2024-26734] = "fixed-version: Fixed from version 6.8" | ||
| 7968 | |||
| 7969 | CVE_STATUS[CVE-2024-26735] = "fixed-version: Fixed from version 6.8" | ||
| 7970 | |||
| 7971 | CVE_STATUS[CVE-2024-26736] = "fixed-version: Fixed from version 6.8" | ||
| 7972 | |||
| 7973 | CVE_STATUS[CVE-2024-26737] = "fixed-version: Fixed from version 6.8" | ||
| 7974 | |||
| 7975 | CVE_STATUS[CVE-2024-26738] = "fixed-version: Fixed from version 6.8" | ||
| 7976 | |||
| 7977 | CVE_STATUS[CVE-2024-26739] = "fixed-version: Fixed from version 6.8" | ||
| 7978 | |||
| 7979 | CVE_STATUS[CVE-2024-26740] = "fixed-version: Fixed from version 6.8" | ||
| 7980 | |||
| 7981 | CVE_STATUS[CVE-2024-26741] = "fixed-version: Fixed from version 6.8" | ||
| 7982 | |||
| 7983 | CVE_STATUS[CVE-2024-26742] = "fixed-version: Fixed from version 6.8" | ||
| 7984 | |||
| 7985 | CVE_STATUS[CVE-2024-26743] = "fixed-version: Fixed from version 6.8" | ||
| 7986 | |||
| 7987 | CVE_STATUS[CVE-2024-26744] = "fixed-version: Fixed from version 6.8" | ||
| 7988 | |||
| 7989 | CVE_STATUS[CVE-2024-26745] = "fixed-version: Fixed from version 6.8" | ||
| 7990 | |||
| 7991 | CVE_STATUS[CVE-2024-26746] = "fixed-version: Fixed from version 6.8" | ||
| 7992 | |||
| 7993 | CVE_STATUS[CVE-2024-26747] = "fixed-version: Fixed from version 6.8" | ||
| 7994 | |||
| 7995 | CVE_STATUS[CVE-2024-26748] = "fixed-version: Fixed from version 6.8" | ||
| 7996 | |||
| 7997 | CVE_STATUS[CVE-2024-26749] = "fixed-version: Fixed from version 6.8" | ||
| 7998 | |||
| 7999 | CVE_STATUS[CVE-2024-26750] = "fixed-version: Fixed from version 5.15.151" | ||
| 8000 | |||
| 8001 | CVE_STATUS[CVE-2024-26751] = "fixed-version: Fixed from version 6.8" | ||
| 8002 | |||
| 8003 | CVE_STATUS[CVE-2024-26752] = "fixed-version: Fixed from version 6.8" | ||
| 8004 | |||
| 8005 | CVE_STATUS[CVE-2024-26753] = "fixed-version: Fixed from version 6.8" | ||
| 8006 | |||
| 8007 | CVE_STATUS[CVE-2024-26754] = "fixed-version: Fixed from version 6.8" | ||
| 8008 | |||
| 8009 | CVE_STATUS[CVE-2024-26755] = "fixed-version: Fixed from version 6.8" | ||
| 8010 | |||
| 8011 | CVE_STATUS[CVE-2024-26756] = "fixed-version: Fixed from version 6.8" | ||
| 8012 | |||
| 8013 | CVE_STATUS[CVE-2024-26757] = "fixed-version: Fixed from version 6.8" | ||
| 8014 | |||
| 8015 | CVE_STATUS[CVE-2024-26758] = "fixed-version: Fixed from version 6.8" | ||
| 8016 | |||
| 8017 | CVE_STATUS[CVE-2024-26759] = "fixed-version: Fixed from version 6.8" | ||
| 8018 | |||
| 8019 | CVE_STATUS[CVE-2024-26760] = "fixed-version: Fixed from version 6.8" | ||
| 8020 | |||
| 8021 | CVE_STATUS[CVE-2024-26761] = "fixed-version: Fixed from version 6.8" | ||
| 8022 | |||
| 8023 | CVE_STATUS[CVE-2024-26762] = "fixed-version: Fixed from version 6.8" | ||
| 8024 | |||
| 8025 | CVE_STATUS[CVE-2024-26763] = "fixed-version: Fixed from version 6.8" | ||
| 8026 | |||
| 8027 | CVE_STATUS[CVE-2024-26764] = "fixed-version: Fixed from version 6.8" | ||
| 8028 | |||
| 8029 | CVE_STATUS[CVE-2024-26765] = "fixed-version: Fixed from version 6.8" | ||
| 8030 | |||
| 8031 | CVE_STATUS[CVE-2024-26766] = "fixed-version: Fixed from version 6.8" | ||
| 8032 | |||
| 8033 | CVE_STATUS[CVE-2024-26767] = "fixed-version: Fixed from version 6.8" | ||
| 8034 | |||
| 8035 | CVE_STATUS[CVE-2024-26768] = "fixed-version: Fixed from version 6.8" | ||
| 8036 | |||
| 8037 | CVE_STATUS[CVE-2024-26769] = "fixed-version: Fixed from version 6.8" | ||
| 8038 | |||
| 8039 | CVE_STATUS[CVE-2024-26770] = "fixed-version: Fixed from version 6.8" | ||
| 8040 | |||
| 8041 | CVE_STATUS[CVE-2024-26771] = "fixed-version: Fixed from version 6.8" | ||
| 8042 | |||
| 8043 | CVE_STATUS[CVE-2024-26772] = "fixed-version: Fixed from version 6.8" | ||
| 8044 | |||
| 8045 | CVE_STATUS[CVE-2024-26773] = "fixed-version: Fixed from version 6.8" | ||
| 8046 | |||
| 8047 | CVE_STATUS[CVE-2024-26774] = "fixed-version: Fixed from version 6.8" | ||
| 8048 | |||
| 8049 | CVE_STATUS[CVE-2024-26775] = "fixed-version: Fixed from version 6.8" | ||
| 8050 | |||
| 8051 | CVE_STATUS[CVE-2024-26776] = "fixed-version: Fixed from version 6.8" | ||
| 8052 | |||
| 8053 | CVE_STATUS[CVE-2024-26777] = "fixed-version: Fixed from version 6.8" | ||
| 8054 | |||
| 8055 | CVE_STATUS[CVE-2024-26778] = "fixed-version: Fixed from version 6.8" | ||
| 8056 | |||
| 8057 | CVE_STATUS[CVE-2024-26779] = "fixed-version: Fixed from version 6.8" | ||
| 8058 | |||
| 8059 | CVE_STATUS[CVE-2024-26780] = "fixed-version: Fixed from version 6.7.9" | ||
| 8060 | |||
| 8061 | CVE_STATUS[CVE-2024-26781] = "fixed-version: Fixed from version 6.7.9" | ||
| 8062 | |||
| 8063 | CVE_STATUS[CVE-2024-26782] = "fixed-version: Fixed from version 6.8" | ||
| 8064 | |||
| 8065 | CVE_STATUS[CVE-2024-26783] = "fixed-version: Fixed from version 6.8" | ||
| 8066 | |||
| 8067 | CVE_STATUS[CVE-2024-26784] = "fixed-version: Fixed from version 6.8" | ||
| 8068 | |||
| 8069 | CVE_STATUS[CVE-2024-26785] = "fixed-version: Fixed from version 6.8" | ||
| 8070 | |||
| 8071 | CVE_STATUS[CVE-2024-26786] = "fixed-version: Fixed from version 6.8" | ||
| 8072 | |||
| 8073 | CVE_STATUS[CVE-2024-26787] = "fixed-version: Fixed from version 6.8" | ||
| 8074 | |||
| 8075 | CVE_STATUS[CVE-2024-26788] = "fixed-version: Fixed from version 6.8" | ||
| 8076 | |||
| 8077 | CVE_STATUS[CVE-2024-26789] = "fixed-version: Fixed from version 6.8" | ||
| 8078 | |||
| 8079 | CVE_STATUS[CVE-2024-26790] = "fixed-version: Fixed from version 6.8" | ||
| 8080 | |||
| 8081 | CVE_STATUS[CVE-2024-26791] = "fixed-version: Fixed from version 6.8" | ||
| 8082 | |||
| 8083 | CVE_STATUS[CVE-2024-26792] = "fixed-version: Fixed from version 6.7.9" | ||
| 8084 | |||
| 8085 | CVE_STATUS[CVE-2024-26793] = "fixed-version: Fixed from version 6.8" | ||
| 8086 | |||
| 8087 | CVE_STATUS[CVE-2024-26795] = "fixed-version: Fixed from version 6.8" | ||
| 8088 | |||
| 8089 | CVE_STATUS[CVE-2024-26796] = "fixed-version: Fixed from version 6.8" | ||
| 8090 | |||
| 8091 | CVE_STATUS[CVE-2024-26797] = "fixed-version: Fixed from version 6.8" | ||
| 8092 | |||
| 8093 | CVE_STATUS[CVE-2024-26798] = "fixed-version: Fixed from version 6.8" | ||
| 8094 | |||
| 8095 | CVE_STATUS[CVE-2024-26799] = "fixed-version: Fixed from version 6.8" | ||
| 8096 | |||
| 8097 | CVE_STATUS[CVE-2024-26800] = "fixed-version: Fixed from version 6.7.9" | ||
| 8098 | |||
| 8099 | CVE_STATUS[CVE-2024-26801] = "fixed-version: Fixed from version 6.8" | ||
| 8100 | |||
| 8101 | CVE_STATUS[CVE-2024-26802] = "fixed-version: Fixed from version 6.8" | ||
| 8102 | |||
| 8103 | CVE_STATUS[CVE-2024-26803] = "fixed-version: Fixed from version 6.8" | ||
| 8104 | |||
| 8105 | CVE_STATUS[CVE-2024-26804] = "fixed-version: Fixed from version 6.8" | ||
| 8106 | |||
| 8107 | CVE_STATUS[CVE-2024-26805] = "fixed-version: Fixed from version 6.8" | ||
| 8108 | |||
| 8109 | CVE_STATUS[CVE-2024-26806] = "fixed-version: Fixed from version 6.8" | ||
| 8110 | |||
| 8111 | CVE_STATUS[CVE-2024-26807] = "fixed-version: Fixed from version 6.8" | ||
| 8112 | |||
| 8113 | CVE_STATUS[CVE-2024-26808] = "fixed-version: Fixed from version 6.8" | ||
| 8114 | |||
| 8115 | CVE_STATUS[CVE-2024-26809] = "fixed-version: Fixed from version 6.9" | ||
| 8116 | |||
| 8117 | CVE_STATUS[CVE-2024-26810] = "fixed-version: Fixed from version 6.9" | ||
| 8118 | |||
| 8119 | CVE_STATUS[CVE-2024-26811] = "fixed-version: Fixed from version 6.9" | ||
| 8120 | |||
| 8121 | CVE_STATUS[CVE-2024-26812] = "fixed-version: Fixed from version 6.9" | ||
| 8122 | |||
| 8123 | CVE_STATUS[CVE-2024-26813] = "fixed-version: Fixed from version 6.9" | ||
| 8124 | |||
| 8125 | CVE_STATUS[CVE-2024-26814] = "fixed-version: Fixed from version 6.9" | ||
| 8126 | |||
| 8127 | CVE_STATUS[CVE-2024-26815] = "fixed-version: Fixed from version 6.9" | ||
| 8128 | |||
| 8129 | CVE_STATUS[CVE-2024-26816] = "fixed-version: Fixed from version 6.9" | ||
| 8130 | |||
| 8131 | CVE_STATUS[CVE-2024-26817] = "fixed-version: Fixed from version 6.9" | ||
| 8132 | |||
| 8133 | CVE_STATUS[CVE-2024-26818] = "fixed-version: Fixed from version 6.8" | ||
| 8134 | |||
| 8135 | CVE_STATUS[CVE-2024-26820] = "fixed-version: Fixed from version 6.8" | ||
| 8136 | |||
| 8137 | CVE_STATUS[CVE-2024-26822] = "fixed-version: Fixed from version 6.8" | ||
| 8138 | |||
| 8139 | CVE_STATUS[CVE-2024-26823] = "fixed-version: Fixed from version 6.8" | ||
| 8140 | |||
| 8141 | CVE_STATUS[CVE-2024-26824] = "fixed-version: Fixed from version 6.8" | ||
| 8142 | |||
| 8143 | CVE_STATUS[CVE-2024-26825] = "fixed-version: Fixed from version 6.8" | ||
| 8144 | |||
| 8145 | CVE_STATUS[CVE-2024-26826] = "fixed-version: Fixed from version 6.8" | ||
| 8146 | |||
| 8147 | CVE_STATUS[CVE-2024-26828] = "fixed-version: Fixed from version 6.8" | ||
| 8148 | |||
| 8149 | CVE_STATUS[CVE-2024-26829] = "fixed-version: Fixed from version 6.8" | ||
| 8150 | |||
| 8151 | CVE_STATUS[CVE-2024-26830] = "fixed-version: Fixed from version 6.8" | ||
| 8152 | |||
| 8153 | CVE_STATUS[CVE-2024-26831] = "fixed-version: Fixed from version 6.8" | ||
| 8154 | |||
| 8155 | CVE_STATUS[CVE-2024-26832] = "fixed-version: Fixed from version 6.8" | ||
| 8156 | |||
| 8157 | CVE_STATUS[CVE-2024-26833] = "fixed-version: Fixed from version 6.8" | ||
| 8158 | |||
| 8159 | CVE_STATUS[CVE-2024-26834] = "fixed-version: Fixed from version 6.8" | ||
| 8160 | |||
| 8161 | CVE_STATUS[CVE-2024-26835] = "fixed-version: Fixed from version 6.8" | ||
| 8162 | |||
| 8163 | CVE_STATUS[CVE-2024-26836] = "fixed-version: Fixed from version 6.8" | ||
| 8164 | |||
| 8165 | CVE_STATUS[CVE-2024-26837] = "fixed-version: Fixed from version 6.8" | ||
| 8166 | |||
| 8167 | CVE_STATUS[CVE-2024-26838] = "fixed-version: Fixed from version 6.8" | ||
| 8168 | |||
| 8169 | CVE_STATUS[CVE-2024-26839] = "fixed-version: Fixed from version 6.8" | ||
| 8170 | |||
| 8171 | CVE_STATUS[CVE-2024-26840] = "fixed-version: Fixed from version 6.8" | ||
| 8172 | |||
| 8173 | CVE_STATUS[CVE-2024-26841] = "fixed-version: Fixed from version 6.8" | ||
| 8174 | |||
| 8175 | CVE_STATUS[CVE-2024-26842] = "fixed-version: Fixed from version 6.8" | ||
| 8176 | |||
| 8177 | CVE_STATUS[CVE-2024-26843] = "fixed-version: Fixed from version 6.8" | ||
| 8178 | |||
| 8179 | CVE_STATUS[CVE-2024-26844] = "fixed-version: Fixed from version 6.8" | ||
| 8180 | |||
| 8181 | CVE_STATUS[CVE-2024-26845] = "fixed-version: Fixed from version 6.8" | ||
| 8182 | |||
| 8183 | CVE_STATUS[CVE-2024-26846] = "fixed-version: Fixed from version 6.8" | ||
| 8184 | |||
| 8185 | CVE_STATUS[CVE-2024-26847] = "fixed-version: Fixed from version 6.8" | ||
| 8186 | |||
| 8187 | CVE_STATUS[CVE-2024-26849] = "fixed-version: Fixed from version 6.8" | ||
| 8188 | |||
| 8189 | CVE_STATUS[CVE-2024-26850] = "fixed-version: Fixed from version 6.8" | ||
| 8190 | |||
| 8191 | CVE_STATUS[CVE-2024-26851] = "fixed-version: Fixed from version 6.8" | ||
| 8192 | |||
| 8193 | CVE_STATUS[CVE-2024-26852] = "fixed-version: Fixed from version 6.8" | ||
| 8194 | |||
| 8195 | CVE_STATUS[CVE-2024-26853] = "fixed-version: Fixed from version 6.8" | ||
| 8196 | |||
| 8197 | CVE_STATUS[CVE-2024-26854] = "fixed-version: Fixed from version 6.8" | ||
| 8198 | |||
| 8199 | CVE_STATUS[CVE-2024-26855] = "fixed-version: Fixed from version 6.8" | ||
| 8200 | |||
| 8201 | CVE_STATUS[CVE-2024-26856] = "fixed-version: Fixed from version 6.8" | ||
| 8202 | |||
| 8203 | CVE_STATUS[CVE-2024-26857] = "fixed-version: Fixed from version 6.8" | ||
| 8204 | |||
| 8205 | CVE_STATUS[CVE-2024-26858] = "fixed-version: Fixed from version 6.8" | ||
| 8206 | |||
| 8207 | CVE_STATUS[CVE-2024-26859] = "fixed-version: Fixed from version 6.9" | ||
| 8208 | |||
| 8209 | CVE_STATUS[CVE-2024-26860] = "fixed-version: Fixed from version 6.9" | ||
| 8210 | |||
| 8211 | CVE_STATUS[CVE-2024-26861] = "fixed-version: Fixed from version 6.9" | ||
| 8212 | |||
| 8213 | CVE_STATUS[CVE-2024-26862] = "fixed-version: Fixed from version 6.9" | ||
| 8214 | |||
| 8215 | CVE_STATUS[CVE-2024-26863] = "fixed-version: Fixed from version 6.9" | ||
| 8216 | |||
| 8217 | CVE_STATUS[CVE-2024-26864] = "fixed-version: Fixed from version 6.9" | ||
| 8218 | |||
| 8219 | CVE_STATUS[CVE-2024-26865] = "fixed-version: Fixed from version 6.9" | ||
| 8220 | |||
| 8221 | CVE_STATUS[CVE-2024-26866] = "fixed-version: Fixed from version 6.9" | ||
| 8222 | |||
| 8223 | CVE_STATUS[CVE-2024-26867] = "fixed-version: Fixed from version 6.8" | ||
| 8224 | |||
| 8225 | CVE_STATUS[CVE-2024-26868] = "fixed-version: Fixed from version 6.9" | ||
| 8226 | |||
| 8227 | CVE_STATUS[CVE-2024-26869] = "fixed-version: Fixed from version 6.9" | ||
| 8228 | |||
| 8229 | CVE_STATUS[CVE-2024-26870] = "fixed-version: Fixed from version 6.9" | ||
| 8230 | |||
| 8231 | CVE_STATUS[CVE-2024-26871] = "fixed-version: Fixed from version 6.9" | ||
| 8232 | |||
| 8233 | CVE_STATUS[CVE-2024-26872] = "fixed-version: Fixed from version 6.9" | ||
| 8234 | |||
| 8235 | CVE_STATUS[CVE-2024-26873] = "fixed-version: Fixed from version 6.9" | ||
| 8236 | |||
| 8237 | CVE_STATUS[CVE-2024-26874] = "fixed-version: Fixed from version 6.9" | ||
| 8238 | |||
| 8239 | CVE_STATUS[CVE-2024-26875] = "fixed-version: Fixed from version 6.9" | ||
| 8240 | |||
| 8241 | CVE_STATUS[CVE-2024-26876] = "fixed-version: Fixed from version 6.9" | ||
| 8242 | |||
| 8243 | CVE_STATUS[CVE-2024-26877] = "fixed-version: Fixed from version 6.9" | ||
| 8244 | |||
| 8245 | CVE_STATUS[CVE-2024-26878] = "fixed-version: Fixed from version 6.9" | ||
| 8246 | |||
| 8247 | CVE_STATUS[CVE-2024-26879] = "fixed-version: Fixed from version 6.9" | ||
| 8248 | |||
| 8249 | CVE_STATUS[CVE-2024-26880] = "fixed-version: Fixed from version 6.9" | ||
| 8250 | |||
| 8251 | CVE_STATUS[CVE-2024-26881] = "fixed-version: Fixed from version 6.9" | ||
| 8252 | |||
| 8253 | CVE_STATUS[CVE-2024-26882] = "fixed-version: Fixed from version 6.9" | ||
| 8254 | |||
| 8255 | CVE_STATUS[CVE-2024-26883] = "fixed-version: Fixed from version 6.9" | ||
| 8256 | |||
| 8257 | CVE_STATUS[CVE-2024-26884] = "fixed-version: Fixed from version 6.9" | ||
| 8258 | |||
| 8259 | CVE_STATUS[CVE-2024-26885] = "fixed-version: Fixed from version 6.9" | ||
| 8260 | |||
| 8261 | CVE_STATUS[CVE-2024-26886] = "fixed-version: Fixed from version 6.9" | ||
| 8262 | |||
| 8263 | CVE_STATUS[CVE-2024-26887] = "fixed-version: Fixed from version 6.9" | ||
| 8264 | |||
| 8265 | CVE_STATUS[CVE-2024-26888] = "fixed-version: Fixed from version 6.9" | ||
| 8266 | |||
| 8267 | CVE_STATUS[CVE-2024-26889] = "fixed-version: Fixed from version 6.9" | ||
| 8268 | |||
| 8269 | CVE_STATUS[CVE-2024-26890] = "fixed-version: Fixed from version 6.9" | ||
| 8270 | |||
| 8271 | CVE_STATUS[CVE-2024-26891] = "fixed-version: Fixed from version 6.9" | ||
| 8272 | |||
| 8273 | CVE_STATUS[CVE-2024-26892] = "fixed-version: Fixed from version 6.9" | ||
| 8274 | |||
| 8275 | CVE_STATUS[CVE-2024-26893] = "fixed-version: Fixed from version 6.9" | ||
| 8276 | |||
| 8277 | CVE_STATUS[CVE-2024-26894] = "fixed-version: Fixed from version 6.9" | ||
| 8278 | |||
| 8279 | CVE_STATUS[CVE-2024-26895] = "fixed-version: Fixed from version 6.9" | ||
| 8280 | |||
| 8281 | CVE_STATUS[CVE-2024-26896] = "fixed-version: Fixed from version 6.9" | ||
| 8282 | |||
| 8283 | CVE_STATUS[CVE-2024-26897] = "fixed-version: Fixed from version 6.9" | ||
| 8284 | |||
| 8285 | CVE_STATUS[CVE-2024-26898] = "fixed-version: Fixed from version 6.9" | ||
| 8286 | |||
| 8287 | CVE_STATUS[CVE-2024-26899] = "fixed-version: Fixed from version 6.9" | ||
| 8288 | |||
| 8289 | CVE_STATUS[CVE-2024-26900] = "fixed-version: Fixed from version 6.9" | ||
| 8290 | |||
| 8291 | CVE_STATUS[CVE-2024-26901] = "fixed-version: Fixed from version 6.9" | ||
| 8292 | |||
| 8293 | CVE_STATUS[CVE-2024-26902] = "fixed-version: Fixed from version 6.8" | ||
| 8294 | |||
| 8295 | CVE_STATUS[CVE-2024-26903] = "fixed-version: Fixed from version 6.8" | ||
| 8296 | |||
| 8297 | CVE_STATUS[CVE-2024-26906] = "fixed-version: Fixed from version 6.8" | ||
| 8298 | |||
| 8299 | CVE_STATUS[CVE-2024-26907] = "fixed-version: Fixed from version 6.8" | ||
| 8300 | |||
| 8301 | CVE_STATUS[CVE-2024-26909] = "fixed-version: Fixed from version 6.8" | ||
| 8302 | |||
| 8303 | CVE_STATUS[CVE-2024-26910] = "fixed-version: Fixed from version 6.8" | ||
| 8304 | |||
| 8305 | CVE_STATUS[CVE-2024-26911] = "fixed-version: Fixed from version 6.8" | ||
| 8306 | |||
| 8307 | CVE_STATUS[CVE-2024-26912] = "fixed-version: Fixed from version 6.8" | ||
| 8308 | |||
| 8309 | CVE_STATUS[CVE-2024-26913] = "fixed-version: Fixed from version 6.8" | ||
| 8310 | |||
| 8311 | CVE_STATUS[CVE-2024-26914] = "fixed-version: Fixed from version 6.8" | ||
| 8312 | |||
| 8313 | CVE_STATUS[CVE-2024-26915] = "fixed-version: Fixed from version 6.8" | ||
| 8314 | |||
| 8315 | CVE_STATUS[CVE-2024-26916] = "fixed-version: Fixed from version 6.8" | ||
| 8316 | |||
| 8317 | CVE_STATUS[CVE-2024-26917] = "fixed-version: Fixed from version 6.8" | ||
| 8318 | |||
| 8319 | CVE_STATUS[CVE-2024-26918] = "fixed-version: Fixed from version 6.8" | ||
| 8320 | |||
| 8321 | CVE_STATUS[CVE-2024-26919] = "fixed-version: Fixed from version 6.8" | ||
| 8322 | |||
| 8323 | CVE_STATUS[CVE-2024-26920] = "fixed-version: Fixed from version 6.8" | ||
| 8324 | |||
| 8325 | CVE_STATUS[CVE-2024-26921] = "fixed-version: Fixed from version 6.9" | ||
| 8326 | |||
| 8327 | CVE_STATUS[CVE-2024-26922] = "fixed-version: Fixed from version 6.9" | ||
| 8328 | |||
| 8329 | CVE_STATUS[CVE-2024-26923] = "fixed-version: Fixed from version 6.9" | ||
| 8330 | |||
| 8331 | CVE_STATUS[CVE-2024-26924] = "fixed-version: Fixed from version 6.9" | ||
| 8332 | |||
| 8333 | CVE_STATUS[CVE-2024-26925] = "fixed-version: Fixed from version 6.9" | ||
| 8334 | |||
| 8335 | CVE_STATUS[CVE-2024-26926] = "fixed-version: Fixed from version 6.9" | ||
| 8336 | |||
| 8337 | CVE_STATUS[CVE-2024-26927] = "fixed-version: Fixed from version 6.9" | ||
| 8338 | |||
| 8339 | CVE_STATUS[CVE-2024-26928] = "fixed-version: Fixed from version 6.9" | ||
| 8340 | |||
| 8341 | CVE_STATUS[CVE-2024-26930] = "fixed-version: Fixed from version 6.9" | ||
| 8342 | |||
| 8343 | CVE_STATUS[CVE-2024-26931] = "fixed-version: Fixed from version 6.9" | ||
| 8344 | |||
| 8345 | CVE_STATUS[CVE-2024-26932] = "fixed-version: Fixed from version 6.9" | ||
| 8346 | |||
| 8347 | CVE_STATUS[CVE-2024-26933] = "fixed-version: Fixed from version 6.9" | ||
| 8348 | |||
| 8349 | CVE_STATUS[CVE-2024-26934] = "fixed-version: Fixed from version 6.9" | ||
| 8350 | |||
| 8351 | CVE_STATUS[CVE-2024-26935] = "fixed-version: Fixed from version 6.9" | ||
| 8352 | |||
| 8353 | CVE_STATUS[CVE-2024-26936] = "fixed-version: Fixed from version 6.9" | ||
| 8354 | |||
| 8355 | CVE_STATUS[CVE-2024-26937] = "fixed-version: Fixed from version 6.9" | ||
| 8356 | |||
| 8357 | CVE_STATUS[CVE-2024-26938] = "fixed-version: Fixed from version 6.9" | ||
| 8358 | |||
| 8359 | CVE_STATUS[CVE-2024-26939] = "fixed-version: Fixed from version 6.9" | ||
| 8360 | |||
| 8361 | CVE_STATUS[CVE-2024-26940] = "fixed-version: Fixed from version 6.9" | ||
| 8362 | |||
| 8363 | CVE_STATUS[CVE-2024-26941] = "fixed-version: Fixed from version 6.9" | ||
| 8364 | |||
| 8365 | CVE_STATUS[CVE-2024-26942] = "fixed-version: Fixed from version 6.9" | ||
| 8366 | |||
| 8367 | CVE_STATUS[CVE-2024-26943] = "fixed-version: Fixed from version 6.9" | ||
| 8368 | |||
| 8369 | CVE_STATUS[CVE-2024-26944] = "fixed-version: Fixed from version 6.9" | ||
| 8370 | |||
| 8371 | CVE_STATUS[CVE-2024-26945] = "fixed-version: Fixed from version 6.9" | ||
| 8372 | |||
| 8373 | CVE_STATUS[CVE-2024-26946] = "fixed-version: Fixed from version 6.9" | ||
| 8374 | |||
| 8375 | CVE_STATUS[CVE-2024-26947] = "fixed-version: Fixed from version 6.9" | ||
| 8376 | |||
| 8377 | CVE_STATUS[CVE-2024-26948] = "fixed-version: Fixed from version 6.9" | ||
| 8378 | |||
| 8379 | CVE_STATUS[CVE-2024-26949] = "fixed-version: Fixed from version 6.9" | ||
| 8380 | |||
| 8381 | CVE_STATUS[CVE-2024-26950] = "fixed-version: Fixed from version 6.9" | ||
| 8382 | |||
| 8383 | CVE_STATUS[CVE-2024-26951] = "fixed-version: Fixed from version 6.9" | ||
| 8384 | |||
| 8385 | CVE_STATUS[CVE-2024-26952] = "fixed-version: Fixed from version 6.9" | ||
| 8386 | |||
| 8387 | CVE_STATUS[CVE-2024-26953] = "fixed-version: Fixed from version 6.9" | ||
| 8388 | |||
| 8389 | CVE_STATUS[CVE-2024-26954] = "fixed-version: Fixed from version 6.9" | ||
| 8390 | |||
| 8391 | CVE_STATUS[CVE-2024-26955] = "fixed-version: Fixed from version 6.9" | ||
| 8392 | |||
| 8393 | CVE_STATUS[CVE-2024-26956] = "fixed-version: Fixed from version 6.9" | ||
| 8394 | |||
| 8395 | CVE_STATUS[CVE-2024-26957] = "fixed-version: Fixed from version 6.9" | ||
| 8396 | |||
| 8397 | CVE_STATUS[CVE-2024-26958] = "fixed-version: Fixed from version 6.9" | ||
| 8398 | |||
| 8399 | CVE_STATUS[CVE-2024-26959] = "fixed-version: Fixed from version 6.9" | ||
| 8400 | |||
| 8401 | CVE_STATUS[CVE-2024-26960] = "fixed-version: Fixed from version 6.9" | ||
| 8402 | |||
| 8403 | CVE_STATUS[CVE-2024-26961] = "fixed-version: Fixed from version 6.9" | ||
| 8404 | |||
| 8405 | CVE_STATUS[CVE-2024-26962] = "fixed-version: Fixed from version 6.9" | ||
| 8406 | |||
| 8407 | CVE_STATUS[CVE-2024-26963] = "fixed-version: Fixed from version 6.9" | ||
| 8408 | |||
| 8409 | CVE_STATUS[CVE-2024-26964] = "fixed-version: Fixed from version 6.9" | ||
| 8410 | |||
| 8411 | CVE_STATUS[CVE-2024-26965] = "fixed-version: Fixed from version 6.9" | ||
| 8412 | |||
| 8413 | CVE_STATUS[CVE-2024-26966] = "fixed-version: Fixed from version 6.9" | ||
| 8414 | |||
| 8415 | CVE_STATUS[CVE-2024-26967] = "fixed-version: Fixed from version 6.9" | ||
| 8416 | |||
| 8417 | CVE_STATUS[CVE-2024-26968] = "fixed-version: Fixed from version 6.9" | ||
| 8418 | |||
| 8419 | CVE_STATUS[CVE-2024-26969] = "fixed-version: Fixed from version 6.9" | ||
| 8420 | |||
| 8421 | CVE_STATUS[CVE-2024-26970] = "fixed-version: Fixed from version 6.9" | ||
| 8422 | |||
| 8423 | CVE_STATUS[CVE-2024-26971] = "fixed-version: Fixed from version 6.9" | ||
| 8424 | |||
| 8425 | CVE_STATUS[CVE-2024-26973] = "fixed-version: Fixed from version 6.9" | ||
| 8426 | |||
| 8427 | CVE_STATUS[CVE-2024-26974] = "fixed-version: Fixed from version 6.9" | ||
| 8428 | |||
| 8429 | CVE_STATUS[CVE-2024-26975] = "fixed-version: Fixed from version 6.9" | ||
| 8430 | |||
| 8431 | CVE_STATUS[CVE-2024-26976] = "fixed-version: Fixed from version 6.9" | ||
| 8432 | |||
| 8433 | CVE_STATUS[CVE-2024-26977] = "fixed-version: Fixed from version 6.9" | ||
| 8434 | |||
| 8435 | CVE_STATUS[CVE-2024-26978] = "fixed-version: Fixed from version 6.9" | ||
| 8436 | |||
| 8437 | CVE_STATUS[CVE-2024-26980] = "fixed-version: Fixed from version 6.9" | ||
| 8438 | |||
| 8439 | CVE_STATUS[CVE-2024-26981] = "fixed-version: Fixed from version 6.9" | ||
| 8440 | |||
| 8441 | CVE_STATUS[CVE-2024-26982] = "fixed-version: Fixed from version 6.9" | ||
| 8442 | |||
| 8443 | CVE_STATUS[CVE-2024-26983] = "fixed-version: Fixed from version 6.9" | ||
| 8444 | |||
| 8445 | CVE_STATUS[CVE-2024-26984] = "fixed-version: Fixed from version 6.9" | ||
| 8446 | |||
| 8447 | CVE_STATUS[CVE-2024-26985] = "fixed-version: Fixed from version 6.9" | ||
| 8448 | |||
| 8449 | CVE_STATUS[CVE-2024-26986] = "fixed-version: Fixed from version 6.9" | ||
| 8450 | |||
| 8451 | CVE_STATUS[CVE-2024-26987] = "fixed-version: Fixed from version 6.9" | ||
| 8452 | |||
| 8453 | CVE_STATUS[CVE-2024-26988] = "fixed-version: Fixed from version 6.9" | ||
| 8454 | |||
| 8455 | CVE_STATUS[CVE-2024-26989] = "fixed-version: Fixed from version 6.9" | ||
| 8456 | |||
| 8457 | CVE_STATUS[CVE-2024-26990] = "fixed-version: Fixed from version 6.9" | ||
| 8458 | |||
| 8459 | CVE_STATUS[CVE-2024-26991] = "fixed-version: Fixed from version 6.9" | ||
| 8460 | |||
| 8461 | CVE_STATUS[CVE-2024-26992] = "fixed-version: Fixed from version 6.9" | ||
| 8462 | |||
| 8463 | CVE_STATUS[CVE-2024-26993] = "fixed-version: Fixed from version 6.9" | ||
| 8464 | |||
| 8465 | CVE_STATUS[CVE-2024-26994] = "fixed-version: Fixed from version 6.9" | ||
| 8466 | |||
| 8467 | CVE_STATUS[CVE-2024-26995] = "fixed-version: Fixed from version 6.9" | ||
| 8468 | |||
| 8469 | CVE_STATUS[CVE-2024-26996] = "fixed-version: Fixed from version 6.9" | ||
| 8470 | |||
| 8471 | CVE_STATUS[CVE-2024-26997] = "fixed-version: Fixed from version 6.8.8" | ||
| 8472 | |||
| 8473 | CVE_STATUS[CVE-2024-26998] = "fixed-version: Fixed from version 6.9" | ||
| 8474 | |||
| 8475 | CVE_STATUS[CVE-2024-26999] = "fixed-version: Fixed from version 6.9" | ||
| 8476 | |||
| 8477 | CVE_STATUS[CVE-2024-27000] = "fixed-version: Fixed from version 6.9" | ||
| 8478 | |||
| 8479 | CVE_STATUS[CVE-2024-27001] = "fixed-version: Fixed from version 6.9" | ||
| 8480 | |||
| 8481 | CVE_STATUS[CVE-2024-27002] = "fixed-version: Fixed from version 6.9" | ||
| 8482 | |||
| 8483 | CVE_STATUS[CVE-2024-27003] = "fixed-version: Fixed from version 6.9" | ||
| 8484 | |||
| 8485 | CVE_STATUS[CVE-2024-27004] = "fixed-version: Fixed from version 6.9" | ||
| 8486 | |||
| 8487 | CVE_STATUS[CVE-2024-27005] = "fixed-version: Fixed from version 6.9" | ||
| 8488 | |||
| 8489 | CVE_STATUS[CVE-2024-27006] = "fixed-version: Fixed from version 6.9" | ||
| 8490 | |||
| 8491 | CVE_STATUS[CVE-2024-27007] = "fixed-version: Fixed from version 6.9" | ||
| 8492 | |||
| 8493 | CVE_STATUS[CVE-2024-27008] = "fixed-version: Fixed from version 6.9" | ||
| 8494 | |||
| 8495 | CVE_STATUS[CVE-2024-27009] = "fixed-version: Fixed from version 6.9" | ||
| 8496 | |||
| 8497 | CVE_STATUS[CVE-2024-27010] = "fixed-version: Fixed from version 6.9" | ||
| 8498 | |||
| 8499 | CVE_STATUS[CVE-2024-27011] = "fixed-version: Fixed from version 6.9" | ||
| 8500 | |||
| 8501 | CVE_STATUS[CVE-2024-27012] = "fixed-version: Fixed from version 6.9" | ||
| 8502 | |||
| 8503 | CVE_STATUS[CVE-2024-27013] = "fixed-version: Fixed from version 6.9" | ||
| 8504 | |||
| 8505 | CVE_STATUS[CVE-2024-27014] = "fixed-version: Fixed from version 6.9" | ||
| 8506 | |||
| 8507 | CVE_STATUS[CVE-2024-27015] = "fixed-version: Fixed from version 6.9" | ||
| 8508 | |||
| 8509 | CVE_STATUS[CVE-2024-27016] = "fixed-version: Fixed from version 6.9" | ||
| 8510 | |||
| 8511 | CVE_STATUS[CVE-2024-27017] = "fixed-version: Fixed from version 6.9" | ||
| 8512 | |||
| 8513 | CVE_STATUS[CVE-2024-27018] = "fixed-version: Fixed from version 6.9" | ||
| 8514 | |||
| 8515 | CVE_STATUS[CVE-2024-27019] = "fixed-version: Fixed from version 6.9" | ||
| 8516 | |||
| 8517 | CVE_STATUS[CVE-2024-27020] = "fixed-version: Fixed from version 6.9" | ||
| 8518 | |||
| 8519 | CVE_STATUS[CVE-2024-27021] = "fixed-version: Fixed from version 6.9" | ||
| 8520 | |||
| 8521 | CVE_STATUS[CVE-2024-27022] = "fixed-version: Fixed from version 6.9" | ||
| 8522 | |||
| 8523 | CVE_STATUS[CVE-2024-27023] = "fixed-version: Fixed from version 6.7.7" | ||
| 8524 | |||
| 8525 | CVE_STATUS[CVE-2024-27024] = "fixed-version: Fixed from version 6.8" | ||
| 8526 | |||
| 8527 | CVE_STATUS[CVE-2024-27025] = "fixed-version: Fixed from version 6.9" | ||
| 8528 | |||
| 8529 | CVE_STATUS[CVE-2024-27026] = "fixed-version: Fixed from version 6.9" | ||
| 8530 | |||
| 8531 | CVE_STATUS[CVE-2024-27027] = "fixed-version: Fixed from version 6.9" | ||
| 8532 | |||
| 8533 | CVE_STATUS[CVE-2024-27028] = "fixed-version: Fixed from version 6.9" | ||
| 8534 | |||
| 8535 | CVE_STATUS[CVE-2024-27029] = "fixed-version: Fixed from version 6.9" | ||
| 8536 | |||
| 8537 | CVE_STATUS[CVE-2024-27030] = "fixed-version: Fixed from version 6.9" | ||
| 8538 | |||
| 8539 | CVE_STATUS[CVE-2024-27031] = "fixed-version: Fixed from version 6.9" | ||
| 8540 | |||
| 8541 | CVE_STATUS[CVE-2024-27032] = "fixed-version: Fixed from version 6.9" | ||
| 8542 | |||
| 8543 | CVE_STATUS[CVE-2024-27033] = "fixed-version: Fixed from version 6.9" | ||
| 8544 | |||
| 8545 | CVE_STATUS[CVE-2024-27034] = "fixed-version: Fixed from version 6.9" | ||
| 8546 | |||
| 8547 | CVE_STATUS[CVE-2024-27035] = "fixed-version: Fixed from version 6.9" | ||
| 8548 | |||
| 8549 | CVE_STATUS[CVE-2024-27036] = "fixed-version: Fixed from version 6.9" | ||
| 8550 | |||
| 8551 | CVE_STATUS[CVE-2024-27037] = "fixed-version: Fixed from version 6.9" | ||
| 8552 | |||
| 8553 | CVE_STATUS[CVE-2024-27038] = "fixed-version: Fixed from version 6.9" | ||
| 8554 | |||
| 8555 | CVE_STATUS[CVE-2024-27039] = "fixed-version: Fixed from version 6.9" | ||
| 8556 | |||
| 8557 | CVE_STATUS[CVE-2024-27040] = "fixed-version: Fixed from version 6.9" | ||
| 8558 | |||
| 8559 | CVE_STATUS[CVE-2024-27041] = "fixed-version: Fixed from version 6.9" | ||
| 8560 | |||
| 8561 | CVE_STATUS[CVE-2024-27042] = "fixed-version: Fixed from version 6.9" | ||
| 8562 | |||
| 8563 | CVE_STATUS[CVE-2024-27043] = "fixed-version: Fixed from version 6.9" | ||
| 8564 | |||
| 8565 | CVE_STATUS[CVE-2024-27044] = "fixed-version: Fixed from version 6.9" | ||
| 8566 | |||
| 8567 | CVE_STATUS[CVE-2024-27045] = "fixed-version: Fixed from version 6.9" | ||
| 8568 | |||
| 8569 | CVE_STATUS[CVE-2024-27046] = "fixed-version: Fixed from version 6.9" | ||
| 8570 | |||
| 8571 | CVE_STATUS[CVE-2024-27047] = "fixed-version: Fixed from version 6.9" | ||
| 8572 | |||
| 8573 | CVE_STATUS[CVE-2024-27048] = "fixed-version: Fixed from version 6.9" | ||
| 8574 | |||
| 8575 | CVE_STATUS[CVE-2024-27049] = "fixed-version: Fixed from version 6.9" | ||
| 8576 | |||
| 8577 | CVE_STATUS[CVE-2024-27050] = "fixed-version: Fixed from version 6.9" | ||
| 8578 | |||
| 8579 | CVE_STATUS[CVE-2024-27051] = "fixed-version: Fixed from version 6.9" | ||
| 8580 | |||
| 8581 | CVE_STATUS[CVE-2024-27052] = "fixed-version: Fixed from version 6.9" | ||
| 8582 | |||
| 8583 | CVE_STATUS[CVE-2024-27053] = "fixed-version: Fixed from version 6.9" | ||
| 8584 | |||
| 8585 | CVE_STATUS[CVE-2024-27054] = "fixed-version: Fixed from version 6.9" | ||
| 8586 | |||
| 8587 | CVE_STATUS[CVE-2024-27056] = "fixed-version: Fixed from version 6.8" | ||
| 8588 | |||
| 8589 | CVE_STATUS[CVE-2024-27057] = "fixed-version: Fixed from version 6.8" | ||
| 8590 | |||
| 8591 | CVE_STATUS[CVE-2024-27058] = "fixed-version: Fixed from version 6.9" | ||
| 8592 | |||
| 8593 | CVE_STATUS[CVE-2024-27059] = "fixed-version: Fixed from version 6.8" | ||
| 8594 | |||
| 8595 | CVE_STATUS[CVE-2024-27060] = "fixed-version: Fixed from version 6.8" | ||
| 8596 | |||
| 8597 | CVE_STATUS[CVE-2024-27061] = "fixed-version: Fixed from version 6.8" | ||
| 8598 | |||
| 8599 | CVE_STATUS[CVE-2024-27062] = "fixed-version: Fixed from version 6.8" | ||
| 8600 | |||
| 8601 | CVE_STATUS[CVE-2024-27063] = "fixed-version: Fixed from version 6.9" | ||
| 8602 | |||
| 8603 | CVE_STATUS[CVE-2024-27064] = "fixed-version: Fixed from version 6.9" | ||
| 8604 | |||
| 8605 | CVE_STATUS[CVE-2024-27065] = "fixed-version: Fixed from version 6.9" | ||
| 8606 | |||
| 8607 | CVE_STATUS[CVE-2024-27066] = "fixed-version: Fixed from version 6.9" | ||
| 8608 | |||
| 8609 | CVE_STATUS[CVE-2024-27067] = "fixed-version: Fixed from version 6.9" | ||
| 8610 | |||
| 8611 | CVE_STATUS[CVE-2024-27068] = "fixed-version: Fixed from version 6.9" | ||
| 8612 | |||
| 8613 | CVE_STATUS[CVE-2024-27069] = "fixed-version: Fixed from version 6.9" | ||
| 8614 | |||
| 8615 | CVE_STATUS[CVE-2024-27070] = "fixed-version: Fixed from version 6.9" | ||
| 8616 | |||
| 8617 | CVE_STATUS[CVE-2024-27071] = "fixed-version: Fixed from version 6.9" | ||
| 8618 | |||
| 8619 | CVE_STATUS[CVE-2024-27072] = "fixed-version: Fixed from version 6.9" | ||
| 8620 | |||
| 8621 | CVE_STATUS[CVE-2024-27073] = "fixed-version: Fixed from version 6.9" | ||
| 8622 | |||
| 8623 | CVE_STATUS[CVE-2024-27074] = "fixed-version: Fixed from version 6.9" | ||
| 8624 | |||
| 8625 | CVE_STATUS[CVE-2024-27075] = "fixed-version: Fixed from version 6.9" | ||
| 8626 | |||
| 8627 | CVE_STATUS[CVE-2024-27076] = "fixed-version: Fixed from version 6.9" | ||
| 8628 | |||
| 8629 | CVE_STATUS[CVE-2024-27077] = "fixed-version: Fixed from version 6.9" | ||
| 8630 | |||
| 8631 | CVE_STATUS[CVE-2024-27078] = "fixed-version: Fixed from version 6.9" | ||
| 8632 | |||
| 8633 | CVE_STATUS[CVE-2024-27079] = "fixed-version: Fixed from version 6.9" | ||
| 8634 | |||
| 8635 | CVE_STATUS[CVE-2024-27080] = "fixed-version: Fixed from version 6.9" | ||
| 8636 | |||
| 8637 | CVE_STATUS[CVE-2024-27388] = "fixed-version: Fixed from version 6.9" | ||
| 8638 | |||
| 8639 | CVE_STATUS[CVE-2024-27389] = "fixed-version: Fixed from version 6.9" | ||
| 8640 | |||
| 8641 | CVE_STATUS[CVE-2024-27390] = "fixed-version: Fixed from version 6.9" | ||
| 8642 | |||
| 8643 | CVE_STATUS[CVE-2024-27391] = "fixed-version: Fixed from version 6.9" | ||
| 8644 | |||
| 8645 | CVE_STATUS[CVE-2024-27392] = "fixed-version: Fixed from version 6.9" | ||
| 8646 | |||
| 8647 | CVE_STATUS[CVE-2024-27393] = "fixed-version: Fixed from version 6.9" | ||
| 8648 | |||
| 8649 | CVE_STATUS[CVE-2024-27394] = "fixed-version: Fixed from version 6.9" | ||
| 8650 | |||
| 8651 | CVE_STATUS[CVE-2024-27395] = "fixed-version: Fixed from version 6.9" | ||
| 8652 | |||
| 8653 | CVE_STATUS[CVE-2024-27396] = "fixed-version: Fixed from version 6.9" | ||
| 8654 | |||
| 8655 | CVE_STATUS[CVE-2024-27397] = "fixed-version: Fixed from version 6.8" | ||
| 8656 | |||
| 8657 | CVE_STATUS[CVE-2024-27398] = "fixed-version: Fixed from version 6.9" | ||
| 8658 | |||
| 8659 | CVE_STATUS[CVE-2024-27399] = "fixed-version: Fixed from version 6.9" | ||
| 8660 | |||
| 8661 | CVE_STATUS[CVE-2024-27400] = "fixed-version: Fixed from version 6.9" | ||
| 8662 | |||
| 8663 | CVE_STATUS[CVE-2024-27401] = "fixed-version: Fixed from version 6.9" | ||
| 8664 | |||
| 8665 | CVE_STATUS[CVE-2024-27402] = "fixed-version: Fixed from version 6.8" | ||
| 8666 | |||
| 8667 | CVE_STATUS[CVE-2024-27403] = "fixed-version: Fixed from version 6.8" | ||
| 8668 | |||
| 8669 | CVE_STATUS[CVE-2024-27404] = "fixed-version: Fixed from version 6.8" | ||
| 8670 | |||
| 8671 | CVE_STATUS[CVE-2024-27405] = "fixed-version: Fixed from version 6.8" | ||
| 8672 | |||
| 8673 | CVE_STATUS[CVE-2024-27406] = "fixed-version: Fixed from version 6.8" | ||
| 8674 | |||
| 8675 | CVE_STATUS[CVE-2024-27407] = "fixed-version: Fixed from version 6.8" | ||
| 8676 | |||
| 8677 | CVE_STATUS[CVE-2024-27408] = "fixed-version: Fixed from version 6.8" | ||
| 8678 | |||
| 8679 | CVE_STATUS[CVE-2024-27409] = "fixed-version: Fixed from version 6.8" | ||
| 8680 | |||
| 8681 | CVE_STATUS[CVE-2024-27410] = "fixed-version: Fixed from version 6.8" | ||
| 8682 | |||
| 8683 | CVE_STATUS[CVE-2024-27411] = "fixed-version: Fixed from version 6.7.9" | ||
| 8684 | |||
| 8685 | CVE_STATUS[CVE-2024-27412] = "fixed-version: Fixed from version 6.8" | ||
| 8686 | |||
| 8687 | CVE_STATUS[CVE-2024-27413] = "fixed-version: Fixed from version 6.8" | ||
| 8688 | |||
| 8689 | CVE_STATUS[CVE-2024-27414] = "fixed-version: Fixed from version 6.8" | ||
| 8690 | |||
| 8691 | CVE_STATUS[CVE-2024-27415] = "fixed-version: Fixed from version 6.8" | ||
| 8692 | |||
| 8693 | CVE_STATUS[CVE-2024-27416] = "fixed-version: Fixed from version 6.8" | ||
| 8694 | |||
| 8695 | CVE_STATUS[CVE-2024-27417] = "fixed-version: Fixed from version 6.8" | ||
| 8696 | |||
| 8697 | CVE_STATUS[CVE-2024-27418] = "fixed-version: Fixed from version 6.8" | ||
| 8698 | |||
| 8699 | CVE_STATUS[CVE-2024-27419] = "fixed-version: Fixed from version 6.8" | ||
| 8700 | |||
| 8701 | CVE_STATUS[CVE-2024-27431] = "fixed-version: Fixed from version 6.8" | ||
| 8702 | |||
| 8703 | CVE_STATUS[CVE-2024-27432] = "fixed-version: Fixed from version 6.9" | ||
| 8704 | |||
| 8705 | CVE_STATUS[CVE-2024-27433] = "fixed-version: Fixed from version 6.9" | ||
| 8706 | |||
| 8707 | CVE_STATUS[CVE-2024-27434] = "fixed-version: Fixed from version 6.9" | ||
| 8708 | |||
| 8709 | CVE_STATUS[CVE-2024-27435] = "fixed-version: Fixed from version 6.9" | ||
| 8710 | |||
| 8711 | CVE_STATUS[CVE-2024-27436] = "fixed-version: Fixed from version 6.9" | ||
| 8712 | |||
| 8713 | CVE_STATUS[CVE-2024-27437] = "fixed-version: Fixed from version 6.9" | ||
| 8714 | |||
| 8715 | CVE_STATUS[CVE-2024-31076] = "fixed-version: Fixed from version 6.10" | ||
| 8716 | |||
| 8717 | CVE_STATUS[CVE-2024-32936] = "fixed-version: Fixed from version 6.10" | ||
| 8718 | |||
| 8719 | CVE_STATUS[CVE-2024-33619] = "fixed-version: Fixed from version 6.10" | ||
| 8720 | |||
| 8721 | CVE_STATUS[CVE-2024-33621] = "fixed-version: Fixed from version 6.10" | ||
| 8722 | |||
| 8723 | CVE_STATUS[CVE-2024-33847] = "fixed-version: Fixed from version 6.10" | ||
| 8724 | |||
| 8725 | CVE_STATUS[CVE-2024-34027] = "fixed-version: Fixed from version 6.10" | ||
| 8726 | |||
| 8727 | CVE_STATUS[CVE-2024-34030] = "fixed-version: Fixed from version 6.10" | ||
| 8728 | |||
| 8729 | CVE_STATUS[CVE-2024-34777] = "fixed-version: Fixed from version 6.10" | ||
| 8730 | |||
| 8731 | CVE_STATUS[CVE-2024-35247] = "fixed-version: Fixed from version 6.10" | ||
| 8732 | |||
| 8733 | CVE_STATUS[CVE-2024-35784] = "fixed-version: Fixed from version 6.8" | ||
| 8734 | |||
| 8735 | CVE_STATUS[CVE-2024-35785] = "fixed-version: Fixed from version 6.8" | ||
| 8736 | |||
| 8737 | CVE_STATUS[CVE-2024-35786] = "fixed-version: Fixed from version 6.8" | ||
| 8738 | |||
| 8739 | CVE_STATUS[CVE-2024-35787] = "fixed-version: Fixed from version 6.9" | ||
| 8740 | |||
| 8741 | CVE_STATUS[CVE-2024-35789] = "fixed-version: Fixed from version 6.9" | ||
| 8742 | |||
| 8743 | CVE_STATUS[CVE-2024-35790] = "fixed-version: Fixed from version 6.8" | ||
| 8744 | |||
| 8745 | CVE_STATUS[CVE-2024-35791] = "fixed-version: Fixed from version 6.8" | ||
| 8746 | |||
| 8747 | CVE_STATUS[CVE-2024-35792] = "fixed-version: Fixed from version 6.8" | ||
| 8748 | |||
| 8749 | CVE_STATUS[CVE-2024-35793] = "fixed-version: Fixed from version 6.9" | ||
| 8750 | |||
| 8751 | CVE_STATUS[CVE-2024-35794] = "fixed-version: Fixed from version 6.9" | ||
| 8752 | |||
| 8753 | CVE_STATUS[CVE-2024-35795] = "fixed-version: Fixed from version 6.9" | ||
| 8754 | |||
| 8755 | CVE_STATUS[CVE-2024-35796] = "fixed-version: Fixed from version 6.9" | ||
| 8756 | |||
| 8757 | CVE_STATUS[CVE-2024-35797] = "fixed-version: Fixed from version 6.9" | ||
| 8758 | |||
| 8759 | CVE_STATUS[CVE-2024-35798] = "fixed-version: Fixed from version 6.9" | ||
| 8760 | |||
| 8761 | CVE_STATUS[CVE-2024-35799] = "fixed-version: Fixed from version 6.9" | ||
| 8762 | |||
| 8763 | CVE_STATUS[CVE-2024-35800] = "fixed-version: Fixed from version 6.9" | ||
| 8764 | |||
| 8765 | CVE_STATUS[CVE-2024-35801] = "fixed-version: Fixed from version 6.9" | ||
| 8766 | |||
| 8767 | CVE_STATUS[CVE-2024-35803] = "fixed-version: Fixed from version 6.9" | ||
| 8768 | |||
| 8769 | CVE_STATUS[CVE-2024-35804] = "fixed-version: Fixed from version 6.8" | ||
| 8770 | |||
| 8771 | CVE_STATUS[CVE-2024-35805] = "fixed-version: Fixed from version 6.9" | ||
| 8772 | |||
| 8773 | CVE_STATUS[CVE-2024-35806] = "fixed-version: Fixed from version 6.9" | ||
| 8774 | |||
| 8775 | CVE_STATUS[CVE-2024-35807] = "fixed-version: Fixed from version 6.9" | ||
| 8776 | |||
| 8777 | CVE_STATUS[CVE-2024-35808] = "fixed-version: Fixed from version 6.9" | ||
| 8778 | |||
| 8779 | CVE_STATUS[CVE-2024-35809] = "fixed-version: Fixed from version 6.9" | ||
| 8780 | |||
| 8781 | CVE_STATUS[CVE-2024-35810] = "fixed-version: Fixed from version 6.9" | ||
| 8782 | |||
| 8783 | CVE_STATUS[CVE-2024-35811] = "fixed-version: Fixed from version 6.9" | ||
| 8784 | |||
| 8785 | CVE_STATUS[CVE-2024-35813] = "fixed-version: Fixed from version 6.9" | ||
| 8786 | |||
| 8787 | CVE_STATUS[CVE-2024-35814] = "fixed-version: Fixed from version 6.9" | ||
| 8788 | |||
| 8789 | CVE_STATUS[CVE-2024-35815] = "fixed-version: Fixed from version 6.7.12" | ||
| 8790 | |||
| 8791 | CVE_STATUS[CVE-2024-35816] = "fixed-version: Fixed from version 6.8" | ||
| 8792 | |||
| 8793 | CVE_STATUS[CVE-2024-35817] = "fixed-version: Fixed from version 6.9" | ||
| 8794 | |||
| 8795 | CVE_STATUS[CVE-2024-35818] = "fixed-version: Fixed from version 6.9" | ||
| 8796 | |||
| 8797 | CVE_STATUS[CVE-2024-35819] = "fixed-version: Fixed from version 6.9" | ||
| 8798 | |||
| 8799 | CVE_STATUS[CVE-2024-35821] = "fixed-version: Fixed from version 6.9" | ||
| 8800 | |||
| 8801 | CVE_STATUS[CVE-2024-35822] = "fixed-version: Fixed from version 6.9" | ||
| 8802 | |||
| 8803 | CVE_STATUS[CVE-2024-35823] = "fixed-version: Fixed from version 6.8" | ||
| 8804 | |||
| 8805 | CVE_STATUS[CVE-2024-35824] = "fixed-version: Fixed from version 6.7.12" | ||
| 8806 | |||
| 8807 | CVE_STATUS[CVE-2024-35825] = "fixed-version: Fixed from version 6.8" | ||
| 8808 | |||
| 8809 | CVE_STATUS[CVE-2024-35826] = "fixed-version: Fixed from version 6.9" | ||
| 8810 | |||
| 8811 | CVE_STATUS[CVE-2024-35827] = "fixed-version: Fixed from version 6.9" | ||
| 8812 | |||
| 8813 | CVE_STATUS[CVE-2024-35828] = "fixed-version: Fixed from version 6.9" | ||
| 8814 | |||
| 8815 | CVE_STATUS[CVE-2024-35829] = "fixed-version: Fixed from version 6.9" | ||
| 8816 | |||
| 8817 | CVE_STATUS[CVE-2024-35830] = "fixed-version: Fixed from version 6.9" | ||
| 8818 | |||
| 8819 | CVE_STATUS[CVE-2024-35831] = "fixed-version: Fixed from version 6.9" | ||
| 8820 | |||
| 8821 | CVE_STATUS[CVE-2024-35832] = "fixed-version: Fixed from version 6.8" | ||
| 8822 | |||
| 8823 | CVE_STATUS[CVE-2024-35833] = "fixed-version: Fixed from version 6.8" | ||
| 8824 | |||
| 8825 | CVE_STATUS[CVE-2024-35834] = "fixed-version: Fixed from version 6.8" | ||
| 8826 | |||
| 8827 | CVE_STATUS[CVE-2024-35835] = "fixed-version: Fixed from version 6.8" | ||
| 8828 | |||
| 8829 | CVE_STATUS[CVE-2024-35836] = "fixed-version: Fixed from version 6.8" | ||
| 8830 | |||
| 8831 | CVE_STATUS[CVE-2024-35837] = "fixed-version: Fixed from version 6.8" | ||
| 8832 | |||
| 8833 | CVE_STATUS[CVE-2024-35838] = "fixed-version: Fixed from version 6.8" | ||
| 8834 | |||
| 8835 | CVE_STATUS[CVE-2024-35839] = "fixed-version: Fixed from version 6.8" | ||
| 8836 | |||
| 8837 | CVE_STATUS[CVE-2024-35840] = "fixed-version: Fixed from version 6.8" | ||
| 8838 | |||
| 8839 | CVE_STATUS[CVE-2024-35841] = "fixed-version: Fixed from version 6.8" | ||
| 8840 | |||
| 8841 | CVE_STATUS[CVE-2024-35842] = "fixed-version: Fixed from version 6.8" | ||
| 8842 | |||
| 8843 | CVE_STATUS[CVE-2024-35843] = "fixed-version: Fixed from version 6.9" | ||
| 8844 | |||
| 8845 | CVE_STATUS[CVE-2024-35844] = "fixed-version: Fixed from version 6.9" | ||
| 8846 | |||
| 8847 | CVE_STATUS[CVE-2024-35845] = "fixed-version: Fixed from version 6.9" | ||
| 8848 | |||
| 8849 | CVE_STATUS[CVE-2024-35846] = "fixed-version: Fixed from version 6.9" | ||
| 8850 | |||
| 8851 | CVE_STATUS[CVE-2024-35847] = "fixed-version: Fixed from version 6.9" | ||
| 8852 | |||
| 8853 | CVE_STATUS[CVE-2024-35848] = "fixed-version: Fixed from version 6.9" | ||
| 8854 | |||
| 8855 | CVE_STATUS[CVE-2024-35849] = "fixed-version: Fixed from version 6.9" | ||
| 8856 | |||
| 8857 | CVE_STATUS[CVE-2024-35850] = "fixed-version: Fixed from version 6.9" | ||
| 8858 | |||
| 8859 | CVE_STATUS[CVE-2024-35851] = "fixed-version: Fixed from version 6.9" | ||
| 8860 | |||
| 8861 | CVE_STATUS[CVE-2024-35852] = "fixed-version: Fixed from version 6.9" | ||
| 8862 | |||
| 8863 | CVE_STATUS[CVE-2024-35853] = "fixed-version: Fixed from version 6.9" | ||
| 8864 | |||
| 8865 | CVE_STATUS[CVE-2024-35854] = "fixed-version: Fixed from version 6.9" | ||
| 8866 | |||
| 8867 | CVE_STATUS[CVE-2024-35855] = "fixed-version: Fixed from version 6.9" | ||
| 8868 | |||
| 8869 | CVE_STATUS[CVE-2024-35856] = "fixed-version: Fixed from version 6.9" | ||
| 8870 | |||
| 8871 | CVE_STATUS[CVE-2024-35857] = "fixed-version: Fixed from version 6.9" | ||
| 8872 | |||
| 8873 | CVE_STATUS[CVE-2024-35858] = "fixed-version: Fixed from version 6.9" | ||
| 8874 | |||
| 8875 | CVE_STATUS[CVE-2024-35859] = "fixed-version: Fixed from version 6.9" | ||
| 8876 | |||
| 8877 | CVE_STATUS[CVE-2024-35860] = "fixed-version: Fixed from version 6.9" | ||
| 8878 | |||
| 8879 | CVE_STATUS[CVE-2024-35861] = "fixed-version: Fixed from version 6.9" | ||
| 8880 | |||
| 8881 | CVE_STATUS[CVE-2024-35862] = "fixed-version: Fixed from version 6.9" | ||
| 8882 | |||
| 8883 | CVE_STATUS[CVE-2024-35863] = "fixed-version: Fixed from version 6.9" | ||
| 8884 | |||
| 8885 | CVE_STATUS[CVE-2024-35864] = "fixed-version: Fixed from version 6.9" | ||
| 8886 | |||
| 8887 | CVE_STATUS[CVE-2024-35865] = "fixed-version: Fixed from version 6.9" | ||
| 8888 | |||
| 8889 | CVE_STATUS[CVE-2024-35866] = "fixed-version: Fixed from version 6.9" | ||
| 8890 | |||
| 8891 | CVE_STATUS[CVE-2024-35867] = "fixed-version: Fixed from version 6.9" | ||
| 8892 | |||
| 8893 | CVE_STATUS[CVE-2024-35868] = "fixed-version: Fixed from version 6.9" | ||
| 8894 | |||
| 8895 | CVE_STATUS[CVE-2024-35869] = "fixed-version: Fixed from version 6.9" | ||
| 8896 | |||
| 8897 | CVE_STATUS[CVE-2024-35870] = "fixed-version: Fixed from version 6.9" | ||
| 8898 | |||
| 8899 | CVE_STATUS[CVE-2024-35871] = "fixed-version: Fixed from version 6.9" | ||
| 8900 | |||
| 8901 | CVE_STATUS[CVE-2024-35872] = "fixed-version: Fixed from version 6.9" | ||
| 8902 | |||
| 8903 | CVE_STATUS[CVE-2024-35873] = "fixed-version: Fixed from version 6.9" | ||
| 8904 | |||
| 8905 | CVE_STATUS[CVE-2024-35874] = "fixed-version: Fixed from version 6.9" | ||
| 8906 | |||
| 8907 | CVE_STATUS[CVE-2024-35875] = "fixed-version: Fixed from version 6.9" | ||
| 8908 | |||
| 8909 | CVE_STATUS[CVE-2024-35877] = "fixed-version: Fixed from version 6.9" | ||
| 8910 | |||
| 8911 | CVE_STATUS[CVE-2024-35878] = "fixed-version: Fixed from version 6.9" | ||
| 8912 | |||
| 8913 | CVE_STATUS[CVE-2024-35879] = "fixed-version: Fixed from version 6.9" | ||
| 8914 | |||
| 8915 | CVE_STATUS[CVE-2024-35880] = "fixed-version: Fixed from version 6.9" | ||
| 8916 | |||
| 8917 | CVE_STATUS[CVE-2024-35882] = "fixed-version: Fixed from version 6.9" | ||
| 8918 | |||
| 8919 | CVE_STATUS[CVE-2024-35883] = "fixed-version: Fixed from version 6.9" | ||
| 8920 | |||
| 8921 | CVE_STATUS[CVE-2024-35884] = "fixed-version: Fixed from version 6.9" | ||
| 8922 | |||
| 8923 | CVE_STATUS[CVE-2024-35885] = "fixed-version: Fixed from version 6.9" | ||
| 8924 | |||
| 8925 | CVE_STATUS[CVE-2024-35886] = "fixed-version: Fixed from version 6.9" | ||
| 8926 | |||
| 8927 | CVE_STATUS[CVE-2024-35887] = "fixed-version: Fixed from version 6.9" | ||
| 8928 | |||
| 8929 | CVE_STATUS[CVE-2024-35888] = "fixed-version: Fixed from version 6.9" | ||
| 8930 | |||
| 8931 | CVE_STATUS[CVE-2024-35889] = "fixed-version: Fixed from version 6.9" | ||
| 8932 | |||
| 8933 | CVE_STATUS[CVE-2024-35890] = "fixed-version: Fixed from version 6.9" | ||
| 8934 | |||
| 8935 | CVE_STATUS[CVE-2024-35891] = "fixed-version: Fixed from version 6.9" | ||
| 8936 | |||
| 8937 | CVE_STATUS[CVE-2024-35892] = "fixed-version: Fixed from version 6.9" | ||
| 8938 | |||
| 8939 | CVE_STATUS[CVE-2024-35893] = "fixed-version: Fixed from version 6.9" | ||
| 8940 | |||
| 8941 | CVE_STATUS[CVE-2024-35894] = "fixed-version: Fixed from version 6.9" | ||
| 8942 | |||
| 8943 | CVE_STATUS[CVE-2024-35895] = "fixed-version: Fixed from version 6.9" | ||
| 8944 | |||
| 8945 | CVE_STATUS[CVE-2024-35896] = "fixed-version: Fixed from version 6.9" | ||
| 8946 | |||
| 8947 | CVE_STATUS[CVE-2024-35897] = "fixed-version: Fixed from version 6.9" | ||
| 8948 | |||
| 8949 | CVE_STATUS[CVE-2024-35898] = "fixed-version: Fixed from version 6.9" | ||
| 8950 | |||
| 8951 | CVE_STATUS[CVE-2024-35899] = "fixed-version: Fixed from version 6.9" | ||
| 8952 | |||
| 8953 | CVE_STATUS[CVE-2024-35900] = "fixed-version: Fixed from version 6.9" | ||
| 8954 | |||
| 8955 | CVE_STATUS[CVE-2024-35901] = "fixed-version: Fixed from version 6.9" | ||
| 8956 | |||
| 8957 | CVE_STATUS[CVE-2024-35902] = "fixed-version: Fixed from version 6.9" | ||
| 8958 | |||
| 8959 | CVE_STATUS[CVE-2024-35903] = "fixed-version: Fixed from version 6.9" | ||
| 8960 | |||
| 8961 | CVE_STATUS[CVE-2024-35904] = "fixed-version: Fixed from version 6.9" | ||
| 8962 | |||
| 8963 | CVE_STATUS[CVE-2024-35905] = "fixed-version: Fixed from version 6.9" | ||
| 8964 | |||
| 8965 | CVE_STATUS[CVE-2024-35907] = "fixed-version: Fixed from version 6.9" | ||
| 8966 | |||
| 8967 | CVE_STATUS[CVE-2024-35908] = "fixed-version: Fixed from version 6.9" | ||
| 8968 | |||
| 8969 | CVE_STATUS[CVE-2024-35909] = "fixed-version: Fixed from version 6.9" | ||
| 8970 | |||
| 8971 | CVE_STATUS[CVE-2024-35910] = "fixed-version: Fixed from version 6.9" | ||
| 8972 | |||
| 8973 | CVE_STATUS[CVE-2024-35911] = "fixed-version: Fixed from version 6.9" | ||
| 8974 | |||
| 8975 | CVE_STATUS[CVE-2024-35912] = "fixed-version: Fixed from version 6.9" | ||
| 8976 | |||
| 8977 | CVE_STATUS[CVE-2024-35913] = "fixed-version: Fixed from version 6.9" | ||
| 8978 | |||
| 8979 | CVE_STATUS[CVE-2024-35914] = "fixed-version: Fixed from version 6.9" | ||
| 8980 | |||
| 8981 | CVE_STATUS[CVE-2024-35915] = "fixed-version: Fixed from version 6.9" | ||
| 8982 | |||
| 8983 | CVE_STATUS[CVE-2024-35916] = "fixed-version: Fixed from version 6.9" | ||
| 8984 | |||
| 8985 | CVE_STATUS[CVE-2024-35917] = "fixed-version: Fixed from version 6.9" | ||
| 8986 | |||
| 8987 | CVE_STATUS[CVE-2024-35919] = "fixed-version: Fixed from version 6.9" | ||
| 8988 | |||
| 8989 | CVE_STATUS[CVE-2024-35920] = "fixed-version: Fixed from version 6.9" | ||
| 8990 | |||
| 8991 | CVE_STATUS[CVE-2024-35921] = "fixed-version: Fixed from version 6.9" | ||
| 8992 | |||
| 8993 | CVE_STATUS[CVE-2024-35922] = "fixed-version: Fixed from version 6.9" | ||
| 8994 | |||
| 8995 | CVE_STATUS[CVE-2024-35924] = "fixed-version: Fixed from version 6.9" | ||
| 8996 | |||
| 8997 | CVE_STATUS[CVE-2024-35925] = "fixed-version: Fixed from version 6.9" | ||
| 8998 | |||
| 8999 | CVE_STATUS[CVE-2024-35926] = "fixed-version: Fixed from version 6.9" | ||
| 9000 | |||
| 9001 | CVE_STATUS[CVE-2024-35927] = "fixed-version: Fixed from version 6.9" | ||
| 9002 | |||
| 9003 | CVE_STATUS[CVE-2024-35929] = "fixed-version: Fixed from version 6.9" | ||
| 9004 | |||
| 9005 | CVE_STATUS[CVE-2024-35930] = "fixed-version: Fixed from version 6.9" | ||
| 9006 | |||
| 9007 | CVE_STATUS[CVE-2024-35931] = "fixed-version: Fixed from version 6.9" | ||
| 9008 | |||
| 9009 | CVE_STATUS[CVE-2024-35932] = "fixed-version: Fixed from version 6.9" | ||
| 9010 | |||
| 9011 | CVE_STATUS[CVE-2024-35933] = "fixed-version: Fixed from version 6.9" | ||
| 9012 | |||
| 9013 | CVE_STATUS[CVE-2024-35934] = "fixed-version: Fixed from version 6.9" | ||
| 9014 | |||
| 9015 | CVE_STATUS[CVE-2024-35935] = "fixed-version: Fixed from version 6.9" | ||
| 9016 | |||
| 9017 | CVE_STATUS[CVE-2024-35936] = "fixed-version: Fixed from version 6.9" | ||
| 9018 | |||
| 9019 | CVE_STATUS[CVE-2024-35937] = "fixed-version: Fixed from version 6.9" | ||
| 9020 | |||
| 9021 | CVE_STATUS[CVE-2024-35938] = "fixed-version: Fixed from version 6.9" | ||
| 9022 | |||
| 9023 | CVE_STATUS[CVE-2024-35939] = "fixed-version: Fixed from version 6.9" | ||
| 9024 | |||
| 9025 | CVE_STATUS[CVE-2024-35940] = "fixed-version: Fixed from version 6.9" | ||
| 9026 | |||
| 9027 | CVE_STATUS[CVE-2024-35942] = "fixed-version: Fixed from version 6.9" | ||
| 9028 | |||
| 9029 | CVE_STATUS[CVE-2024-35943] = "fixed-version: Fixed from version 6.9" | ||
| 9030 | |||
| 9031 | CVE_STATUS[CVE-2024-35944] = "fixed-version: Fixed from version 6.9" | ||
| 9032 | |||
| 9033 | CVE_STATUS[CVE-2024-35945] = "fixed-version: Fixed from version 6.9" | ||
| 9034 | |||
| 9035 | CVE_STATUS[CVE-2024-35946] = "fixed-version: Fixed from version 6.9" | ||
| 9036 | |||
| 9037 | CVE_STATUS[CVE-2024-35947] = "fixed-version: Fixed from version 6.9" | ||
| 9038 | |||
| 9039 | CVE_STATUS[CVE-2024-35948] = "fixed-version: Fixed from version 6.9" | ||
| 9040 | |||
| 9041 | CVE_STATUS[CVE-2024-35949] = "fixed-version: Fixed from version 6.9" | ||
| 9042 | |||
| 9043 | CVE_STATUS[CVE-2024-35950] = "fixed-version: Fixed from version 6.9" | ||
| 9044 | |||
| 9045 | CVE_STATUS[CVE-2024-35951] = "fixed-version: Fixed from version 6.9" | ||
| 9046 | |||
| 9047 | CVE_STATUS[CVE-2024-35952] = "fixed-version: Fixed from version 6.9" | ||
| 9048 | |||
| 9049 | CVE_STATUS[CVE-2024-35953] = "fixed-version: Fixed from version 6.9" | ||
| 9050 | |||
| 9051 | CVE_STATUS[CVE-2024-35954] = "fixed-version: Fixed from version 6.9" | ||
| 9052 | |||
| 9053 | CVE_STATUS[CVE-2024-35955] = "fixed-version: Fixed from version 6.9" | ||
| 9054 | |||
| 9055 | CVE_STATUS[CVE-2024-35956] = "fixed-version: Fixed from version 6.9" | ||
| 9056 | |||
| 9057 | CVE_STATUS[CVE-2024-35957] = "fixed-version: Fixed from version 6.8.7" | ||
| 9058 | |||
| 9059 | CVE_STATUS[CVE-2024-35958] = "fixed-version: Fixed from version 6.9" | ||
| 9060 | |||
| 9061 | CVE_STATUS[CVE-2024-35959] = "fixed-version: Fixed from version 6.9" | ||
| 9062 | |||
| 9063 | CVE_STATUS[CVE-2024-35960] = "fixed-version: Fixed from version 6.9" | ||
| 9064 | |||
| 9065 | CVE_STATUS[CVE-2024-35961] = "fixed-version: Fixed from version 6.9" | ||
| 9066 | |||
| 9067 | CVE_STATUS[CVE-2024-35962] = "fixed-version: Fixed from version 6.8.7" | ||
| 9068 | |||
| 9069 | CVE_STATUS[CVE-2024-35963] = "fixed-version: Fixed from version 6.9" | ||
| 9070 | |||
| 9071 | CVE_STATUS[CVE-2024-35964] = "fixed-version: Fixed from version 6.9" | ||
| 9072 | |||
| 9073 | CVE_STATUS[CVE-2024-35965] = "fixed-version: Fixed from version 6.9" | ||
| 9074 | |||
| 9075 | CVE_STATUS[CVE-2024-35966] = "fixed-version: Fixed from version 6.9" | ||
| 9076 | |||
| 9077 | CVE_STATUS[CVE-2024-35967] = "fixed-version: Fixed from version 6.9" | ||
| 9078 | |||
| 9079 | CVE_STATUS[CVE-2024-35968] = "fixed-version: Fixed from version 6.9" | ||
| 9080 | |||
| 9081 | CVE_STATUS[CVE-2024-35969] = "fixed-version: Fixed from version 6.9" | ||
| 9082 | |||
| 9083 | CVE_STATUS[CVE-2024-35970] = "fixed-version: Fixed from version 6.9" | ||
| 9084 | |||
| 9085 | CVE_STATUS[CVE-2024-35971] = "fixed-version: Fixed from version 6.9" | ||
| 9086 | |||
| 9087 | CVE_STATUS[CVE-2024-35972] = "fixed-version: Fixed from version 6.9" | ||
| 9088 | |||
| 9089 | CVE_STATUS[CVE-2024-35973] = "fixed-version: Fixed from version 6.9" | ||
| 9090 | |||
| 9091 | CVE_STATUS[CVE-2024-35974] = "fixed-version: Fixed from version 6.9" | ||
| 9092 | |||
| 9093 | CVE_STATUS[CVE-2024-35975] = "fixed-version: Fixed from version 6.9" | ||
| 9094 | |||
| 9095 | CVE_STATUS[CVE-2024-35976] = "fixed-version: Fixed from version 6.9" | ||
| 9096 | |||
| 9097 | CVE_STATUS[CVE-2024-35977] = "fixed-version: Fixed from version 6.9" | ||
| 9098 | |||
| 9099 | CVE_STATUS[CVE-2024-35978] = "fixed-version: Fixed from version 6.9" | ||
| 9100 | |||
| 9101 | CVE_STATUS[CVE-2024-35979] = "fixed-version: Fixed from version 6.9" | ||
| 9102 | |||
| 9103 | CVE_STATUS[CVE-2024-35980] = "fixed-version: Fixed from version 6.9" | ||
| 9104 | |||
| 9105 | CVE_STATUS[CVE-2024-35981] = "fixed-version: Fixed from version 6.9" | ||
| 9106 | |||
| 9107 | CVE_STATUS[CVE-2024-35982] = "fixed-version: Fixed from version 6.9" | ||
| 9108 | |||
| 9109 | CVE_STATUS[CVE-2024-35983] = "fixed-version: Fixed from version 6.8.9" | ||
| 9110 | |||
| 9111 | CVE_STATUS[CVE-2024-35984] = "fixed-version: Fixed from version 6.9" | ||
| 9112 | |||
| 9113 | CVE_STATUS[CVE-2024-35985] = "fixed-version: Fixed from version 6.9" | ||
| 9114 | |||
| 9115 | CVE_STATUS[CVE-2024-35986] = "fixed-version: Fixed from version 6.9" | ||
| 9116 | |||
| 9117 | CVE_STATUS[CVE-2024-35987] = "fixed-version: Fixed from version 6.9" | ||
| 9118 | |||
| 9119 | CVE_STATUS[CVE-2024-35988] = "fixed-version: Fixed from version 6.9" | ||
| 9120 | |||
| 9121 | CVE_STATUS[CVE-2024-35989] = "fixed-version: Fixed from version 6.9" | ||
| 9122 | |||
| 9123 | CVE_STATUS[CVE-2024-35990] = "fixed-version: Fixed from version 6.9" | ||
| 9124 | |||
| 9125 | CVE_STATUS[CVE-2024-35991] = "fixed-version: Fixed from version 6.9" | ||
| 9126 | |||
| 9127 | CVE_STATUS[CVE-2024-35992] = "fixed-version: Fixed from version 6.9" | ||
| 9128 | |||
| 9129 | CVE_STATUS[CVE-2024-35993] = "fixed-version: Fixed from version 6.9" | ||
| 9130 | |||
| 9131 | CVE_STATUS[CVE-2024-35994] = "fixed-version: Fixed from version 6.9" | ||
| 9132 | |||
| 9133 | CVE_STATUS[CVE-2024-35995] = "fixed-version: Fixed from version 6.9" | ||
| 9134 | |||
| 9135 | CVE_STATUS[CVE-2024-35996] = "fixed-version: Fixed from version 6.8.9" | ||
| 9136 | |||
| 9137 | CVE_STATUS[CVE-2024-35997] = "fixed-version: Fixed from version 6.9" | ||
| 9138 | |||
| 9139 | CVE_STATUS[CVE-2024-35998] = "fixed-version: Fixed from version 6.9" | ||
| 9140 | |||
| 9141 | CVE_STATUS[CVE-2024-35999] = "fixed-version: Fixed from version 6.9" | ||
| 9142 | |||
| 9143 | CVE_STATUS[CVE-2024-36000] = "fixed-version: Fixed from version 6.9" | ||
| 9144 | |||
| 9145 | CVE_STATUS[CVE-2024-36001] = "fixed-version: Fixed from version 6.9" | ||
| 9146 | |||
| 9147 | CVE_STATUS[CVE-2024-36002] = "fixed-version: Fixed from version 6.8.9" | ||
| 9148 | |||
| 9149 | CVE_STATUS[CVE-2024-36003] = "fixed-version: Fixed from version 6.9" | ||
| 9150 | |||
| 9151 | CVE_STATUS[CVE-2024-36004] = "fixed-version: Fixed from version 6.9" | ||
| 9152 | |||
| 9153 | CVE_STATUS[CVE-2024-36005] = "fixed-version: Fixed from version 6.9" | ||
| 9154 | |||
| 9155 | CVE_STATUS[CVE-2024-36006] = "fixed-version: Fixed from version 6.9" | ||
| 9156 | |||
| 9157 | CVE_STATUS[CVE-2024-36007] = "fixed-version: Fixed from version 6.9" | ||
| 9158 | |||
| 9159 | CVE_STATUS[CVE-2024-36008] = "fixed-version: Fixed from version 6.9" | ||
| 9160 | |||
| 9161 | CVE_STATUS[CVE-2024-36009] = "fixed-version: Fixed from version 6.9" | ||
| 9162 | |||
| 9163 | CVE_STATUS[CVE-2024-36010] = "fixed-version: Fixed from version 6.8" | ||
| 9164 | |||
| 9165 | CVE_STATUS[CVE-2024-36011] = "fixed-version: Fixed from version 6.9" | ||
| 9166 | |||
| 9167 | CVE_STATUS[CVE-2024-36012] = "fixed-version: Fixed from version 6.9" | ||
| 9168 | |||
| 9169 | CVE_STATUS[CVE-2024-36013] = "fixed-version: Fixed from version 6.9" | ||
| 9170 | |||
| 9171 | CVE_STATUS[CVE-2024-36014] = "fixed-version: Fixed from version 6.10" | ||
| 9172 | |||
| 9173 | CVE_STATUS[CVE-2024-36015] = "fixed-version: Fixed from version 6.10" | ||
| 9174 | |||
| 9175 | CVE_STATUS[CVE-2024-36016] = "fixed-version: Fixed from version 6.10" | ||
| 9176 | |||
| 9177 | CVE_STATUS[CVE-2024-36017] = "fixed-version: Fixed from version 6.9" | ||
| 9178 | |||
| 9179 | CVE_STATUS[CVE-2024-36018] = "fixed-version: Fixed from version 6.9" | ||
| 9180 | |||
| 9181 | CVE_STATUS[CVE-2024-36019] = "fixed-version: Fixed from version 6.9" | ||
| 9182 | |||
| 9183 | CVE_STATUS[CVE-2024-36020] = "fixed-version: Fixed from version 6.9" | ||
| 9184 | |||
| 9185 | CVE_STATUS[CVE-2024-36021] = "fixed-version: Fixed from version 6.9" | ||
| 9186 | |||
| 9187 | CVE_STATUS[CVE-2024-36023] = "fixed-version: Fixed from version 6.9" | ||
| 9188 | |||
| 9189 | CVE_STATUS[CVE-2024-36024] = "fixed-version: Fixed from version 6.9" | ||
| 9190 | |||
| 9191 | CVE_STATUS[CVE-2024-36025] = "fixed-version: Fixed from version 6.9" | ||
| 9192 | |||
| 9193 | CVE_STATUS[CVE-2024-36026] = "fixed-version: Fixed from version 6.9" | ||
| 9194 | |||
| 9195 | CVE_STATUS[CVE-2024-36027] = "fixed-version: Fixed from version 6.9" | ||
| 9196 | |||
| 9197 | CVE_STATUS[CVE-2024-36028] = "fixed-version: Fixed from version 6.9" | ||
| 9198 | |||
| 9199 | CVE_STATUS[CVE-2024-36029] = "fixed-version: Fixed from version 6.9" | ||
| 9200 | |||
| 9201 | CVE_STATUS[CVE-2024-36030] = "fixed-version: Fixed from version 6.9" | ||
| 9202 | |||
| 9203 | CVE_STATUS[CVE-2024-36031] = "fixed-version: Fixed from version 6.10" | ||
| 9204 | |||
| 9205 | CVE_STATUS[CVE-2024-36032] = "fixed-version: Fixed from version 6.9" | ||
| 9206 | |||
| 9207 | CVE_STATUS[CVE-2024-36033] = "fixed-version: Fixed from version 6.9" | ||
| 9208 | |||
| 9209 | CVE_STATUS[CVE-2024-36244] = "fixed-version: Fixed from version 6.10" | ||
| 9210 | |||
| 9211 | CVE_STATUS[CVE-2024-36270] = "fixed-version: Fixed from version 6.10" | ||
| 9212 | |||
| 9213 | CVE_STATUS[CVE-2024-36281] = "fixed-version: Fixed from version 6.10" | ||
| 9214 | |||
| 9215 | CVE_STATUS[CVE-2024-36286] = "fixed-version: Fixed from version 6.10" | ||
| 9216 | |||
| 9217 | CVE_STATUS[CVE-2024-36288] = "fixed-version: Fixed from version 6.9.4" | ||
| 9218 | |||
| 9219 | CVE_STATUS[CVE-2024-36476] = "fixed-version: Fixed from version 6.13" | ||
| 9220 | |||
| 9221 | CVE_STATUS[CVE-2024-36477] = "fixed-version: Fixed from version 6.10" | ||
| 9222 | |||
| 9223 | CVE_STATUS[CVE-2024-36478] = "fixed-version: Fixed from version 6.10" | ||
| 9224 | |||
| 9225 | CVE_STATUS[CVE-2024-36479] = "fixed-version: Fixed from version 6.10" | ||
| 9226 | |||
| 9227 | CVE_STATUS[CVE-2024-36481] = "fixed-version: Fixed from version 6.10" | ||
| 9228 | |||
| 9229 | CVE_STATUS[CVE-2024-36484] = "fixed-version: Fixed from version 6.10" | ||
| 9230 | |||
| 9231 | CVE_STATUS[CVE-2024-36489] = "fixed-version: Fixed from version 6.10" | ||
| 9232 | |||
| 9233 | CVE_STATUS[CVE-2024-36880] = "fixed-version: Fixed from version 6.9" | ||
| 9234 | |||
| 9235 | CVE_STATUS[CVE-2024-36881] = "fixed-version: Fixed from version 6.9" | ||
| 9236 | |||
| 9237 | CVE_STATUS[CVE-2024-36882] = "fixed-version: Fixed from version 6.9" | ||
| 9238 | |||
| 9239 | CVE_STATUS[CVE-2024-36883] = "fixed-version: Fixed from version 6.9" | ||
| 9240 | |||
| 9241 | CVE_STATUS[CVE-2024-36884] = "fixed-version: Fixed from version 6.9" | ||
| 9242 | |||
| 9243 | CVE_STATUS[CVE-2024-36886] = "fixed-version: Fixed from version 6.9" | ||
| 9244 | |||
| 9245 | CVE_STATUS[CVE-2024-36887] = "fixed-version: Fixed from version 6.8.10" | ||
| 9246 | |||
| 9247 | CVE_STATUS[CVE-2024-36888] = "fixed-version: Fixed from version 6.9" | ||
| 9248 | |||
| 9249 | CVE_STATUS[CVE-2024-36889] = "fixed-version: Fixed from version 6.9" | ||
| 9250 | |||
| 9251 | CVE_STATUS[CVE-2024-36890] = "fixed-version: Fixed from version 6.9" | ||
| 9252 | |||
| 9253 | CVE_STATUS[CVE-2024-36891] = "fixed-version: Fixed from version 6.9" | ||
| 9254 | |||
| 9255 | CVE_STATUS[CVE-2024-36892] = "fixed-version: Fixed from version 6.9" | ||
| 9256 | |||
| 9257 | CVE_STATUS[CVE-2024-36893] = "fixed-version: Fixed from version 6.9" | ||
| 9258 | |||
| 9259 | CVE_STATUS[CVE-2024-36894] = "fixed-version: Fixed from version 6.9" | ||
| 9260 | |||
| 9261 | CVE_STATUS[CVE-2024-36895] = "fixed-version: Fixed from version 6.9" | ||
| 9262 | |||
| 9263 | CVE_STATUS[CVE-2024-36896] = "fixed-version: Fixed from version 6.9" | ||
| 9264 | |||
| 9265 | CVE_STATUS[CVE-2024-36897] = "fixed-version: Fixed from version 6.9" | ||
| 9266 | |||
| 9267 | CVE_STATUS[CVE-2024-36898] = "fixed-version: Fixed from version 6.9" | ||
| 9268 | |||
| 9269 | CVE_STATUS[CVE-2024-36899] = "fixed-version: Fixed from version 6.9" | ||
| 9270 | |||
| 9271 | CVE_STATUS[CVE-2024-36900] = "fixed-version: Fixed from version 6.9" | ||
| 9272 | |||
| 9273 | CVE_STATUS[CVE-2024-36901] = "fixed-version: Fixed from version 6.9" | ||
| 9274 | |||
| 9275 | CVE_STATUS[CVE-2024-36902] = "fixed-version: Fixed from version 6.9" | ||
| 9276 | |||
| 9277 | CVE_STATUS[CVE-2024-36903] = "fixed-version: Fixed from version 6.9" | ||
| 9278 | |||
| 9279 | CVE_STATUS[CVE-2024-36904] = "fixed-version: Fixed from version 6.9" | ||
| 9280 | |||
| 9281 | CVE_STATUS[CVE-2024-36905] = "fixed-version: Fixed from version 6.9" | ||
| 9282 | |||
| 9283 | CVE_STATUS[CVE-2024-36906] = "fixed-version: Fixed from version 6.9" | ||
| 9284 | |||
| 9285 | CVE_STATUS[CVE-2024-36908] = "fixed-version: Fixed from version 6.9" | ||
| 9286 | |||
| 9287 | CVE_STATUS[CVE-2024-36909] = "fixed-version: Fixed from version 6.9" | ||
| 9288 | |||
| 9289 | CVE_STATUS[CVE-2024-36910] = "fixed-version: Fixed from version 6.9" | ||
| 9290 | |||
| 9291 | CVE_STATUS[CVE-2024-36911] = "fixed-version: Fixed from version 6.9" | ||
| 9292 | |||
| 9293 | CVE_STATUS[CVE-2024-36912] = "fixed-version: Fixed from version 6.9" | ||
| 9294 | |||
| 9295 | CVE_STATUS[CVE-2024-36913] = "fixed-version: Fixed from version 6.9" | ||
| 9296 | |||
| 9297 | CVE_STATUS[CVE-2024-36914] = "fixed-version: Fixed from version 6.9" | ||
| 9298 | |||
| 9299 | CVE_STATUS[CVE-2024-36915] = "fixed-version: Fixed from version 6.9" | ||
| 9300 | |||
| 9301 | CVE_STATUS[CVE-2024-36916] = "fixed-version: Fixed from version 6.9" | ||
| 9302 | |||
| 9303 | CVE_STATUS[CVE-2024-36917] = "fixed-version: Fixed from version 6.9" | ||
| 9304 | |||
| 9305 | CVE_STATUS[CVE-2024-36918] = "fixed-version: Fixed from version 6.9" | ||
| 9306 | |||
| 9307 | CVE_STATUS[CVE-2024-36919] = "fixed-version: Fixed from version 6.9" | ||
| 9308 | |||
| 9309 | CVE_STATUS[CVE-2024-36920] = "fixed-version: Fixed from version 6.9" | ||
| 9310 | |||
| 9311 | CVE_STATUS[CVE-2024-36921] = "fixed-version: Fixed from version 6.9" | ||
| 9312 | |||
| 9313 | CVE_STATUS[CVE-2024-36922] = "fixed-version: Fixed from version 6.9" | ||
| 9314 | |||
| 9315 | CVE_STATUS[CVE-2024-36923] = "fixed-version: Fixed from version 6.9" | ||
| 9316 | |||
| 9317 | CVE_STATUS[CVE-2024-36924] = "fixed-version: Fixed from version 6.9" | ||
| 9318 | |||
| 9319 | CVE_STATUS[CVE-2024-36925] = "fixed-version: Fixed from version 6.9" | ||
| 9320 | |||
| 9321 | CVE_STATUS[CVE-2024-36926] = "fixed-version: Fixed from version 6.9" | ||
| 9322 | |||
| 9323 | CVE_STATUS[CVE-2024-36927] = "fixed-version: Fixed from version 6.9" | ||
| 9324 | |||
| 9325 | CVE_STATUS[CVE-2024-36928] = "fixed-version: Fixed from version 6.9" | ||
| 9326 | |||
| 9327 | CVE_STATUS[CVE-2024-36929] = "fixed-version: Fixed from version 6.9" | ||
| 9328 | |||
| 9329 | CVE_STATUS[CVE-2024-36930] = "fixed-version: Fixed from version 6.9" | ||
| 9330 | |||
| 9331 | CVE_STATUS[CVE-2024-36931] = "fixed-version: Fixed from version 6.9" | ||
| 9332 | |||
| 9333 | CVE_STATUS[CVE-2024-36932] = "fixed-version: Fixed from version 6.9" | ||
| 9334 | |||
| 9335 | CVE_STATUS[CVE-2024-36933] = "fixed-version: Fixed from version 6.9" | ||
| 9336 | |||
| 9337 | CVE_STATUS[CVE-2024-36934] = "fixed-version: Fixed from version 6.9" | ||
| 9338 | |||
| 9339 | CVE_STATUS[CVE-2024-36935] = "fixed-version: Fixed from version 6.9" | ||
| 9340 | |||
| 9341 | CVE_STATUS[CVE-2024-36936] = "fixed-version: Fixed from version 6.9" | ||
| 9342 | |||
| 9343 | CVE_STATUS[CVE-2024-36937] = "fixed-version: Fixed from version 6.9" | ||
| 9344 | |||
| 9345 | CVE_STATUS[CVE-2024-36938] = "fixed-version: Fixed from version 6.9" | ||
| 9346 | |||
| 9347 | CVE_STATUS[CVE-2024-36939] = "fixed-version: Fixed from version 6.9" | ||
| 9348 | |||
| 9349 | CVE_STATUS[CVE-2024-36940] = "fixed-version: Fixed from version 6.9" | ||
| 9350 | |||
| 9351 | CVE_STATUS[CVE-2024-36941] = "fixed-version: Fixed from version 6.9" | ||
| 9352 | |||
| 9353 | CVE_STATUS[CVE-2024-36943] = "fixed-version: Fixed from version 6.9" | ||
| 9354 | |||
| 9355 | CVE_STATUS[CVE-2024-36944] = "fixed-version: Fixed from version 6.8.10" | ||
| 9356 | |||
| 9357 | CVE_STATUS[CVE-2024-36945] = "fixed-version: Fixed from version 6.9" | ||
| 9358 | |||
| 9359 | CVE_STATUS[CVE-2024-36946] = "fixed-version: Fixed from version 6.9" | ||
| 9360 | |||
| 9361 | CVE_STATUS[CVE-2024-36947] = "fixed-version: Fixed from version 6.9" | ||
| 9362 | |||
| 9363 | CVE_STATUS[CVE-2024-36948] = "fixed-version: Fixed from version 6.9" | ||
| 9364 | |||
| 9365 | CVE_STATUS[CVE-2024-36949] = "fixed-version: Fixed from version 6.9" | ||
| 9366 | |||
| 9367 | CVE_STATUS[CVE-2024-36950] = "fixed-version: Fixed from version 6.9" | ||
| 9368 | |||
| 9369 | CVE_STATUS[CVE-2024-36951] = "fixed-version: Fixed from version 6.9" | ||
| 9370 | |||
| 9371 | CVE_STATUS[CVE-2024-36952] = "fixed-version: Fixed from version 6.9" | ||
| 9372 | |||
| 9373 | CVE_STATUS[CVE-2024-36953] = "fixed-version: Fixed from version 6.9" | ||
| 9374 | |||
| 9375 | CVE_STATUS[CVE-2024-36954] = "fixed-version: Fixed from version 6.9" | ||
| 9376 | |||
| 9377 | CVE_STATUS[CVE-2024-36955] = "fixed-version: Fixed from version 6.9" | ||
| 9378 | |||
| 9379 | CVE_STATUS[CVE-2024-36956] = "fixed-version: Fixed from version 6.9" | ||
| 9380 | |||
| 9381 | CVE_STATUS[CVE-2024-36957] = "fixed-version: Fixed from version 6.9" | ||
| 9382 | |||
| 9383 | CVE_STATUS[CVE-2024-36958] = "fixed-version: Fixed from version 6.9" | ||
| 9384 | |||
| 9385 | CVE_STATUS[CVE-2024-36959] = "fixed-version: Fixed from version 6.9" | ||
| 9386 | |||
| 9387 | CVE_STATUS[CVE-2024-36960] = "fixed-version: Fixed from version 6.9" | ||
| 9388 | |||
| 9389 | CVE_STATUS[CVE-2024-36961] = "fixed-version: Fixed from version 6.9" | ||
| 9390 | |||
| 9391 | CVE_STATUS[CVE-2024-36962] = "fixed-version: Fixed from version 6.8.10" | ||
| 9392 | |||
| 9393 | CVE_STATUS[CVE-2024-36963] = "fixed-version: Fixed from version 6.9" | ||
| 9394 | |||
| 9395 | CVE_STATUS[CVE-2024-36964] = "fixed-version: Fixed from version 6.9" | ||
| 9396 | |||
| 9397 | CVE_STATUS[CVE-2024-36965] = "fixed-version: Fixed from version 6.10" | ||
| 9398 | |||
| 9399 | CVE_STATUS[CVE-2024-36966] = "fixed-version: Fixed from version 6.9" | ||
| 9400 | |||
| 9401 | CVE_STATUS[CVE-2024-36967] = "fixed-version: Fixed from version 6.10" | ||
| 9402 | |||
| 9403 | CVE_STATUS[CVE-2024-36968] = "fixed-version: Fixed from version 6.10" | ||
| 9404 | |||
| 9405 | CVE_STATUS[CVE-2024-36969] = "fixed-version: Fixed from version 6.10" | ||
| 9406 | |||
| 9407 | CVE_STATUS[CVE-2024-36970] = "fixed-version: Fixed from version 6.10" | ||
| 9408 | |||
| 9409 | CVE_STATUS[CVE-2024-36971] = "fixed-version: Fixed from version 6.10" | ||
| 9410 | |||
| 9411 | CVE_STATUS[CVE-2024-36972] = "fixed-version: Fixed from version 6.10" | ||
| 9412 | |||
| 9413 | CVE_STATUS[CVE-2024-36973] = "fixed-version: Fixed from version 6.10" | ||
| 9414 | |||
| 9415 | CVE_STATUS[CVE-2024-36974] = "fixed-version: Fixed from version 6.10" | ||
| 9416 | |||
| 9417 | CVE_STATUS[CVE-2024-36975] = "fixed-version: Fixed from version 6.10" | ||
| 9418 | |||
| 9419 | CVE_STATUS[CVE-2024-36976] = "fixed-version: Fixed from version 6.10" | ||
| 9420 | |||
| 9421 | CVE_STATUS[CVE-2024-36977] = "fixed-version: Fixed from version 6.10" | ||
| 9422 | |||
| 9423 | CVE_STATUS[CVE-2024-36978] = "fixed-version: Fixed from version 6.10" | ||
| 9424 | |||
| 9425 | CVE_STATUS[CVE-2024-36979] = "fixed-version: Fixed from version 6.10" | ||
| 9426 | |||
| 9427 | CVE_STATUS[CVE-2024-37021] = "fixed-version: Fixed from version 6.10" | ||
| 9428 | |||
| 9429 | CVE_STATUS[CVE-2024-37026] = "fixed-version: Fixed from version 6.10" | ||
| 9430 | |||
| 9431 | CVE_STATUS[CVE-2024-37078] = "fixed-version: Fixed from version 6.10" | ||
| 9432 | |||
| 9433 | CVE_STATUS[CVE-2024-37354] = "fixed-version: Fixed from version 6.10" | ||
| 9434 | |||
| 9435 | CVE_STATUS[CVE-2024-37356] = "fixed-version: Fixed from version 6.10" | ||
| 9436 | |||
| 9437 | CVE_STATUS[CVE-2024-38306] = "fixed-version: Fixed from version 6.10" | ||
| 9438 | |||
| 9439 | CVE_STATUS[CVE-2024-38381] = "fixed-version: Fixed from version 6.10" | ||
| 9440 | |||
| 9441 | CVE_STATUS[CVE-2024-38384] = "fixed-version: Fixed from version 6.10" | ||
| 9442 | |||
| 9443 | CVE_STATUS[CVE-2024-38385] = "fixed-version: Fixed from version 6.10" | ||
| 9444 | |||
| 9445 | CVE_STATUS[CVE-2024-38388] = "fixed-version: Fixed from version 6.10" | ||
| 9446 | |||
| 9447 | CVE_STATUS[CVE-2024-38390] = "fixed-version: Fixed from version 6.10" | ||
| 9448 | |||
| 9449 | CVE_STATUS[CVE-2024-38538] = "fixed-version: Fixed from version 6.10" | ||
| 9450 | |||
| 9451 | CVE_STATUS[CVE-2024-38539] = "fixed-version: Fixed from version 6.10" | ||
| 9452 | |||
| 9453 | CVE_STATUS[CVE-2024-38540] = "fixed-version: Fixed from version 6.10" | ||
| 9454 | |||
| 9455 | CVE_STATUS[CVE-2024-38541] = "fixed-version: Fixed from version 6.10" | ||
| 9456 | |||
| 9457 | CVE_STATUS[CVE-2024-38542] = "fixed-version: Fixed from version 6.10" | ||
| 9458 | |||
| 9459 | CVE_STATUS[CVE-2024-38543] = "fixed-version: Fixed from version 6.10" | ||
| 9460 | |||
| 9461 | CVE_STATUS[CVE-2024-38544] = "fixed-version: Fixed from version 6.10" | ||
| 9462 | |||
| 9463 | CVE_STATUS[CVE-2024-38545] = "fixed-version: Fixed from version 6.10" | ||
| 9464 | |||
| 9465 | CVE_STATUS[CVE-2024-38546] = "fixed-version: Fixed from version 6.10" | ||
| 9466 | |||
| 9467 | CVE_STATUS[CVE-2024-38547] = "fixed-version: Fixed from version 6.10" | ||
| 9468 | |||
| 9469 | CVE_STATUS[CVE-2024-38548] = "fixed-version: Fixed from version 6.10" | ||
| 9470 | |||
| 9471 | CVE_STATUS[CVE-2024-38549] = "fixed-version: Fixed from version 6.10" | ||
| 9472 | |||
| 9473 | CVE_STATUS[CVE-2024-38550] = "fixed-version: Fixed from version 6.10" | ||
| 9474 | |||
| 9475 | CVE_STATUS[CVE-2024-38551] = "fixed-version: Fixed from version 6.10" | ||
| 9476 | |||
| 9477 | CVE_STATUS[CVE-2024-38552] = "fixed-version: Fixed from version 6.10" | ||
| 9478 | |||
| 9479 | CVE_STATUS[CVE-2024-38553] = "fixed-version: Fixed from version 6.10" | ||
| 9480 | |||
| 9481 | CVE_STATUS[CVE-2024-38554] = "fixed-version: Fixed from version 6.10" | ||
| 9482 | |||
| 9483 | CVE_STATUS[CVE-2024-38555] = "fixed-version: Fixed from version 6.10" | ||
| 9484 | |||
| 9485 | CVE_STATUS[CVE-2024-38556] = "fixed-version: Fixed from version 6.10" | ||
| 9486 | |||
| 9487 | CVE_STATUS[CVE-2024-38557] = "fixed-version: Fixed from version 6.10" | ||
| 9488 | |||
| 9489 | CVE_STATUS[CVE-2024-38558] = "fixed-version: Fixed from version 6.10" | ||
| 9490 | |||
| 9491 | CVE_STATUS[CVE-2024-38559] = "fixed-version: Fixed from version 6.10" | ||
| 9492 | |||
| 9493 | CVE_STATUS[CVE-2024-38560] = "fixed-version: Fixed from version 6.10" | ||
| 9494 | |||
| 9495 | CVE_STATUS[CVE-2024-38561] = "fixed-version: Fixed from version 6.10" | ||
| 9496 | |||
| 9497 | CVE_STATUS[CVE-2024-38562] = "fixed-version: Fixed from version 6.10" | ||
| 9498 | |||
| 9499 | CVE_STATUS[CVE-2024-38563] = "fixed-version: Fixed from version 6.10" | ||
| 9500 | |||
| 9501 | CVE_STATUS[CVE-2024-38564] = "fixed-version: Fixed from version 6.10" | ||
| 9502 | |||
| 9503 | CVE_STATUS[CVE-2024-38565] = "fixed-version: Fixed from version 6.10" | ||
| 9504 | |||
| 9505 | CVE_STATUS[CVE-2024-38566] = "fixed-version: Fixed from version 6.10" | ||
| 9506 | |||
| 9507 | CVE_STATUS[CVE-2024-38567] = "fixed-version: Fixed from version 6.10" | ||
| 9508 | |||
| 9509 | CVE_STATUS[CVE-2024-38568] = "fixed-version: Fixed from version 6.10" | ||
| 9510 | |||
| 9511 | CVE_STATUS[CVE-2024-38569] = "fixed-version: Fixed from version 6.10" | ||
| 9512 | |||
| 9513 | CVE_STATUS[CVE-2024-38570] = "fixed-version: Fixed from version 6.10" | ||
| 9514 | |||
| 9515 | CVE_STATUS[CVE-2024-38571] = "fixed-version: Fixed from version 6.10" | ||
| 9516 | |||
| 9517 | CVE_STATUS[CVE-2024-38572] = "fixed-version: Fixed from version 6.10" | ||
| 9518 | |||
| 9519 | CVE_STATUS[CVE-2024-38573] = "fixed-version: Fixed from version 6.10" | ||
| 9520 | |||
| 9521 | CVE_STATUS[CVE-2024-38574] = "fixed-version: Fixed from version 6.10" | ||
| 9522 | |||
| 9523 | CVE_STATUS[CVE-2024-38575] = "fixed-version: Fixed from version 6.10" | ||
| 9524 | |||
| 9525 | CVE_STATUS[CVE-2024-38576] = "fixed-version: Fixed from version 6.10" | ||
| 9526 | |||
| 9527 | CVE_STATUS[CVE-2024-38577] = "fixed-version: Fixed from version 6.10" | ||
| 9528 | |||
| 9529 | CVE_STATUS[CVE-2024-38578] = "fixed-version: Fixed from version 6.10" | ||
| 9530 | |||
| 9531 | CVE_STATUS[CVE-2024-38579] = "fixed-version: Fixed from version 6.10" | ||
| 9532 | |||
| 9533 | CVE_STATUS[CVE-2024-38580] = "fixed-version: Fixed from version 6.9" | ||
| 9534 | |||
| 9535 | CVE_STATUS[CVE-2024-38581] = "fixed-version: Fixed from version 6.9" | ||
| 9536 | |||
| 9537 | CVE_STATUS[CVE-2024-38582] = "fixed-version: Fixed from version 6.10" | ||
| 9538 | |||
| 9539 | CVE_STATUS[CVE-2024-38583] = "fixed-version: Fixed from version 6.10" | ||
| 9540 | |||
| 9541 | CVE_STATUS[CVE-2024-38584] = "fixed-version: Fixed from version 6.10" | ||
| 9542 | |||
| 9543 | CVE_STATUS[CVE-2024-38585] = "fixed-version: Fixed from version 6.10" | ||
| 9544 | |||
| 9545 | CVE_STATUS[CVE-2024-38586] = "fixed-version: Fixed from version 6.10" | ||
| 9546 | |||
| 9547 | CVE_STATUS[CVE-2024-38587] = "fixed-version: Fixed from version 6.10" | ||
| 9548 | |||
| 9549 | CVE_STATUS[CVE-2024-38588] = "fixed-version: Fixed from version 6.10" | ||
| 9550 | |||
| 9551 | CVE_STATUS[CVE-2024-38589] = "fixed-version: Fixed from version 6.10" | ||
| 9552 | |||
| 9553 | CVE_STATUS[CVE-2024-38590] = "fixed-version: Fixed from version 6.10" | ||
| 9554 | |||
| 9555 | CVE_STATUS[CVE-2024-38591] = "fixed-version: Fixed from version 6.10" | ||
| 9556 | |||
| 9557 | CVE_STATUS[CVE-2024-38592] = "fixed-version: Fixed from version 6.10" | ||
| 9558 | |||
| 9559 | CVE_STATUS[CVE-2024-38593] = "fixed-version: Fixed from version 6.10" | ||
| 9560 | |||
| 9561 | CVE_STATUS[CVE-2024-38594] = "fixed-version: Fixed from version 6.10" | ||
| 9562 | |||
| 9563 | CVE_STATUS[CVE-2024-38595] = "fixed-version: Fixed from version 6.10" | ||
| 9564 | |||
| 9565 | CVE_STATUS[CVE-2024-38596] = "fixed-version: Fixed from version 6.10" | ||
| 9566 | |||
| 9567 | CVE_STATUS[CVE-2024-38597] = "fixed-version: Fixed from version 6.10" | ||
| 9568 | |||
| 9569 | CVE_STATUS[CVE-2024-38598] = "fixed-version: Fixed from version 6.10" | ||
| 9570 | |||
| 9571 | CVE_STATUS[CVE-2024-38599] = "fixed-version: Fixed from version 6.10" | ||
| 9572 | |||
| 9573 | CVE_STATUS[CVE-2024-38600] = "fixed-version: Fixed from version 6.10" | ||
| 9574 | |||
| 9575 | CVE_STATUS[CVE-2024-38601] = "fixed-version: Fixed from version 6.10" | ||
| 9576 | |||
| 9577 | CVE_STATUS[CVE-2024-38602] = "fixed-version: Fixed from version 6.10" | ||
| 9578 | |||
| 9579 | CVE_STATUS[CVE-2024-38603] = "fixed-version: Fixed from version 6.10" | ||
| 9580 | |||
| 9581 | CVE_STATUS[CVE-2024-38604] = "fixed-version: Fixed from version 6.10" | ||
| 9582 | |||
| 9583 | CVE_STATUS[CVE-2024-38605] = "fixed-version: Fixed from version 6.10" | ||
| 9584 | |||
| 9585 | CVE_STATUS[CVE-2024-38606] = "fixed-version: Fixed from version 6.10" | ||
| 9586 | |||
| 9587 | CVE_STATUS[CVE-2024-38607] = "fixed-version: Fixed from version 6.10" | ||
| 9588 | |||
| 9589 | CVE_STATUS[CVE-2024-38608] = "fixed-version: Fixed from version 6.10" | ||
| 9590 | |||
| 9591 | CVE_STATUS[CVE-2024-38609] = "fixed-version: Fixed from version 6.10" | ||
| 9592 | |||
| 9593 | CVE_STATUS[CVE-2024-38610] = "fixed-version: Fixed from version 6.10" | ||
| 9594 | |||
| 9595 | CVE_STATUS[CVE-2024-38611] = "fixed-version: Fixed from version 6.10" | ||
| 9596 | |||
| 9597 | CVE_STATUS[CVE-2024-38612] = "fixed-version: Fixed from version 6.10" | ||
| 9598 | |||
| 9599 | CVE_STATUS[CVE-2024-38613] = "fixed-version: Fixed from version 6.10" | ||
| 9600 | |||
| 9601 | CVE_STATUS[CVE-2024-38614] = "fixed-version: Fixed from version 6.10" | ||
| 9602 | |||
| 9603 | CVE_STATUS[CVE-2024-38615] = "fixed-version: Fixed from version 6.10" | ||
| 9604 | |||
| 9605 | CVE_STATUS[CVE-2024-38616] = "fixed-version: Fixed from version 6.10" | ||
| 9606 | |||
| 9607 | CVE_STATUS[CVE-2024-38617] = "fixed-version: Fixed from version 6.10" | ||
| 9608 | |||
| 9609 | CVE_STATUS[CVE-2024-38618] = "fixed-version: Fixed from version 6.10" | ||
| 9610 | |||
| 9611 | CVE_STATUS[CVE-2024-38619] = "fixed-version: Fixed from version 6.10" | ||
| 9612 | |||
| 9613 | CVE_STATUS[CVE-2024-38620] = "fixed-version: Fixed from version 6.10" | ||
| 9614 | |||
| 9615 | CVE_STATUS[CVE-2024-38621] = "fixed-version: Fixed from version 6.10" | ||
| 9616 | |||
| 9617 | CVE_STATUS[CVE-2024-38622] = "fixed-version: Fixed from version 6.10" | ||
| 9618 | |||
| 9619 | CVE_STATUS[CVE-2024-38623] = "fixed-version: Fixed from version 6.10" | ||
| 9620 | |||
| 9621 | CVE_STATUS[CVE-2024-38624] = "fixed-version: Fixed from version 6.10" | ||
| 9622 | |||
| 9623 | CVE_STATUS[CVE-2024-38625] = "fixed-version: Fixed from version 6.10" | ||
| 9624 | |||
| 9625 | CVE_STATUS[CVE-2024-38626] = "fixed-version: Fixed from version 6.10" | ||
| 9626 | |||
| 9627 | CVE_STATUS[CVE-2024-38627] = "fixed-version: Fixed from version 6.10" | ||
| 9628 | |||
| 9629 | CVE_STATUS[CVE-2024-38628] = "fixed-version: Fixed from version 6.10" | ||
| 9630 | |||
| 9631 | CVE_STATUS[CVE-2024-38629] = "fixed-version: Fixed from version 6.10" | ||
| 9632 | |||
| 9633 | CVE_STATUS[CVE-2024-38630] = "fixed-version: Fixed from version 6.10" | ||
| 9634 | |||
| 9635 | CVE_STATUS[CVE-2024-38631] = "fixed-version: Fixed from version 6.10" | ||
| 9636 | |||
| 9637 | CVE_STATUS[CVE-2024-38632] = "fixed-version: Fixed from version 6.10" | ||
| 9638 | |||
| 9639 | CVE_STATUS[CVE-2024-38633] = "fixed-version: Fixed from version 6.10" | ||
| 9640 | |||
| 9641 | CVE_STATUS[CVE-2024-38634] = "fixed-version: Fixed from version 6.10" | ||
| 9642 | |||
| 9643 | CVE_STATUS[CVE-2024-38635] = "fixed-version: Fixed from version 6.10" | ||
| 9644 | |||
| 9645 | CVE_STATUS[CVE-2024-38636] = "fixed-version: Fixed from version 6.10" | ||
| 9646 | |||
| 9647 | CVE_STATUS[CVE-2024-38637] = "fixed-version: Fixed from version 6.10" | ||
| 9648 | |||
| 9649 | CVE_STATUS[CVE-2024-38659] = "fixed-version: Fixed from version 6.10" | ||
| 9650 | |||
| 9651 | CVE_STATUS[CVE-2024-38661] = "fixed-version: Fixed from version 6.10" | ||
| 9652 | |||
| 9653 | CVE_STATUS[CVE-2024-38662] = "fixed-version: Fixed from version 6.10" | ||
| 9654 | |||
| 9655 | CVE_STATUS[CVE-2024-38663] = "fixed-version: Fixed from version 6.10" | ||
| 9656 | |||
| 9657 | CVE_STATUS[CVE-2024-38664] = "fixed-version: Fixed from version 6.10" | ||
| 9658 | |||
| 9659 | CVE_STATUS[CVE-2024-38667] = "fixed-version: Fixed from version 6.10" | ||
| 9660 | |||
| 9661 | CVE_STATUS[CVE-2024-38780] = "fixed-version: Fixed from version 6.10" | ||
| 9662 | |||
| 9663 | CVE_STATUS[CVE-2024-39276] = "fixed-version: Fixed from version 6.10" | ||
| 9664 | |||
| 9665 | CVE_STATUS[CVE-2024-39277] = "fixed-version: Fixed from version 6.10" | ||
| 9666 | |||
| 9667 | CVE_STATUS[CVE-2024-39282] = "fixed-version: Fixed from version 6.13" | ||
| 9668 | |||
| 9669 | CVE_STATUS[CVE-2024-39291] = "fixed-version: Fixed from version 6.10" | ||
| 9670 | |||
| 9671 | CVE_STATUS[CVE-2024-39292] = "fixed-version: Fixed from version 6.10" | ||
| 9672 | |||
| 9673 | CVE_STATUS[CVE-2024-39293] = "fixed-version: Fixed from version 6.10" | ||
| 9674 | |||
| 9675 | CVE_STATUS[CVE-2024-39296] = "fixed-version: Fixed from version 6.10" | ||
| 9676 | |||
| 9677 | CVE_STATUS[CVE-2024-39298] = "fixed-version: Fixed from version 6.10" | ||
| 9678 | |||
| 9679 | CVE_STATUS[CVE-2024-39301] = "fixed-version: Fixed from version 6.10" | ||
| 9680 | |||
| 9681 | CVE_STATUS[CVE-2024-39371] = "fixed-version: Fixed from version 6.10" | ||
| 9682 | |||
| 9683 | CVE_STATUS[CVE-2024-39461] = "fixed-version: Fixed from version 6.10" | ||
| 9684 | |||
| 9685 | CVE_STATUS[CVE-2024-39462] = "fixed-version: Fixed from version 6.10" | ||
| 9686 | |||
| 9687 | CVE_STATUS[CVE-2024-39463] = "fixed-version: Fixed from version 6.10" | ||
| 9688 | |||
| 9689 | CVE_STATUS[CVE-2024-39464] = "fixed-version: Fixed from version 6.10" | ||
| 9690 | |||
| 9691 | CVE_STATUS[CVE-2024-39465] = "fixed-version: Fixed from version 6.10" | ||
| 9692 | |||
| 9693 | CVE_STATUS[CVE-2024-39466] = "fixed-version: Fixed from version 6.10" | ||
| 9694 | |||
| 9695 | CVE_STATUS[CVE-2024-39467] = "fixed-version: Fixed from version 6.10" | ||
| 9696 | |||
| 9697 | CVE_STATUS[CVE-2024-39468] = "fixed-version: Fixed from version 6.10" | ||
| 9698 | |||
| 9699 | CVE_STATUS[CVE-2024-39469] = "fixed-version: Fixed from version 6.10" | ||
| 9700 | |||
| 9701 | CVE_STATUS[CVE-2024-39470] = "fixed-version: Fixed from version 6.10" | ||
| 9702 | |||
| 9703 | CVE_STATUS[CVE-2024-39471] = "fixed-version: Fixed from version 6.10" | ||
| 9704 | |||
| 9705 | CVE_STATUS[CVE-2024-39472] = "fixed-version: Fixed from version 6.10" | ||
| 9706 | |||
| 9707 | CVE_STATUS[CVE-2024-39473] = "fixed-version: Fixed from version 6.10" | ||
| 9708 | |||
| 9709 | CVE_STATUS[CVE-2024-39474] = "fixed-version: Fixed from version 6.10" | ||
| 9710 | |||
| 9711 | CVE_STATUS[CVE-2024-39475] = "fixed-version: Fixed from version 6.10" | ||
| 9712 | |||
| 9713 | CVE_STATUS[CVE-2024-39476] = "fixed-version: Fixed from version 6.10" | ||
| 9714 | |||
| 9715 | CVE_STATUS[CVE-2024-39477] = "fixed-version: Fixed from version 6.10" | ||
| 9716 | |||
| 9717 | CVE_STATUS[CVE-2024-39478] = "fixed-version: Fixed from version 6.10" | ||
| 9718 | |||
| 9719 | CVE_STATUS[CVE-2024-39479] = "fixed-version: Fixed from version 6.10" | ||
| 9720 | |||
| 9721 | CVE_STATUS[CVE-2024-39480] = "fixed-version: Fixed from version 6.10" | ||
| 9722 | |||
| 9723 | CVE_STATUS[CVE-2024-39481] = "fixed-version: Fixed from version 6.10" | ||
| 9724 | |||
| 9725 | CVE_STATUS[CVE-2024-39482] = "fixed-version: Fixed from version 6.10" | ||
| 9726 | |||
| 9727 | CVE_STATUS[CVE-2024-39483] = "fixed-version: Fixed from version 6.10" | ||
| 9728 | |||
| 9729 | CVE_STATUS[CVE-2024-39484] = "fixed-version: Fixed from version 6.10" | ||
| 9730 | |||
| 9731 | CVE_STATUS[CVE-2024-39485] = "fixed-version: Fixed from version 6.10" | ||
| 9732 | |||
| 9733 | CVE_STATUS[CVE-2024-39486] = "fixed-version: Fixed from version 6.10" | ||
| 9734 | |||
| 9735 | CVE_STATUS[CVE-2024-39487] = "fixed-version: Fixed from version 6.10" | ||
| 9736 | |||
| 9737 | CVE_STATUS[CVE-2024-39488] = "fixed-version: Fixed from version 6.10" | ||
| 9738 | |||
| 9739 | CVE_STATUS[CVE-2024-39489] = "fixed-version: Fixed from version 6.10" | ||
| 9740 | |||
| 9741 | CVE_STATUS[CVE-2024-39490] = "fixed-version: Fixed from version 6.10" | ||
| 9742 | |||
| 9743 | CVE_STATUS[CVE-2024-39491] = "fixed-version: Fixed from version 6.10" | ||
| 9744 | |||
| 9745 | CVE_STATUS[CVE-2024-39492] = "fixed-version: Fixed from version 6.10" | ||
| 9746 | |||
| 9747 | CVE_STATUS[CVE-2024-39493] = "fixed-version: Fixed from version 6.10" | ||
| 9748 | |||
| 9749 | CVE_STATUS[CVE-2024-39494] = "fixed-version: Fixed from version 6.10" | ||
| 9750 | |||
| 9751 | CVE_STATUS[CVE-2024-39495] = "fixed-version: Fixed from version 6.10" | ||
| 9752 | |||
| 9753 | CVE_STATUS[CVE-2024-39496] = "fixed-version: Fixed from version 6.10" | ||
| 9754 | |||
| 9755 | CVE_STATUS[CVE-2024-39497] = "fixed-version: Fixed from version 6.10" | ||
| 9756 | |||
| 9757 | CVE_STATUS[CVE-2024-39498] = "fixed-version: Fixed from version 6.10" | ||
| 9758 | |||
| 9759 | CVE_STATUS[CVE-2024-39499] = "fixed-version: Fixed from version 6.10" | ||
| 9760 | |||
| 9761 | CVE_STATUS[CVE-2024-39500] = "fixed-version: Fixed from version 6.10" | ||
| 9762 | |||
| 9763 | CVE_STATUS[CVE-2024-39502] = "fixed-version: Fixed from version 6.10" | ||
| 9764 | |||
| 9765 | CVE_STATUS[CVE-2024-39503] = "fixed-version: Fixed from version 6.10" | ||
| 9766 | |||
| 9767 | CVE_STATUS[CVE-2024-39504] = "fixed-version: Fixed from version 6.10" | ||
| 9768 | |||
| 9769 | CVE_STATUS[CVE-2024-39505] = "fixed-version: Fixed from version 6.10" | ||
| 9770 | |||
| 9771 | CVE_STATUS[CVE-2024-39506] = "fixed-version: Fixed from version 6.10" | ||
| 9772 | |||
| 9773 | CVE_STATUS[CVE-2024-39507] = "fixed-version: Fixed from version 6.10" | ||
| 9774 | |||
| 9775 | CVE_STATUS[CVE-2024-39508] = "fixed-version: Fixed from version 6.10" | ||
| 9776 | |||
| 9777 | CVE_STATUS[CVE-2024-39509] = "fixed-version: Fixed from version 6.10" | ||
| 9778 | |||
| 9779 | CVE_STATUS[CVE-2024-39510] = "fixed-version: Fixed from version 6.10" | ||
| 9780 | |||
| 9781 | CVE_STATUS[CVE-2024-40899] = "fixed-version: Fixed from version 6.10" | ||
| 9782 | |||
| 9783 | CVE_STATUS[CVE-2024-40900] = "fixed-version: Fixed from version 6.10" | ||
| 9784 | |||
| 9785 | CVE_STATUS[CVE-2024-40901] = "fixed-version: Fixed from version 6.10" | ||
| 9786 | |||
| 9787 | CVE_STATUS[CVE-2024-40902] = "fixed-version: Fixed from version 6.10" | ||
| 9788 | |||
| 9789 | CVE_STATUS[CVE-2024-40903] = "fixed-version: Fixed from version 6.10" | ||
| 9790 | |||
| 9791 | CVE_STATUS[CVE-2024-40904] = "fixed-version: Fixed from version 6.10" | ||
| 9792 | |||
| 9793 | CVE_STATUS[CVE-2024-40905] = "fixed-version: Fixed from version 6.10" | ||
| 9794 | |||
| 9795 | CVE_STATUS[CVE-2024-40906] = "fixed-version: Fixed from version 6.10" | ||
| 9796 | |||
| 9797 | CVE_STATUS[CVE-2024-40907] = "fixed-version: Fixed from version 6.10" | ||
| 9798 | |||
| 9799 | CVE_STATUS[CVE-2024-40908] = "fixed-version: Fixed from version 6.10" | ||
| 9800 | |||
| 9801 | CVE_STATUS[CVE-2024-40909] = "fixed-version: Fixed from version 6.10" | ||
| 9802 | |||
| 9803 | CVE_STATUS[CVE-2024-40910] = "fixed-version: Fixed from version 6.10" | ||
| 9804 | |||
| 9805 | CVE_STATUS[CVE-2024-40911] = "fixed-version: Fixed from version 6.10" | ||
| 9806 | |||
| 9807 | CVE_STATUS[CVE-2024-40912] = "fixed-version: Fixed from version 6.10" | ||
| 9808 | |||
| 9809 | CVE_STATUS[CVE-2024-40913] = "fixed-version: Fixed from version 6.10" | ||
| 9810 | |||
| 9811 | CVE_STATUS[CVE-2024-40914] = "fixed-version: Fixed from version 6.10" | ||
| 9812 | |||
| 9813 | CVE_STATUS[CVE-2024-40915] = "fixed-version: Fixed from version 6.10" | ||
| 9814 | |||
| 9815 | CVE_STATUS[CVE-2024-40916] = "fixed-version: Fixed from version 6.10" | ||
| 9816 | |||
| 9817 | CVE_STATUS[CVE-2024-40917] = "fixed-version: Fixed from version 6.10" | ||
| 9818 | |||
| 9819 | CVE_STATUS[CVE-2024-40918] = "fixed-version: Fixed from version 6.10" | ||
| 9820 | |||
| 9821 | CVE_STATUS[CVE-2024-40919] = "fixed-version: Fixed from version 6.10" | ||
| 9822 | |||
| 9823 | CVE_STATUS[CVE-2024-40920] = "fixed-version: Fixed from version 6.9.6" | ||
| 9824 | |||
| 9825 | CVE_STATUS[CVE-2024-40921] = "fixed-version: Fixed from version 6.9.6" | ||
| 9826 | |||
| 9827 | CVE_STATUS[CVE-2024-40922] = "fixed-version: Fixed from version 6.10" | ||
| 9828 | |||
| 9829 | CVE_STATUS[CVE-2024-40923] = "fixed-version: Fixed from version 6.10" | ||
| 9830 | |||
| 9831 | CVE_STATUS[CVE-2024-40924] = "fixed-version: Fixed from version 6.10" | ||
| 9832 | |||
| 9833 | CVE_STATUS[CVE-2024-40925] = "fixed-version: Fixed from version 6.10" | ||
| 9834 | |||
| 9835 | CVE_STATUS[CVE-2024-40926] = "fixed-version: Fixed from version 6.10" | ||
| 9836 | |||
| 9837 | CVE_STATUS[CVE-2024-40927] = "fixed-version: Fixed from version 6.10" | ||
| 9838 | |||
| 9839 | CVE_STATUS[CVE-2024-40928] = "fixed-version: Fixed from version 6.10" | ||
| 9840 | |||
| 9841 | CVE_STATUS[CVE-2024-40929] = "fixed-version: Fixed from version 6.10" | ||
| 9842 | |||
| 9843 | CVE_STATUS[CVE-2024-40930] = "fixed-version: Fixed from version 6.10" | ||
| 9844 | |||
| 9845 | CVE_STATUS[CVE-2024-40931] = "fixed-version: Fixed from version 6.10" | ||
| 9846 | |||
| 9847 | CVE_STATUS[CVE-2024-40932] = "fixed-version: Fixed from version 6.10" | ||
| 9848 | |||
| 9849 | CVE_STATUS[CVE-2024-40933] = "fixed-version: Fixed from version 6.10" | ||
| 9850 | |||
| 9851 | CVE_STATUS[CVE-2024-40934] = "fixed-version: Fixed from version 6.10" | ||
| 9852 | |||
| 9853 | CVE_STATUS[CVE-2024-40935] = "fixed-version: Fixed from version 6.10" | ||
| 9854 | |||
| 9855 | CVE_STATUS[CVE-2024-40936] = "fixed-version: Fixed from version 6.10" | ||
| 9856 | |||
| 9857 | CVE_STATUS[CVE-2024-40937] = "fixed-version: Fixed from version 6.10" | ||
| 9858 | |||
| 9859 | CVE_STATUS[CVE-2024-40938] = "fixed-version: Fixed from version 6.10" | ||
| 9860 | |||
| 9861 | CVE_STATUS[CVE-2024-40939] = "fixed-version: Fixed from version 6.10" | ||
| 9862 | |||
| 9863 | CVE_STATUS[CVE-2024-40940] = "fixed-version: Fixed from version 6.10" | ||
| 9864 | |||
| 9865 | CVE_STATUS[CVE-2024-40941] = "fixed-version: Fixed from version 6.10" | ||
| 9866 | |||
| 9867 | CVE_STATUS[CVE-2024-40942] = "fixed-version: Fixed from version 6.10" | ||
| 9868 | |||
| 9869 | CVE_STATUS[CVE-2024-40943] = "fixed-version: Fixed from version 6.10" | ||
| 9870 | |||
| 9871 | CVE_STATUS[CVE-2024-40944] = "fixed-version: Fixed from version 6.10" | ||
| 9872 | |||
| 9873 | CVE_STATUS[CVE-2024-40945] = "fixed-version: Fixed from version 6.10" | ||
| 9874 | |||
| 9875 | CVE_STATUS[CVE-2024-40947] = "fixed-version: Fixed from version 6.10" | ||
| 9876 | |||
| 9877 | CVE_STATUS[CVE-2024-40948] = "fixed-version: Fixed from version 6.10" | ||
| 9878 | |||
| 9879 | CVE_STATUS[CVE-2024-40949] = "fixed-version: Fixed from version 6.10" | ||
| 9880 | |||
| 9881 | CVE_STATUS[CVE-2024-40950] = "fixed-version: Fixed from version 6.10" | ||
| 9882 | |||
| 9883 | CVE_STATUS[CVE-2024-40951] = "fixed-version: Fixed from version 6.10" | ||
| 9884 | |||
| 9885 | CVE_STATUS[CVE-2024-40952] = "fixed-version: Fixed from version 6.10" | ||
| 9886 | |||
| 9887 | CVE_STATUS[CVE-2024-40953] = "fixed-version: Fixed from version 6.10" | ||
| 9888 | |||
| 9889 | CVE_STATUS[CVE-2024-40954] = "fixed-version: Fixed from version 6.10" | ||
| 9890 | |||
| 9891 | CVE_STATUS[CVE-2024-40955] = "fixed-version: Fixed from version 6.10" | ||
| 9892 | |||
| 9893 | CVE_STATUS[CVE-2024-40956] = "fixed-version: Fixed from version 6.10" | ||
| 9894 | |||
| 9895 | CVE_STATUS[CVE-2024-40957] = "fixed-version: Fixed from version 6.10" | ||
| 9896 | |||
| 9897 | CVE_STATUS[CVE-2024-40958] = "fixed-version: Fixed from version 6.10" | ||
| 9898 | |||
| 9899 | CVE_STATUS[CVE-2024-40959] = "fixed-version: Fixed from version 6.10" | ||
| 9900 | |||
| 9901 | CVE_STATUS[CVE-2024-40960] = "fixed-version: Fixed from version 6.10" | ||
| 9902 | |||
| 9903 | CVE_STATUS[CVE-2024-40961] = "fixed-version: Fixed from version 6.10" | ||
| 9904 | |||
| 9905 | CVE_STATUS[CVE-2024-40962] = "fixed-version: Fixed from version 6.10" | ||
| 9906 | |||
| 9907 | CVE_STATUS[CVE-2024-40963] = "fixed-version: Fixed from version 6.10" | ||
| 9908 | |||
| 9909 | CVE_STATUS[CVE-2024-40964] = "fixed-version: Fixed from version 6.10" | ||
| 9910 | |||
| 9911 | CVE_STATUS[CVE-2024-40965] = "fixed-version: Fixed from version 6.10" | ||
| 9912 | |||
| 9913 | CVE_STATUS[CVE-2024-40966] = "fixed-version: Fixed from version 6.10" | ||
| 9914 | |||
| 9915 | CVE_STATUS[CVE-2024-40967] = "fixed-version: Fixed from version 6.10" | ||
| 9916 | |||
| 9917 | CVE_STATUS[CVE-2024-40968] = "fixed-version: Fixed from version 6.10" | ||
| 9918 | |||
| 9919 | CVE_STATUS[CVE-2024-40969] = "fixed-version: Fixed from version 6.10" | ||
| 9920 | |||
| 9921 | CVE_STATUS[CVE-2024-40970] = "fixed-version: Fixed from version 6.10" | ||
| 9922 | |||
| 9923 | CVE_STATUS[CVE-2024-40971] = "fixed-version: Fixed from version 6.10" | ||
| 9924 | |||
| 9925 | CVE_STATUS[CVE-2024-40972] = "fixed-version: Fixed from version 6.10" | ||
| 9926 | |||
| 9927 | CVE_STATUS[CVE-2024-40973] = "fixed-version: Fixed from version 6.10" | ||
| 9928 | |||
| 9929 | CVE_STATUS[CVE-2024-40974] = "fixed-version: Fixed from version 6.10" | ||
| 9930 | |||
| 9931 | CVE_STATUS[CVE-2024-40975] = "fixed-version: Fixed from version 6.10" | ||
| 9932 | |||
| 9933 | CVE_STATUS[CVE-2024-40976] = "fixed-version: Fixed from version 6.10" | ||
| 9934 | |||
| 9935 | CVE_STATUS[CVE-2024-40977] = "fixed-version: Fixed from version 6.10" | ||
| 9936 | |||
| 9937 | CVE_STATUS[CVE-2024-40978] = "fixed-version: Fixed from version 6.10" | ||
| 9938 | |||
| 9939 | CVE_STATUS[CVE-2024-40979] = "fixed-version: Fixed from version 6.10" | ||
| 9940 | |||
| 9941 | CVE_STATUS[CVE-2024-40980] = "fixed-version: Fixed from version 6.10" | ||
| 9942 | |||
| 9943 | CVE_STATUS[CVE-2024-40981] = "fixed-version: Fixed from version 6.10" | ||
| 9944 | |||
| 9945 | CVE_STATUS[CVE-2024-40983] = "fixed-version: Fixed from version 6.10" | ||
| 9946 | |||
| 9947 | CVE_STATUS[CVE-2024-40984] = "fixed-version: Fixed from version 6.10" | ||
| 9948 | |||
| 9949 | CVE_STATUS[CVE-2024-40985] = "fixed-version: Fixed from version 6.10" | ||
| 9950 | |||
| 9951 | CVE_STATUS[CVE-2024-40986] = "fixed-version: Fixed from version 6.10" | ||
| 9952 | |||
| 9953 | CVE_STATUS[CVE-2024-40987] = "fixed-version: Fixed from version 6.10" | ||
| 9954 | |||
| 9955 | CVE_STATUS[CVE-2024-40988] = "fixed-version: Fixed from version 6.10" | ||
| 9956 | |||
| 9957 | CVE_STATUS[CVE-2024-40989] = "fixed-version: Fixed from version 6.10" | ||
| 9958 | |||
| 9959 | CVE_STATUS[CVE-2024-40990] = "fixed-version: Fixed from version 6.10" | ||
| 9960 | |||
| 9961 | CVE_STATUS[CVE-2024-40991] = "fixed-version: Fixed from version 6.10" | ||
| 9962 | |||
| 9963 | CVE_STATUS[CVE-2024-40992] = "fixed-version: Fixed from version 6.10" | ||
| 9964 | |||
| 9965 | CVE_STATUS[CVE-2024-40993] = "fixed-version: Fixed from version 6.9.7" | ||
| 9966 | |||
| 9967 | CVE_STATUS[CVE-2024-40994] = "fixed-version: Fixed from version 6.10" | ||
| 9968 | |||
| 9969 | CVE_STATUS[CVE-2024-40995] = "fixed-version: Fixed from version 6.10" | ||
| 9970 | |||
| 9971 | CVE_STATUS[CVE-2024-40996] = "fixed-version: Fixed from version 6.10" | ||
| 9972 | |||
| 9973 | CVE_STATUS[CVE-2024-40997] = "fixed-version: Fixed from version 6.10" | ||
| 9974 | |||
| 9975 | CVE_STATUS[CVE-2024-40998] = "fixed-version: Fixed from version 6.10" | ||
| 9976 | |||
| 9977 | CVE_STATUS[CVE-2024-40999] = "fixed-version: Fixed from version 6.10" | ||
| 9978 | |||
| 9979 | CVE_STATUS[CVE-2024-41000] = "fixed-version: Fixed from version 6.10" | ||
| 9980 | |||
| 9981 | CVE_STATUS[CVE-2024-41001] = "fixed-version: Fixed from version 6.10" | ||
| 9982 | |||
| 9983 | CVE_STATUS[CVE-2024-41002] = "fixed-version: Fixed from version 6.10" | ||
| 9984 | |||
| 9985 | CVE_STATUS[CVE-2024-41003] = "fixed-version: Fixed from version 6.10" | ||
| 9986 | |||
| 9987 | CVE_STATUS[CVE-2024-41004] = "fixed-version: Fixed from version 6.10" | ||
| 9988 | |||
| 9989 | CVE_STATUS[CVE-2024-41005] = "fixed-version: Fixed from version 6.10" | ||
| 9990 | |||
| 9991 | CVE_STATUS[CVE-2024-41006] = "fixed-version: Fixed from version 6.10" | ||
| 9992 | |||
| 9993 | CVE_STATUS[CVE-2024-41007] = "fixed-version: Fixed from version 6.10" | ||
| 9994 | |||
| 9995 | CVE_STATUS[CVE-2024-41008] = "fixed-version: Fixed from version 6.9" | ||
| 9996 | |||
| 9997 | CVE_STATUS[CVE-2024-41009] = "fixed-version: Fixed from version 6.10" | ||
| 9998 | |||
| 9999 | CVE_STATUS[CVE-2024-41010] = "fixed-version: Fixed from version 6.10" | ||
| 10000 | |||
| 10001 | CVE_STATUS[CVE-2024-41011] = "fixed-version: Fixed from version 6.9" | ||
| 10002 | |||
| 10003 | CVE_STATUS[CVE-2024-41012] = "fixed-version: Fixed from version 6.10" | ||
| 10004 | |||
| 10005 | CVE_STATUS[CVE-2024-41013] = "fixed-version: Fixed from version 6.11" | ||
| 10006 | |||
| 10007 | CVE_STATUS[CVE-2024-41014] = "fixed-version: Fixed from version 6.11" | ||
| 10008 | |||
| 10009 | CVE_STATUS[CVE-2024-41015] = "fixed-version: Fixed from version 6.11" | ||
| 10010 | |||
| 10011 | CVE_STATUS[CVE-2024-41016] = "fixed-version: Fixed from version 6.11" | ||
| 10012 | |||
| 10013 | CVE_STATUS[CVE-2024-41017] = "fixed-version: Fixed from version 6.11" | ||
| 10014 | |||
| 10015 | CVE_STATUS[CVE-2024-41018] = "fixed-version: Fixed from version 6.11" | ||
| 10016 | |||
| 10017 | CVE_STATUS[CVE-2024-41019] = "fixed-version: Fixed from version 6.11" | ||
| 10018 | |||
| 10019 | CVE_STATUS[CVE-2024-41020] = "fixed-version: Fixed from version 6.11" | ||
| 10020 | |||
| 10021 | CVE_STATUS[CVE-2024-41021] = "fixed-version: Fixed from version 6.11" | ||
| 10022 | |||
| 10023 | CVE_STATUS[CVE-2024-41022] = "fixed-version: Fixed from version 6.11" | ||
| 10024 | |||
| 10025 | CVE_STATUS[CVE-2024-41023] = "fixed-version: Fixed from version 6.10" | ||
| 10026 | |||
| 10027 | CVE_STATUS[CVE-2024-41025] = "fixed-version: Fixed from version 6.10" | ||
| 10028 | |||
| 10029 | CVE_STATUS[CVE-2024-41026] = "fixed-version: Fixed from version 6.10" | ||
| 10030 | |||
| 10031 | CVE_STATUS[CVE-2024-41027] = "fixed-version: Fixed from version 6.10" | ||
| 10032 | |||
| 10033 | CVE_STATUS[CVE-2024-41028] = "fixed-version: Fixed from version 6.10" | ||
| 10034 | |||
| 10035 | CVE_STATUS[CVE-2024-41029] = "fixed-version: Fixed from version 6.10" | ||
| 10036 | |||
| 10037 | CVE_STATUS[CVE-2024-41030] = "fixed-version: Fixed from version 6.10" | ||
| 10038 | |||
| 10039 | CVE_STATUS[CVE-2024-41031] = "fixed-version: Fixed from version 6.10" | ||
| 10040 | |||
| 10041 | CVE_STATUS[CVE-2024-41032] = "fixed-version: Fixed from version 6.10" | ||
| 10042 | |||
| 10043 | CVE_STATUS[CVE-2024-41033] = "fixed-version: Fixed from version 6.10" | ||
| 10044 | |||
| 10045 | CVE_STATUS[CVE-2024-41034] = "fixed-version: Fixed from version 6.10" | ||
| 10046 | |||
| 10047 | CVE_STATUS[CVE-2024-41035] = "fixed-version: Fixed from version 6.10" | ||
| 10048 | |||
| 10049 | CVE_STATUS[CVE-2024-41036] = "fixed-version: Fixed from version 6.10" | ||
| 10050 | |||
| 10051 | CVE_STATUS[CVE-2024-41037] = "fixed-version: Fixed from version 6.10" | ||
| 10052 | |||
| 10053 | CVE_STATUS[CVE-2024-41038] = "fixed-version: Fixed from version 6.10" | ||
| 10054 | |||
| 10055 | CVE_STATUS[CVE-2024-41039] = "fixed-version: Fixed from version 6.10" | ||
| 10056 | |||
| 10057 | CVE_STATUS[CVE-2024-41040] = "fixed-version: Fixed from version 6.10" | ||
| 10058 | |||
| 10059 | CVE_STATUS[CVE-2024-41041] = "fixed-version: Fixed from version 6.10" | ||
| 10060 | |||
| 10061 | CVE_STATUS[CVE-2024-41042] = "fixed-version: Fixed from version 6.10" | ||
| 10062 | |||
| 10063 | CVE_STATUS[CVE-2024-41043] = "fixed-version: Fixed from version 6.10" | ||
| 10064 | |||
| 10065 | CVE_STATUS[CVE-2024-41044] = "fixed-version: Fixed from version 6.10" | ||
| 10066 | |||
| 10067 | CVE_STATUS[CVE-2024-41045] = "fixed-version: Fixed from version 6.10" | ||
| 10068 | |||
| 10069 | CVE_STATUS[CVE-2024-41046] = "fixed-version: Fixed from version 6.10" | ||
| 10070 | |||
| 10071 | CVE_STATUS[CVE-2024-41047] = "fixed-version: Fixed from version 6.10" | ||
| 10072 | |||
| 10073 | CVE_STATUS[CVE-2024-41048] = "fixed-version: Fixed from version 6.10" | ||
| 10074 | |||
| 10075 | CVE_STATUS[CVE-2024-41049] = "fixed-version: Fixed from version 6.10" | ||
| 10076 | |||
| 10077 | CVE_STATUS[CVE-2024-41050] = "fixed-version: Fixed from version 6.10" | ||
| 10078 | |||
| 10079 | CVE_STATUS[CVE-2024-41051] = "fixed-version: Fixed from version 6.10" | ||
| 10080 | |||
| 10081 | CVE_STATUS[CVE-2024-41052] = "fixed-version: Fixed from version 6.9.10" | ||
| 10082 | |||
| 10083 | CVE_STATUS[CVE-2024-41053] = "fixed-version: Fixed from version 6.10" | ||
| 10084 | |||
| 10085 | CVE_STATUS[CVE-2024-41054] = "fixed-version: Fixed from version 6.10" | ||
| 10086 | |||
| 10087 | CVE_STATUS[CVE-2024-41055] = "fixed-version: Fixed from version 6.10" | ||
| 10088 | |||
| 10089 | CVE_STATUS[CVE-2024-41056] = "fixed-version: Fixed from version 6.10" | ||
| 10090 | |||
| 10091 | CVE_STATUS[CVE-2024-41057] = "fixed-version: Fixed from version 6.10" | ||
| 10092 | |||
| 10093 | CVE_STATUS[CVE-2024-41058] = "fixed-version: Fixed from version 6.10" | ||
| 10094 | |||
| 10095 | CVE_STATUS[CVE-2024-41059] = "fixed-version: Fixed from version 6.10" | ||
| 10096 | |||
| 10097 | CVE_STATUS[CVE-2024-41060] = "fixed-version: Fixed from version 6.10" | ||
| 10098 | |||
| 10099 | CVE_STATUS[CVE-2024-41061] = "fixed-version: Fixed from version 6.10" | ||
| 10100 | |||
| 10101 | CVE_STATUS[CVE-2024-41062] = "fixed-version: Fixed from version 6.10" | ||
| 10102 | |||
| 10103 | CVE_STATUS[CVE-2024-41063] = "fixed-version: Fixed from version 6.10" | ||
| 10104 | |||
| 10105 | CVE_STATUS[CVE-2024-41064] = "fixed-version: Fixed from version 6.10" | ||
| 10106 | |||
| 10107 | CVE_STATUS[CVE-2024-41065] = "fixed-version: Fixed from version 6.10" | ||
| 10108 | |||
| 10109 | CVE_STATUS[CVE-2024-41066] = "fixed-version: Fixed from version 6.10" | ||
| 10110 | |||
| 10111 | CVE_STATUS[CVE-2024-41067] = "fixed-version: Fixed from version 6.10" | ||
| 10112 | |||
| 10113 | CVE_STATUS[CVE-2024-41068] = "fixed-version: Fixed from version 6.10" | ||
| 10114 | |||
| 10115 | CVE_STATUS[CVE-2024-41069] = "fixed-version: Fixed from version 6.10" | ||
| 10116 | |||
| 10117 | CVE_STATUS[CVE-2024-41070] = "fixed-version: Fixed from version 6.10" | ||
| 10118 | |||
| 10119 | CVE_STATUS[CVE-2024-41072] = "fixed-version: Fixed from version 6.10" | ||
| 10120 | |||
| 10121 | CVE_STATUS[CVE-2024-41073] = "fixed-version: Fixed from version 6.10" | ||
| 10122 | |||
| 10123 | CVE_STATUS[CVE-2024-41074] = "fixed-version: Fixed from version 6.10" | ||
| 10124 | |||
| 10125 | CVE_STATUS[CVE-2024-41075] = "fixed-version: Fixed from version 6.10" | ||
| 10126 | |||
| 10127 | CVE_STATUS[CVE-2024-41076] = "fixed-version: Fixed from version 6.10" | ||
| 10128 | |||
| 10129 | CVE_STATUS[CVE-2024-41077] = "fixed-version: Fixed from version 6.10" | ||
| 10130 | |||
| 10131 | CVE_STATUS[CVE-2024-41078] = "fixed-version: Fixed from version 6.10" | ||
| 10132 | |||
| 10133 | CVE_STATUS[CVE-2024-41079] = "fixed-version: Fixed from version 6.10" | ||
| 10134 | |||
| 10135 | CVE_STATUS[CVE-2024-41080] = "fixed-version: Fixed from version 6.10" | ||
| 10136 | |||
| 10137 | CVE_STATUS[CVE-2024-41081] = "fixed-version: Fixed from version 6.10" | ||
| 10138 | |||
| 10139 | CVE_STATUS[CVE-2024-41082] = "fixed-version: Fixed from version 6.10" | ||
| 10140 | |||
| 10141 | CVE_STATUS[CVE-2024-41083] = "fixed-version: Fixed from version 6.10" | ||
| 10142 | |||
| 10143 | CVE_STATUS[CVE-2024-41084] = "fixed-version: Fixed from version 6.10" | ||
| 10144 | |||
| 10145 | CVE_STATUS[CVE-2024-41085] = "fixed-version: Fixed from version 6.10" | ||
| 10146 | |||
| 10147 | CVE_STATUS[CVE-2024-41086] = "fixed-version: Fixed from version 6.10" | ||
| 10148 | |||
| 10149 | CVE_STATUS[CVE-2024-41087] = "fixed-version: Fixed from version 6.10" | ||
| 10150 | |||
| 10151 | CVE_STATUS[CVE-2024-41088] = "fixed-version: Fixed from version 6.10" | ||
| 10152 | |||
| 10153 | CVE_STATUS[CVE-2024-41089] = "fixed-version: Fixed from version 6.10" | ||
| 10154 | |||
| 10155 | CVE_STATUS[CVE-2024-41090] = "fixed-version: Fixed from version 6.11" | ||
| 10156 | |||
| 10157 | CVE_STATUS[CVE-2024-41091] = "fixed-version: Fixed from version 6.11" | ||
| 10158 | |||
| 10159 | CVE_STATUS[CVE-2024-41092] = "fixed-version: Fixed from version 6.10" | ||
| 10160 | |||
| 10161 | CVE_STATUS[CVE-2024-41093] = "fixed-version: Fixed from version 6.10" | ||
| 10162 | |||
| 10163 | CVE_STATUS[CVE-2024-41094] = "fixed-version: Fixed from version 6.10" | ||
| 10164 | |||
| 10165 | CVE_STATUS[CVE-2024-41095] = "fixed-version: Fixed from version 6.10" | ||
| 10166 | |||
| 10167 | CVE_STATUS[CVE-2024-41096] = "fixed-version: Fixed from version 6.10" | ||
| 10168 | |||
| 10169 | CVE_STATUS[CVE-2024-41097] = "fixed-version: Fixed from version 6.10" | ||
| 10170 | |||
| 10171 | CVE_STATUS[CVE-2024-41098] = "fixed-version: Fixed from version 6.10" | ||
| 10172 | |||
| 10173 | CVE_STATUS[CVE-2024-41149] = "fixed-version: Fixed from version 6.12.7" | ||
| 10174 | |||
| 10175 | CVE_STATUS[CVE-2024-41932] = "fixed-version: Fixed from version 6.13" | ||
| 10176 | |||
| 10177 | CVE_STATUS[CVE-2024-41935] = "fixed-version: Fixed from version 6.13" | ||
| 10178 | |||
| 10179 | CVE_STATUS[CVE-2024-42063] = "fixed-version: Fixed from version 6.10" | ||
| 10180 | |||
| 10181 | CVE_STATUS[CVE-2024-42064] = "fixed-version: Fixed from version 6.10" | ||
| 10182 | |||
| 10183 | CVE_STATUS[CVE-2024-42065] = "fixed-version: Fixed from version 6.10" | ||
| 10184 | |||
| 10185 | CVE_STATUS[CVE-2024-42066] = "fixed-version: Fixed from version 6.10" | ||
| 10186 | |||
| 10187 | CVE_STATUS[CVE-2024-42067] = "fixed-version: Fixed from version 6.10" | ||
| 10188 | |||
| 10189 | CVE_STATUS[CVE-2024-42068] = "fixed-version: Fixed from version 6.10" | ||
| 10190 | |||
| 10191 | CVE_STATUS[CVE-2024-42069] = "fixed-version: Fixed from version 6.10" | ||
| 10192 | |||
| 10193 | CVE_STATUS[CVE-2024-42070] = "fixed-version: Fixed from version 6.10" | ||
| 10194 | |||
| 10195 | CVE_STATUS[CVE-2024-42071] = "fixed-version: Fixed from version 6.10" | ||
| 10196 | |||
| 10197 | CVE_STATUS[CVE-2024-42072] = "fixed-version: Fixed from version 6.10" | ||
| 10198 | |||
| 10199 | CVE_STATUS[CVE-2024-42073] = "fixed-version: Fixed from version 6.10" | ||
| 10200 | |||
| 10201 | CVE_STATUS[CVE-2024-42074] = "fixed-version: Fixed from version 6.10" | ||
| 10202 | |||
| 10203 | CVE_STATUS[CVE-2024-42075] = "fixed-version: Fixed from version 6.10" | ||
| 10204 | |||
| 10205 | CVE_STATUS[CVE-2024-42076] = "fixed-version: Fixed from version 6.10" | ||
| 10206 | |||
| 10207 | CVE_STATUS[CVE-2024-42077] = "fixed-version: Fixed from version 6.10" | ||
| 10208 | |||
| 10209 | CVE_STATUS[CVE-2024-42078] = "fixed-version: Fixed from version 6.10" | ||
| 10210 | |||
| 10211 | CVE_STATUS[CVE-2024-42079] = "fixed-version: Fixed from version 6.10" | ||
| 10212 | |||
| 10213 | CVE_STATUS[CVE-2024-42080] = "fixed-version: Fixed from version 6.10" | ||
| 10214 | |||
| 10215 | CVE_STATUS[CVE-2024-42081] = "fixed-version: Fixed from version 6.10" | ||
| 10216 | |||
| 10217 | CVE_STATUS[CVE-2024-42082] = "fixed-version: Fixed from version 6.10" | ||
| 10218 | |||
| 10219 | CVE_STATUS[CVE-2024-42083] = "fixed-version: Fixed from version 6.10" | ||
| 10220 | |||
| 10221 | CVE_STATUS[CVE-2024-42084] = "fixed-version: Fixed from version 6.10" | ||
| 10222 | |||
| 10223 | CVE_STATUS[CVE-2024-42085] = "fixed-version: Fixed from version 6.10" | ||
| 10224 | |||
| 10225 | CVE_STATUS[CVE-2024-42086] = "fixed-version: Fixed from version 6.10" | ||
| 10226 | |||
| 10227 | CVE_STATUS[CVE-2024-42087] = "fixed-version: Fixed from version 6.10" | ||
| 10228 | |||
| 10229 | CVE_STATUS[CVE-2024-42088] = "fixed-version: Fixed from version 6.10" | ||
| 10230 | |||
| 10231 | CVE_STATUS[CVE-2024-42089] = "fixed-version: Fixed from version 6.10" | ||
| 10232 | |||
| 10233 | CVE_STATUS[CVE-2024-42090] = "fixed-version: Fixed from version 6.10" | ||
| 10234 | |||
| 10235 | CVE_STATUS[CVE-2024-42091] = "fixed-version: Fixed from version 6.10" | ||
| 10236 | |||
| 10237 | CVE_STATUS[CVE-2024-42092] = "fixed-version: Fixed from version 6.10" | ||
| 10238 | |||
| 10239 | CVE_STATUS[CVE-2024-42093] = "fixed-version: Fixed from version 6.10" | ||
| 10240 | |||
| 10241 | CVE_STATUS[CVE-2024-42094] = "fixed-version: Fixed from version 6.10" | ||
| 10242 | |||
| 10243 | CVE_STATUS[CVE-2024-42095] = "fixed-version: Fixed from version 6.10" | ||
| 10244 | |||
| 10245 | CVE_STATUS[CVE-2024-42096] = "fixed-version: Fixed from version 6.10" | ||
| 10246 | |||
| 10247 | CVE_STATUS[CVE-2024-42097] = "fixed-version: Fixed from version 6.10" | ||
| 10248 | |||
| 10249 | CVE_STATUS[CVE-2024-42098] = "fixed-version: Fixed from version 6.10" | ||
| 10250 | |||
| 10251 | CVE_STATUS[CVE-2024-42099] = "fixed-version: Fixed from version 6.10" | ||
| 10252 | |||
| 10253 | CVE_STATUS[CVE-2024-42100] = "fixed-version: Fixed from version 6.10" | ||
| 10254 | |||
| 10255 | CVE_STATUS[CVE-2024-42101] = "fixed-version: Fixed from version 6.10" | ||
| 10256 | |||
| 10257 | CVE_STATUS[CVE-2024-42102] = "fixed-version: Fixed from version 6.10" | ||
| 10258 | |||
| 10259 | CVE_STATUS[CVE-2024-42103] = "fixed-version: Fixed from version 6.9.9" | ||
| 10260 | |||
| 10261 | CVE_STATUS[CVE-2024-42104] = "fixed-version: Fixed from version 6.10" | ||
| 10262 | |||
| 10263 | CVE_STATUS[CVE-2024-42105] = "fixed-version: Fixed from version 6.10" | ||
| 10264 | |||
| 10265 | CVE_STATUS[CVE-2024-42106] = "fixed-version: Fixed from version 6.10" | ||
| 10266 | |||
| 10267 | CVE_STATUS[CVE-2024-42107] = "fixed-version: Fixed from version 6.10" | ||
| 10268 | |||
| 10269 | CVE_STATUS[CVE-2024-42108] = "fixed-version: Fixed from version 6.10" | ||
| 10270 | |||
| 10271 | CVE_STATUS[CVE-2024-42109] = "fixed-version: Fixed from version 6.10" | ||
| 10272 | |||
| 10273 | CVE_STATUS[CVE-2024-42110] = "fixed-version: Fixed from version 6.10" | ||
| 10274 | |||
| 10275 | CVE_STATUS[CVE-2024-42111] = "fixed-version: Fixed from version 6.10" | ||
| 10276 | |||
| 10277 | CVE_STATUS[CVE-2024-42112] = "fixed-version: Fixed from version 6.10" | ||
| 10278 | |||
| 10279 | CVE_STATUS[CVE-2024-42113] = "fixed-version: Fixed from version 6.10" | ||
| 10280 | |||
| 10281 | CVE_STATUS[CVE-2024-42114] = "fixed-version: Fixed from version 6.10" | ||
| 10282 | |||
| 10283 | CVE_STATUS[CVE-2024-42115] = "fixed-version: Fixed from version 6.10" | ||
| 10284 | |||
| 10285 | CVE_STATUS[CVE-2024-42117] = "fixed-version: Fixed from version 6.10" | ||
| 10286 | |||
| 10287 | CVE_STATUS[CVE-2024-42118] = "fixed-version: Fixed from version 6.10" | ||
| 10288 | |||
| 10289 | CVE_STATUS[CVE-2024-42119] = "fixed-version: Fixed from version 6.10" | ||
| 10290 | |||
| 10291 | CVE_STATUS[CVE-2024-42120] = "fixed-version: Fixed from version 6.10" | ||
| 10292 | |||
| 10293 | CVE_STATUS[CVE-2024-42121] = "fixed-version: Fixed from version 6.10" | ||
| 10294 | |||
| 10295 | CVE_STATUS[CVE-2024-42122] = "fixed-version: Fixed from version 6.10" | ||
| 10296 | |||
| 10297 | CVE_STATUS[CVE-2024-42123] = "fixed-version: Fixed from version 6.10" | ||
| 10298 | |||
| 10299 | CVE_STATUS[CVE-2024-42124] = "fixed-version: Fixed from version 6.10" | ||
| 10300 | |||
| 10301 | CVE_STATUS[CVE-2024-42125] = "fixed-version: Fixed from version 6.10" | ||
| 10302 | |||
| 10303 | CVE_STATUS[CVE-2024-42126] = "fixed-version: Fixed from version 6.10" | ||
| 10304 | |||
| 10305 | CVE_STATUS[CVE-2024-42127] = "fixed-version: Fixed from version 6.10" | ||
| 10306 | |||
| 10307 | CVE_STATUS[CVE-2024-42128] = "fixed-version: Fixed from version 6.10" | ||
| 10308 | |||
| 10309 | CVE_STATUS[CVE-2024-42129] = "fixed-version: Fixed from version 6.10" | ||
| 10310 | |||
| 10311 | CVE_STATUS[CVE-2024-42130] = "fixed-version: Fixed from version 6.10" | ||
| 10312 | |||
| 10313 | CVE_STATUS[CVE-2024-42131] = "fixed-version: Fixed from version 6.10" | ||
| 10314 | |||
| 10315 | CVE_STATUS[CVE-2024-42132] = "fixed-version: Fixed from version 6.10" | ||
| 10316 | |||
| 10317 | CVE_STATUS[CVE-2024-42133] = "fixed-version: Fixed from version 6.10" | ||
| 10318 | |||
| 10319 | CVE_STATUS[CVE-2024-42134] = "fixed-version: Fixed from version 6.10" | ||
| 10320 | |||
| 10321 | CVE_STATUS[CVE-2024-42135] = "fixed-version: Fixed from version 6.10" | ||
| 10322 | |||
| 10323 | CVE_STATUS[CVE-2024-42136] = "fixed-version: Fixed from version 6.10" | ||
| 10324 | |||
| 10325 | CVE_STATUS[CVE-2024-42137] = "fixed-version: Fixed from version 6.10" | ||
| 10326 | |||
| 10327 | CVE_STATUS[CVE-2024-42138] = "fixed-version: Fixed from version 6.10" | ||
| 10328 | |||
| 10329 | CVE_STATUS[CVE-2024-42139] = "fixed-version: Fixed from version 6.10" | ||
| 10330 | |||
| 10331 | CVE_STATUS[CVE-2024-42140] = "fixed-version: Fixed from version 6.10" | ||
| 10332 | |||
| 10333 | CVE_STATUS[CVE-2024-42141] = "fixed-version: Fixed from version 6.10" | ||
| 10334 | |||
| 10335 | CVE_STATUS[CVE-2024-42142] = "fixed-version: Fixed from version 6.10" | ||
| 10336 | |||
| 10337 | CVE_STATUS[CVE-2024-42144] = "fixed-version: Fixed from version 6.10" | ||
| 10338 | |||
| 10339 | CVE_STATUS[CVE-2024-42145] = "fixed-version: Fixed from version 6.10" | ||
| 10340 | |||
| 10341 | CVE_STATUS[CVE-2024-42146] = "fixed-version: Fixed from version 6.10" | ||
| 10342 | |||
| 10343 | CVE_STATUS[CVE-2024-42147] = "fixed-version: Fixed from version 6.10" | ||
| 10344 | |||
| 10345 | CVE_STATUS[CVE-2024-42148] = "fixed-version: Fixed from version 6.10" | ||
| 10346 | |||
| 10347 | CVE_STATUS[CVE-2024-42149] = "fixed-version: Fixed from version 6.10" | ||
| 10348 | |||
| 10349 | CVE_STATUS[CVE-2024-42150] = "fixed-version: Fixed from version 6.10" | ||
| 10350 | |||
| 10351 | CVE_STATUS[CVE-2024-42151] = "fixed-version: Fixed from version 6.10" | ||
| 10352 | |||
| 10353 | CVE_STATUS[CVE-2024-42152] = "fixed-version: Fixed from version 6.10" | ||
| 10354 | |||
| 10355 | CVE_STATUS[CVE-2024-42153] = "fixed-version: Fixed from version 6.10" | ||
| 10356 | |||
| 10357 | CVE_STATUS[CVE-2024-42154] = "fixed-version: Fixed from version 6.10" | ||
| 10358 | |||
| 10359 | CVE_STATUS[CVE-2024-42155] = "fixed-version: Fixed from version 6.10" | ||
| 10360 | |||
| 10361 | CVE_STATUS[CVE-2024-42156] = "fixed-version: Fixed from version 6.10" | ||
| 10362 | |||
| 10363 | CVE_STATUS[CVE-2024-42157] = "fixed-version: Fixed from version 6.10" | ||
| 10364 | |||
| 10365 | CVE_STATUS[CVE-2024-42158] = "fixed-version: Fixed from version 6.10" | ||
| 10366 | |||
| 10367 | CVE_STATUS[CVE-2024-42159] = "fixed-version: Fixed from version 6.10" | ||
| 10368 | |||
| 10369 | CVE_STATUS[CVE-2024-42160] = "fixed-version: Fixed from version 6.10" | ||
| 10370 | |||
| 10371 | CVE_STATUS[CVE-2024-42161] = "fixed-version: Fixed from version 6.10" | ||
| 10372 | |||
| 10373 | CVE_STATUS[CVE-2024-42162] = "fixed-version: Fixed from version 6.10" | ||
| 10374 | |||
| 10375 | CVE_STATUS[CVE-2024-42223] = "fixed-version: Fixed from version 6.10" | ||
| 10376 | |||
| 10377 | CVE_STATUS[CVE-2024-42224] = "fixed-version: Fixed from version 6.10" | ||
| 10378 | |||
| 10379 | CVE_STATUS[CVE-2024-42225] = "fixed-version: Fixed from version 6.10" | ||
| 10380 | |||
| 10381 | CVE_STATUS[CVE-2024-42227] = "fixed-version: Fixed from version 6.10" | ||
| 10382 | |||
| 10383 | CVE_STATUS[CVE-2024-42228] = "fixed-version: Fixed from version 6.10" | ||
| 10384 | |||
| 10385 | CVE_STATUS[CVE-2024-42229] = "fixed-version: Fixed from version 6.10" | ||
| 10386 | |||
| 10387 | CVE_STATUS[CVE-2024-42230] = "fixed-version: Fixed from version 6.10" | ||
| 10388 | |||
| 10389 | CVE_STATUS[CVE-2024-42231] = "fixed-version: Fixed from version 6.10" | ||
| 10390 | |||
| 10391 | CVE_STATUS[CVE-2024-42232] = "fixed-version: Fixed from version 6.10" | ||
| 10392 | |||
| 10393 | CVE_STATUS[CVE-2024-42233] = "fixed-version: Fixed from version 6.10" | ||
| 10394 | |||
| 10395 | CVE_STATUS[CVE-2024-42234] = "fixed-version: Fixed from version 6.10" | ||
| 10396 | |||
| 10397 | CVE_STATUS[CVE-2024-42235] = "fixed-version: Fixed from version 6.10" | ||
| 10398 | |||
| 10399 | CVE_STATUS[CVE-2024-42236] = "fixed-version: Fixed from version 6.10" | ||
| 10400 | |||
| 10401 | CVE_STATUS[CVE-2024-42237] = "fixed-version: Fixed from version 6.10" | ||
| 10402 | |||
| 10403 | CVE_STATUS[CVE-2024-42238] = "fixed-version: Fixed from version 6.10" | ||
| 10404 | |||
| 10405 | CVE_STATUS[CVE-2024-42239] = "fixed-version: Fixed from version 6.10" | ||
| 10406 | |||
| 10407 | CVE_STATUS[CVE-2024-42240] = "fixed-version: Fixed from version 6.10" | ||
| 10408 | |||
| 10409 | CVE_STATUS[CVE-2024-42241] = "fixed-version: Fixed from version 6.10" | ||
| 10410 | |||
| 10411 | CVE_STATUS[CVE-2024-42242] = "fixed-version: Fixed from version 6.10" | ||
| 10412 | |||
| 10413 | CVE_STATUS[CVE-2024-42243] = "fixed-version: Fixed from version 6.10" | ||
| 10414 | |||
| 10415 | CVE_STATUS[CVE-2024-42244] = "fixed-version: Fixed from version 6.10" | ||
| 10416 | |||
| 10417 | CVE_STATUS[CVE-2024-42245] = "fixed-version: Fixed from version 6.10" | ||
| 10418 | |||
| 10419 | CVE_STATUS[CVE-2024-42246] = "fixed-version: Fixed from version 6.10" | ||
| 10420 | |||
| 10421 | CVE_STATUS[CVE-2024-42247] = "fixed-version: Fixed from version 6.10" | ||
| 10422 | |||
| 10423 | CVE_STATUS[CVE-2024-42248] = "fixed-version: Fixed from version 6.10" | ||
| 10424 | |||
| 10425 | CVE_STATUS[CVE-2024-42249] = "fixed-version: Fixed from version 6.10" | ||
| 10426 | |||
| 10427 | CVE_STATUS[CVE-2024-42250] = "fixed-version: Fixed from version 6.10" | ||
| 10428 | |||
| 10429 | CVE_STATUS[CVE-2024-42251] = "fixed-version: Fixed from version 6.10" | ||
| 10430 | |||
| 10431 | CVE_STATUS[CVE-2024-42252] = "fixed-version: Fixed from version 6.10" | ||
| 10432 | |||
| 10433 | CVE_STATUS[CVE-2024-42253] = "fixed-version: Fixed from version 6.10" | ||
| 10434 | |||
| 10435 | CVE_STATUS[CVE-2024-42254] = "fixed-version: Fixed from version 6.11" | ||
| 10436 | |||
| 10437 | CVE_STATUS[CVE-2024-42255] = "fixed-version: Fixed from version 6.11" | ||
| 10438 | |||
| 10439 | CVE_STATUS[CVE-2024-42256] = "fixed-version: Fixed from version 6.11" | ||
| 10440 | |||
| 10441 | CVE_STATUS[CVE-2024-42257] = "fixed-version: Fixed from version 6.11" | ||
| 10442 | |||
| 10443 | CVE_STATUS[CVE-2024-42258] = "fixed-version: Fixed from version 6.11" | ||
| 10444 | |||
| 10445 | CVE_STATUS[CVE-2024-42259] = "fixed-version: Fixed from version 6.11" | ||
| 10446 | |||
| 10447 | CVE_STATUS[CVE-2024-42260] = "fixed-version: Fixed from version 6.11" | ||
| 10448 | |||
| 10449 | CVE_STATUS[CVE-2024-42261] = "fixed-version: Fixed from version 6.11" | ||
| 10450 | |||
| 10451 | CVE_STATUS[CVE-2024-42262] = "fixed-version: Fixed from version 6.11" | ||
| 10452 | |||
| 10453 | CVE_STATUS[CVE-2024-42263] = "fixed-version: Fixed from version 6.11" | ||
| 10454 | |||
| 10455 | CVE_STATUS[CVE-2024-42264] = "fixed-version: Fixed from version 6.11" | ||
| 10456 | |||
| 10457 | CVE_STATUS[CVE-2024-42265] = "fixed-version: Fixed from version 6.11" | ||
| 10458 | |||
| 10459 | CVE_STATUS[CVE-2024-42266] = "fixed-version: Fixed from version 6.11" | ||
| 10460 | |||
| 10461 | CVE_STATUS[CVE-2024-42267] = "fixed-version: Fixed from version 6.11" | ||
| 10462 | |||
| 10463 | CVE_STATUS[CVE-2024-42268] = "fixed-version: Fixed from version 6.11" | ||
| 10464 | |||
| 10465 | CVE_STATUS[CVE-2024-42269] = "fixed-version: Fixed from version 6.11" | ||
| 10466 | |||
| 10467 | CVE_STATUS[CVE-2024-42270] = "fixed-version: Fixed from version 6.11" | ||
| 10468 | |||
| 10469 | CVE_STATUS[CVE-2024-42271] = "fixed-version: Fixed from version 6.11" | ||
| 10470 | |||
| 10471 | CVE_STATUS[CVE-2024-42272] = "fixed-version: Fixed from version 6.11" | ||
| 10472 | |||
| 10473 | CVE_STATUS[CVE-2024-42273] = "fixed-version: Fixed from version 6.11" | ||
| 10474 | |||
| 10475 | CVE_STATUS[CVE-2024-42274] = "fixed-version: Fixed from version 6.11" | ||
| 10476 | |||
| 10477 | CVE_STATUS[CVE-2024-42275] = "fixed-version: Fixed from version 6.11" | ||
| 10478 | |||
| 10479 | CVE_STATUS[CVE-2024-42276] = "fixed-version: Fixed from version 6.11" | ||
| 10480 | |||
| 10481 | CVE_STATUS[CVE-2024-42277] = "fixed-version: Fixed from version 6.11" | ||
| 10482 | |||
| 10483 | CVE_STATUS[CVE-2024-42278] = "fixed-version: Fixed from version 6.11" | ||
| 10484 | |||
| 10485 | CVE_STATUS[CVE-2024-42279] = "fixed-version: Fixed from version 6.11" | ||
| 10486 | |||
| 10487 | CVE_STATUS[CVE-2024-42280] = "fixed-version: Fixed from version 6.11" | ||
| 10488 | |||
| 10489 | CVE_STATUS[CVE-2024-42281] = "fixed-version: Fixed from version 6.11" | ||
| 10490 | |||
| 10491 | CVE_STATUS[CVE-2024-42282] = "fixed-version: Fixed from version 6.11" | ||
| 10492 | |||
| 10493 | CVE_STATUS[CVE-2024-42283] = "fixed-version: Fixed from version 6.11" | ||
| 10494 | |||
| 10495 | CVE_STATUS[CVE-2024-42284] = "fixed-version: Fixed from version 6.11" | ||
| 10496 | |||
| 10497 | CVE_STATUS[CVE-2024-42285] = "fixed-version: Fixed from version 6.11" | ||
| 10498 | |||
| 10499 | CVE_STATUS[CVE-2024-42286] = "fixed-version: Fixed from version 6.11" | ||
| 10500 | |||
| 10501 | CVE_STATUS[CVE-2024-42287] = "fixed-version: Fixed from version 6.11" | ||
| 10502 | |||
| 10503 | CVE_STATUS[CVE-2024-42288] = "fixed-version: Fixed from version 6.11" | ||
| 10504 | |||
| 10505 | CVE_STATUS[CVE-2024-42289] = "fixed-version: Fixed from version 6.11" | ||
| 10506 | |||
| 10507 | CVE_STATUS[CVE-2024-42290] = "fixed-version: Fixed from version 6.11" | ||
| 10508 | |||
| 10509 | CVE_STATUS[CVE-2024-42291] = "fixed-version: Fixed from version 6.11" | ||
| 10510 | |||
| 10511 | CVE_STATUS[CVE-2024-42292] = "fixed-version: Fixed from version 6.11" | ||
| 10512 | |||
| 10513 | CVE_STATUS[CVE-2024-42293] = "fixed-version: Fixed from version 6.11" | ||
| 10514 | |||
| 10515 | CVE_STATUS[CVE-2024-42294] = "fixed-version: Fixed from version 6.11" | ||
| 10516 | |||
| 10517 | CVE_STATUS[CVE-2024-42295] = "fixed-version: Fixed from version 6.11" | ||
| 10518 | |||
| 10519 | CVE_STATUS[CVE-2024-42296] = "fixed-version: Fixed from version 6.11" | ||
| 10520 | |||
| 10521 | CVE_STATUS[CVE-2024-42297] = "fixed-version: Fixed from version 6.11" | ||
| 10522 | |||
| 10523 | CVE_STATUS[CVE-2024-42298] = "fixed-version: Fixed from version 6.11" | ||
| 10524 | |||
| 10525 | CVE_STATUS[CVE-2024-42299] = "fixed-version: Fixed from version 6.11" | ||
| 10526 | |||
| 10527 | CVE_STATUS[CVE-2024-42300] = "fixed-version: Fixed from version 6.11" | ||
| 10528 | |||
| 10529 | CVE_STATUS[CVE-2024-42301] = "fixed-version: Fixed from version 6.11" | ||
| 10530 | |||
| 10531 | CVE_STATUS[CVE-2024-42302] = "fixed-version: Fixed from version 6.11" | ||
| 10532 | |||
| 10533 | CVE_STATUS[CVE-2024-42303] = "fixed-version: Fixed from version 6.11" | ||
| 10534 | |||
| 10535 | CVE_STATUS[CVE-2024-42304] = "fixed-version: Fixed from version 6.11" | ||
| 10536 | |||
| 10537 | CVE_STATUS[CVE-2024-42305] = "fixed-version: Fixed from version 6.11" | ||
| 10538 | |||
| 10539 | CVE_STATUS[CVE-2024-42306] = "fixed-version: Fixed from version 6.11" | ||
| 10540 | |||
| 10541 | CVE_STATUS[CVE-2024-42307] = "fixed-version: Fixed from version 6.11" | ||
| 10542 | |||
| 10543 | CVE_STATUS[CVE-2024-42309] = "fixed-version: Fixed from version 6.11" | ||
| 10544 | |||
| 10545 | CVE_STATUS[CVE-2024-42310] = "fixed-version: Fixed from version 6.11" | ||
| 10546 | |||
| 10547 | CVE_STATUS[CVE-2024-42311] = "fixed-version: Fixed from version 6.11" | ||
| 10548 | |||
| 10549 | CVE_STATUS[CVE-2024-42312] = "fixed-version: Fixed from version 6.11" | ||
| 10550 | |||
| 10551 | CVE_STATUS[CVE-2024-42313] = "fixed-version: Fixed from version 6.11" | ||
| 10552 | |||
| 10553 | CVE_STATUS[CVE-2024-42314] = "fixed-version: Fixed from version 6.11" | ||
| 10554 | |||
| 10555 | CVE_STATUS[CVE-2024-42315] = "fixed-version: Fixed from version 6.11" | ||
| 10556 | |||
| 10557 | CVE_STATUS[CVE-2024-42316] = "fixed-version: Fixed from version 6.11" | ||
| 10558 | |||
| 10559 | CVE_STATUS[CVE-2024-42317] = "fixed-version: Fixed from version 6.11" | ||
| 10560 | |||
| 10561 | CVE_STATUS[CVE-2024-42318] = "fixed-version: Fixed from version 6.11" | ||
| 10562 | |||
| 10563 | CVE_STATUS[CVE-2024-42319] = "fixed-version: Fixed from version 6.11" | ||
| 10564 | |||
| 10565 | CVE_STATUS[CVE-2024-42320] = "fixed-version: Fixed from version 6.11" | ||
| 10566 | |||
| 10567 | CVE_STATUS[CVE-2024-42321] = "fixed-version: Fixed from version 6.11" | ||
| 10568 | |||
| 10569 | CVE_STATUS[CVE-2024-42322] = "fixed-version: Fixed from version 6.11" | ||
| 10570 | |||
| 10571 | CVE_STATUS[CVE-2024-43098] = "fixed-version: Fixed from version 6.13" | ||
| 10572 | |||
| 10573 | CVE_STATUS[CVE-2024-43815] = "fixed-version: Fixed from version 6.11" | ||
| 10574 | |||
| 10575 | CVE_STATUS[CVE-2024-43816] = "fixed-version: Fixed from version 6.11" | ||
| 10576 | |||
| 10577 | CVE_STATUS[CVE-2024-43817] = "fixed-version: Fixed from version 6.11" | ||
| 10578 | |||
| 10579 | CVE_STATUS[CVE-2024-43818] = "fixed-version: Fixed from version 6.11" | ||
| 10580 | |||
| 10581 | CVE_STATUS[CVE-2024-43819] = "fixed-version: Fixed from version 6.11" | ||
| 10582 | |||
| 10583 | CVE_STATUS[CVE-2024-43820] = "fixed-version: Fixed from version 6.11" | ||
| 10584 | |||
| 10585 | CVE_STATUS[CVE-2024-43821] = "fixed-version: Fixed from version 6.11" | ||
| 10586 | |||
| 10587 | CVE_STATUS[CVE-2024-43822] = "fixed-version: Fixed from version 6.11" | ||
| 10588 | |||
| 10589 | CVE_STATUS[CVE-2024-43823] = "fixed-version: Fixed from version 6.11" | ||
| 10590 | |||
| 10591 | CVE_STATUS[CVE-2024-43824] = "fixed-version: Fixed from version 6.11" | ||
| 10592 | |||
| 10593 | CVE_STATUS[CVE-2024-43825] = "fixed-version: Fixed from version 6.11" | ||
| 10594 | |||
| 10595 | CVE_STATUS[CVE-2024-43826] = "fixed-version: Fixed from version 6.11" | ||
| 10596 | |||
| 10597 | CVE_STATUS[CVE-2024-43827] = "fixed-version: Fixed from version 6.11" | ||
| 10598 | |||
| 10599 | CVE_STATUS[CVE-2024-43828] = "fixed-version: Fixed from version 6.11" | ||
| 10600 | |||
| 10601 | CVE_STATUS[CVE-2024-43829] = "fixed-version: Fixed from version 6.11" | ||
| 10602 | |||
| 10603 | CVE_STATUS[CVE-2024-43830] = "fixed-version: Fixed from version 6.11" | ||
| 10604 | |||
| 10605 | CVE_STATUS[CVE-2024-43831] = "fixed-version: Fixed from version 6.11" | ||
| 10606 | |||
| 10607 | CVE_STATUS[CVE-2024-43832] = "fixed-version: Fixed from version 6.11" | ||
| 10608 | |||
| 10609 | CVE_STATUS[CVE-2024-43833] = "fixed-version: Fixed from version 6.11" | ||
| 10610 | |||
| 10611 | CVE_STATUS[CVE-2024-43834] = "fixed-version: Fixed from version 6.11" | ||
| 10612 | |||
| 10613 | CVE_STATUS[CVE-2024-43835] = "fixed-version: Fixed from version 6.11" | ||
| 10614 | |||
| 10615 | CVE_STATUS[CVE-2024-43836] = "fixed-version: Fixed from version 6.11" | ||
| 10616 | |||
| 10617 | CVE_STATUS[CVE-2024-43837] = "fixed-version: Fixed from version 6.11" | ||
| 10618 | |||
| 10619 | CVE_STATUS[CVE-2024-43838] = "fixed-version: Fixed from version 6.11" | ||
| 10620 | |||
| 10621 | CVE_STATUS[CVE-2024-43839] = "fixed-version: Fixed from version 6.11" | ||
| 10622 | |||
| 10623 | CVE_STATUS[CVE-2024-43840] = "fixed-version: Fixed from version 6.11" | ||
| 10624 | |||
| 10625 | CVE_STATUS[CVE-2024-43841] = "fixed-version: Fixed from version 6.11" | ||
| 10626 | |||
| 10627 | CVE_STATUS[CVE-2024-43842] = "fixed-version: Fixed from version 6.11" | ||
| 10628 | |||
| 10629 | CVE_STATUS[CVE-2024-43843] = "fixed-version: Fixed from version 6.11" | ||
| 10630 | |||
| 10631 | CVE_STATUS[CVE-2024-43844] = "fixed-version: Fixed from version 6.11" | ||
| 10632 | |||
| 10633 | CVE_STATUS[CVE-2024-43845] = "fixed-version: Fixed from version 6.11" | ||
| 10634 | |||
| 10635 | CVE_STATUS[CVE-2024-43846] = "fixed-version: Fixed from version 6.11" | ||
| 10636 | |||
| 10637 | CVE_STATUS[CVE-2024-43847] = "fixed-version: Fixed from version 6.11" | ||
| 10638 | |||
| 10639 | CVE_STATUS[CVE-2024-43848] = "fixed-version: Fixed from version 6.11" | ||
| 10640 | |||
| 10641 | CVE_STATUS[CVE-2024-43849] = "fixed-version: Fixed from version 6.11" | ||
| 10642 | |||
| 10643 | CVE_STATUS[CVE-2024-43850] = "fixed-version: Fixed from version 6.11" | ||
| 10644 | |||
| 10645 | CVE_STATUS[CVE-2024-43851] = "fixed-version: Fixed from version 6.11" | ||
| 10646 | |||
| 10647 | CVE_STATUS[CVE-2024-43852] = "fixed-version: Fixed from version 6.11" | ||
| 10648 | |||
| 10649 | CVE_STATUS[CVE-2024-43853] = "fixed-version: Fixed from version 6.11" | ||
| 10650 | |||
| 10651 | CVE_STATUS[CVE-2024-43854] = "fixed-version: Fixed from version 6.11" | ||
| 10652 | |||
| 10653 | CVE_STATUS[CVE-2024-43855] = "fixed-version: Fixed from version 6.11" | ||
| 10654 | |||
| 10655 | CVE_STATUS[CVE-2024-43856] = "fixed-version: Fixed from version 6.11" | ||
| 10656 | |||
| 10657 | CVE_STATUS[CVE-2024-43857] = "fixed-version: Fixed from version 6.11" | ||
| 10658 | |||
| 10659 | CVE_STATUS[CVE-2024-43858] = "fixed-version: Fixed from version 6.11" | ||
| 10660 | |||
| 10661 | CVE_STATUS[CVE-2024-43859] = "fixed-version: Fixed from version 6.11" | ||
| 10662 | |||
| 10663 | CVE_STATUS[CVE-2024-43860] = "fixed-version: Fixed from version 6.11" | ||
| 10664 | |||
| 10665 | CVE_STATUS[CVE-2024-43861] = "fixed-version: Fixed from version 6.11" | ||
| 10666 | |||
| 10667 | CVE_STATUS[CVE-2024-43862] = "fixed-version: Fixed from version 6.11" | ||
| 10668 | |||
| 10669 | CVE_STATUS[CVE-2024-43863] = "fixed-version: Fixed from version 6.11" | ||
| 10670 | |||
| 10671 | CVE_STATUS[CVE-2024-43864] = "fixed-version: Fixed from version 6.11" | ||
| 10672 | |||
| 10673 | CVE_STATUS[CVE-2024-43865] = "fixed-version: Fixed from version 6.11" | ||
| 10674 | |||
| 10675 | CVE_STATUS[CVE-2024-43866] = "fixed-version: Fixed from version 6.11" | ||
| 10676 | |||
| 10677 | CVE_STATUS[CVE-2024-43867] = "fixed-version: Fixed from version 6.11" | ||
| 10678 | |||
| 10679 | CVE_STATUS[CVE-2024-43868] = "fixed-version: Fixed from version 6.11" | ||
| 10680 | |||
| 10681 | CVE_STATUS[CVE-2024-43869] = "fixed-version: Fixed from version 6.11" | ||
| 10682 | |||
| 10683 | CVE_STATUS[CVE-2024-43870] = "fixed-version: Fixed from version 6.11" | ||
| 10684 | |||
| 10685 | CVE_STATUS[CVE-2024-43871] = "fixed-version: Fixed from version 6.11" | ||
| 10686 | |||
| 10687 | CVE_STATUS[CVE-2024-43872] = "fixed-version: Fixed from version 6.11" | ||
| 10688 | |||
| 10689 | CVE_STATUS[CVE-2024-43873] = "fixed-version: Fixed from version 6.11" | ||
| 10690 | |||
| 10691 | CVE_STATUS[CVE-2024-43874] = "fixed-version: Fixed from version 6.11" | ||
| 10692 | |||
| 10693 | CVE_STATUS[CVE-2024-43875] = "fixed-version: Fixed from version 6.11" | ||
| 10694 | |||
| 10695 | CVE_STATUS[CVE-2024-43876] = "fixed-version: Fixed from version 6.11" | ||
| 10696 | |||
| 10697 | CVE_STATUS[CVE-2024-43877] = "fixed-version: Fixed from version 6.11" | ||
| 10698 | |||
| 10699 | CVE_STATUS[CVE-2024-43878] = "fixed-version: Fixed from version 6.11" | ||
| 10700 | |||
| 10701 | CVE_STATUS[CVE-2024-43879] = "fixed-version: Fixed from version 6.11" | ||
| 10702 | |||
| 10703 | CVE_STATUS[CVE-2024-43880] = "fixed-version: Fixed from version 6.11" | ||
| 10704 | |||
| 10705 | CVE_STATUS[CVE-2024-43881] = "fixed-version: Fixed from version 6.11" | ||
| 10706 | |||
| 10707 | CVE_STATUS[CVE-2024-43882] = "fixed-version: Fixed from version 6.11" | ||
| 10708 | |||
| 10709 | CVE_STATUS[CVE-2024-43883] = "fixed-version: Fixed from version 6.11" | ||
| 10710 | |||
| 10711 | CVE_STATUS[CVE-2024-43884] = "fixed-version: Fixed from version 6.11" | ||
| 10712 | |||
| 10713 | CVE_STATUS[CVE-2024-43886] = "fixed-version: Fixed from version 6.11" | ||
| 10714 | |||
| 10715 | CVE_STATUS[CVE-2024-43887] = "fixed-version: Fixed from version 6.11" | ||
| 10716 | |||
| 10717 | CVE_STATUS[CVE-2024-43888] = "fixed-version: Fixed from version 6.11" | ||
| 10718 | |||
| 10719 | CVE_STATUS[CVE-2024-43889] = "fixed-version: Fixed from version 6.11" | ||
| 10720 | |||
| 10721 | CVE_STATUS[CVE-2024-43890] = "fixed-version: Fixed from version 6.11" | ||
| 10722 | |||
| 10723 | CVE_STATUS[CVE-2024-43891] = "fixed-version: Fixed from version 6.11" | ||
| 10724 | |||
| 10725 | CVE_STATUS[CVE-2024-43892] = "fixed-version: Fixed from version 6.11" | ||
| 10726 | |||
| 10727 | CVE_STATUS[CVE-2024-43893] = "fixed-version: Fixed from version 6.11" | ||
| 10728 | |||
| 10729 | CVE_STATUS[CVE-2024-43894] = "fixed-version: Fixed from version 6.11" | ||
| 10730 | |||
| 10731 | CVE_STATUS[CVE-2024-43895] = "fixed-version: Fixed from version 6.11" | ||
| 10732 | |||
| 10733 | CVE_STATUS[CVE-2024-43896] = "fixed-version: Fixed from version 6.11" | ||
| 10734 | |||
| 10735 | CVE_STATUS[CVE-2024-43897] = "fixed-version: Fixed from version 6.10.5" | ||
| 10736 | |||
| 10737 | CVE_STATUS[CVE-2024-43899] = "fixed-version: Fixed from version 6.11" | ||
| 10738 | |||
| 10739 | CVE_STATUS[CVE-2024-43900] = "fixed-version: Fixed from version 6.11" | ||
| 10740 | |||
| 10741 | CVE_STATUS[CVE-2024-43901] = "fixed-version: Fixed from version 6.11" | ||
| 10742 | |||
| 10743 | CVE_STATUS[CVE-2024-43902] = "fixed-version: Fixed from version 6.11" | ||
| 10744 | |||
| 10745 | CVE_STATUS[CVE-2024-43904] = "fixed-version: Fixed from version 6.11" | ||
| 10746 | |||
| 10747 | CVE_STATUS[CVE-2024-43905] = "fixed-version: Fixed from version 6.11" | ||
| 10748 | |||
| 10749 | CVE_STATUS[CVE-2024-43906] = "fixed-version: Fixed from version 6.11" | ||
| 10750 | |||
| 10751 | CVE_STATUS[CVE-2024-43907] = "fixed-version: Fixed from version 6.11" | ||
| 10752 | |||
| 10753 | CVE_STATUS[CVE-2024-43908] = "fixed-version: Fixed from version 6.11" | ||
| 10754 | |||
| 10755 | CVE_STATUS[CVE-2024-43909] = "fixed-version: Fixed from version 6.11" | ||
| 10756 | |||
| 10757 | CVE_STATUS[CVE-2024-43910] = "fixed-version: Fixed from version 6.11" | ||
| 10758 | |||
| 10759 | CVE_STATUS[CVE-2024-43911] = "fixed-version: Fixed from version 6.11" | ||
| 10760 | |||
| 10761 | CVE_STATUS[CVE-2024-43912] = "fixed-version: Fixed from version 6.11" | ||
| 10762 | |||
| 10763 | CVE_STATUS[CVE-2024-43913] = "fixed-version: Fixed from version 6.11" | ||
| 10764 | |||
| 10765 | CVE_STATUS[CVE-2024-43914] = "fixed-version: Fixed from version 6.11" | ||
| 10766 | |||
| 10767 | CVE_STATUS[CVE-2024-44931] = "fixed-version: Fixed from version 6.11" | ||
| 10768 | |||
| 10769 | CVE_STATUS[CVE-2024-44932] = "fixed-version: Fixed from version 6.11" | ||
| 10770 | |||
| 10771 | CVE_STATUS[CVE-2024-44933] = "fixed-version: Fixed from version 6.10.5" | ||
| 10772 | |||
| 10773 | CVE_STATUS[CVE-2024-44934] = "fixed-version: Fixed from version 6.11" | ||
| 10774 | |||
| 10775 | CVE_STATUS[CVE-2024-44935] = "fixed-version: Fixed from version 6.11" | ||
| 10776 | |||
| 10777 | CVE_STATUS[CVE-2024-44936] = "fixed-version: Fixed from version 6.11" | ||
| 10778 | |||
| 10779 | CVE_STATUS[CVE-2024-44937] = "fixed-version: Fixed from version 6.11" | ||
| 10780 | |||
| 10781 | CVE_STATUS[CVE-2024-44938] = "fixed-version: Fixed from version 6.11" | ||
| 10782 | |||
| 10783 | CVE_STATUS[CVE-2024-44939] = "fixed-version: Fixed from version 6.11" | ||
| 10784 | |||
| 10785 | CVE_STATUS[CVE-2024-44940] = "fixed-version: Fixed from version 6.11" | ||
| 10786 | |||
| 10787 | CVE_STATUS[CVE-2024-44941] = "fixed-version: Fixed from version 6.11" | ||
| 10788 | |||
| 10789 | CVE_STATUS[CVE-2024-44942] = "fixed-version: Fixed from version 6.11" | ||
| 10790 | |||
| 10791 | CVE_STATUS[CVE-2024-44943] = "fixed-version: Fixed from version 6.10" | ||
| 10792 | |||
| 10793 | CVE_STATUS[CVE-2024-44944] = "fixed-version: Fixed from version 6.11" | ||
| 10794 | |||
| 10795 | CVE_STATUS[CVE-2024-44945] = "fixed-version: Fixed from version 6.11" | ||
| 10796 | |||
| 10797 | CVE_STATUS[CVE-2024-44946] = "fixed-version: Fixed from version 6.11" | ||
| 10798 | |||
| 10799 | CVE_STATUS[CVE-2024-44947] = "fixed-version: Fixed from version 6.11" | ||
| 10800 | |||
| 10801 | CVE_STATUS[CVE-2024-44948] = "fixed-version: Fixed from version 6.11" | ||
| 10802 | |||
| 10803 | CVE_STATUS[CVE-2024-44949] = "fixed-version: Fixed from version 6.11" | ||
| 10804 | |||
| 10805 | CVE_STATUS[CVE-2024-44950] = "fixed-version: Fixed from version 6.11" | ||
| 10806 | |||
| 10807 | CVE_STATUS[CVE-2024-44951] = "fixed-version: Fixed from version 6.11" | ||
| 10808 | |||
| 10809 | CVE_STATUS[CVE-2024-44953] = "fixed-version: Fixed from version 6.11" | ||
| 10810 | |||
| 10811 | CVE_STATUS[CVE-2024-44954] = "fixed-version: Fixed from version 6.11" | ||
| 10812 | |||
| 10813 | CVE_STATUS[CVE-2024-44956] = "fixed-version: Fixed from version 6.11" | ||
| 10814 | |||
| 10815 | CVE_STATUS[CVE-2024-44957] = "fixed-version: Fixed from version 6.11" | ||
| 10816 | |||
| 10817 | CVE_STATUS[CVE-2024-44958] = "fixed-version: Fixed from version 6.11" | ||
| 10818 | |||
| 10819 | CVE_STATUS[CVE-2024-44959] = "fixed-version: Fixed from version 6.11" | ||
| 10820 | |||
| 10821 | CVE_STATUS[CVE-2024-44960] = "fixed-version: Fixed from version 6.11" | ||
| 10822 | |||
| 10823 | CVE_STATUS[CVE-2024-44961] = "fixed-version: Fixed from version 6.11" | ||
| 10824 | |||
| 10825 | CVE_STATUS[CVE-2024-44962] = "fixed-version: Fixed from version 6.11" | ||
| 10826 | |||
| 10827 | CVE_STATUS[CVE-2024-44963] = "fixed-version: Fixed from version 6.11" | ||
| 10828 | |||
| 10829 | CVE_STATUS[CVE-2024-44964] = "fixed-version: Fixed from version 6.11" | ||
| 10830 | |||
| 10831 | CVE_STATUS[CVE-2024-44965] = "fixed-version: Fixed from version 6.11" | ||
| 10832 | |||
| 10833 | CVE_STATUS[CVE-2024-44966] = "fixed-version: Fixed from version 6.11" | ||
| 10834 | |||
| 10835 | CVE_STATUS[CVE-2024-44967] = "fixed-version: Fixed from version 6.11" | ||
| 10836 | |||
| 10837 | CVE_STATUS[CVE-2024-44968] = "fixed-version: Fixed from version 6.10.5" | ||
| 10838 | |||
| 10839 | CVE_STATUS[CVE-2024-44969] = "fixed-version: Fixed from version 6.11" | ||
| 10840 | |||
| 10841 | CVE_STATUS[CVE-2024-44970] = "fixed-version: Fixed from version 6.11" | ||
| 10842 | |||
| 10843 | CVE_STATUS[CVE-2024-44971] = "fixed-version: Fixed from version 6.11" | ||
| 10844 | |||
| 10845 | CVE_STATUS[CVE-2024-44972] = "fixed-version: Fixed from version 6.11" | ||
| 10846 | |||
| 10847 | CVE_STATUS[CVE-2024-44973] = "fixed-version: Fixed from version 6.11" | ||
| 10848 | |||
| 10849 | CVE_STATUS[CVE-2024-44974] = "fixed-version: Fixed from version 6.11" | ||
| 10850 | |||
| 10851 | CVE_STATUS[CVE-2024-44975] = "fixed-version: Fixed from version 6.11" | ||
| 10852 | |||
| 10853 | CVE_STATUS[CVE-2024-44976] = "fixed-version: Fixed from version 6.11" | ||
| 10854 | |||
| 10855 | CVE_STATUS[CVE-2024-44977] = "fixed-version: Fixed from version 6.11" | ||
| 10856 | |||
| 10857 | CVE_STATUS[CVE-2024-44978] = "fixed-version: Fixed from version 6.11" | ||
| 10858 | |||
| 10859 | CVE_STATUS[CVE-2024-44979] = "fixed-version: Fixed from version 6.11" | ||
| 10860 | |||
| 10861 | CVE_STATUS[CVE-2024-44980] = "fixed-version: Fixed from version 6.11" | ||
| 10862 | |||
| 10863 | CVE_STATUS[CVE-2024-44981] = "fixed-version: Fixed from version 6.11" | ||
| 10864 | |||
| 10865 | CVE_STATUS[CVE-2024-44982] = "fixed-version: Fixed from version 6.11" | ||
| 10866 | |||
| 10867 | CVE_STATUS[CVE-2024-44983] = "fixed-version: Fixed from version 6.11" | ||
| 10868 | |||
| 10869 | CVE_STATUS[CVE-2024-44984] = "fixed-version: Fixed from version 6.11" | ||
| 10870 | |||
| 10871 | CVE_STATUS[CVE-2024-44985] = "fixed-version: Fixed from version 6.11" | ||
| 10872 | |||
| 10873 | CVE_STATUS[CVE-2024-44986] = "fixed-version: Fixed from version 6.11" | ||
| 10874 | |||
| 10875 | CVE_STATUS[CVE-2024-44987] = "fixed-version: Fixed from version 6.11" | ||
| 10876 | |||
| 10877 | CVE_STATUS[CVE-2024-44988] = "fixed-version: Fixed from version 6.11" | ||
| 10878 | |||
| 10879 | CVE_STATUS[CVE-2024-44989] = "fixed-version: Fixed from version 6.11" | ||
| 10880 | |||
| 10881 | CVE_STATUS[CVE-2024-44990] = "fixed-version: Fixed from version 6.11" | ||
| 10882 | |||
| 10883 | CVE_STATUS[CVE-2024-44991] = "fixed-version: Fixed from version 6.11" | ||
| 10884 | |||
| 10885 | CVE_STATUS[CVE-2024-44992] = "fixed-version: Fixed from version 6.11" | ||
| 10886 | |||
| 10887 | CVE_STATUS[CVE-2024-44993] = "fixed-version: Fixed from version 6.11" | ||
| 10888 | |||
| 10889 | CVE_STATUS[CVE-2024-44994] = "fixed-version: Fixed from version 6.11" | ||
| 10890 | |||
| 10891 | CVE_STATUS[CVE-2024-44995] = "fixed-version: Fixed from version 6.11" | ||
| 10892 | |||
| 10893 | CVE_STATUS[CVE-2024-44996] = "fixed-version: Fixed from version 6.11" | ||
| 10894 | |||
| 10895 | CVE_STATUS[CVE-2024-44997] = "fixed-version: Fixed from version 6.11" | ||
| 10896 | |||
| 10897 | CVE_STATUS[CVE-2024-44998] = "fixed-version: Fixed from version 6.11" | ||
| 10898 | |||
| 10899 | CVE_STATUS[CVE-2024-44999] = "fixed-version: Fixed from version 6.11" | ||
| 10900 | |||
| 10901 | CVE_STATUS[CVE-2024-45000] = "fixed-version: Fixed from version 6.11" | ||
| 10902 | |||
| 10903 | CVE_STATUS[CVE-2024-45001] = "fixed-version: Fixed from version 6.11" | ||
| 10904 | |||
| 10905 | CVE_STATUS[CVE-2024-45002] = "fixed-version: Fixed from version 6.11" | ||
| 10906 | |||
| 10907 | CVE_STATUS[CVE-2024-45003] = "fixed-version: Fixed from version 6.11" | ||
| 10908 | |||
| 10909 | CVE_STATUS[CVE-2024-45004] = "fixed-version: Fixed from version 6.11" | ||
| 10910 | |||
| 10911 | CVE_STATUS[CVE-2024-45005] = "fixed-version: Fixed from version 6.11" | ||
| 10912 | |||
| 10913 | CVE_STATUS[CVE-2024-45006] = "fixed-version: Fixed from version 6.11" | ||
| 10914 | |||
| 10915 | CVE_STATUS[CVE-2024-45007] = "fixed-version: Fixed from version 6.11" | ||
| 10916 | |||
| 10917 | CVE_STATUS[CVE-2024-45008] = "fixed-version: Fixed from version 6.11" | ||
| 10918 | |||
| 10919 | CVE_STATUS[CVE-2024-45009] = "fixed-version: Fixed from version 6.11" | ||
| 10920 | |||
| 10921 | CVE_STATUS[CVE-2024-45010] = "fixed-version: Fixed from version 6.11" | ||
| 10922 | |||
| 10923 | CVE_STATUS[CVE-2024-45011] = "fixed-version: Fixed from version 6.11" | ||
| 10924 | |||
| 10925 | CVE_STATUS[CVE-2024-45012] = "fixed-version: Fixed from version 6.11" | ||
| 10926 | |||
| 10927 | CVE_STATUS[CVE-2024-45013] = "fixed-version: Fixed from version 6.11" | ||
| 10928 | |||
| 10929 | CVE_STATUS[CVE-2024-45014] = "fixed-version: Fixed from version 6.11" | ||
| 10930 | |||
| 10931 | CVE_STATUS[CVE-2024-45015] = "fixed-version: Fixed from version 6.11" | ||
| 10932 | |||
| 10933 | CVE_STATUS[CVE-2024-45016] = "fixed-version: Fixed from version 6.11" | ||
| 10934 | |||
| 10935 | CVE_STATUS[CVE-2024-45017] = "fixed-version: Fixed from version 6.11" | ||
| 10936 | |||
| 10937 | CVE_STATUS[CVE-2024-45018] = "fixed-version: Fixed from version 6.11" | ||
| 10938 | |||
| 10939 | CVE_STATUS[CVE-2024-45019] = "fixed-version: Fixed from version 6.11" | ||
| 10940 | |||
| 10941 | CVE_STATUS[CVE-2024-45020] = "fixed-version: Fixed from version 6.11" | ||
| 10942 | |||
| 10943 | CVE_STATUS[CVE-2024-45021] = "fixed-version: Fixed from version 6.11" | ||
| 10944 | |||
| 10945 | CVE_STATUS[CVE-2024-45022] = "fixed-version: Fixed from version 6.11" | ||
| 10946 | |||
| 10947 | CVE_STATUS[CVE-2024-45023] = "fixed-version: Fixed from version 6.11" | ||
| 10948 | |||
| 10949 | CVE_STATUS[CVE-2024-45024] = "fixed-version: Fixed from version 6.11" | ||
| 10950 | |||
| 10951 | CVE_STATUS[CVE-2024-45025] = "fixed-version: Fixed from version 6.11" | ||
| 10952 | |||
| 10953 | CVE_STATUS[CVE-2024-45026] = "fixed-version: Fixed from version 6.11" | ||
| 10954 | |||
| 10955 | CVE_STATUS[CVE-2024-45027] = "fixed-version: Fixed from version 6.11" | ||
| 10956 | |||
| 10957 | CVE_STATUS[CVE-2024-45028] = "fixed-version: Fixed from version 6.11" | ||
| 10958 | |||
| 10959 | CVE_STATUS[CVE-2024-45029] = "fixed-version: Fixed from version 6.11" | ||
| 10960 | |||
| 10961 | CVE_STATUS[CVE-2024-45030] = "fixed-version: Fixed from version 6.11" | ||
| 10962 | |||
| 10963 | CVE_STATUS[CVE-2024-45828] = "fixed-version: Fixed from version 6.13" | ||
| 10964 | |||
| 10965 | CVE_STATUS[CVE-2024-46672] = "fixed-version: Fixed from version 6.11" | ||
| 10966 | |||
| 10967 | CVE_STATUS[CVE-2024-46673] = "fixed-version: Fixed from version 6.11" | ||
| 10968 | |||
| 10969 | CVE_STATUS[CVE-2024-46674] = "fixed-version: Fixed from version 6.11" | ||
| 10970 | |||
| 10971 | CVE_STATUS[CVE-2024-46675] = "fixed-version: Fixed from version 6.11" | ||
| 10972 | |||
| 10973 | CVE_STATUS[CVE-2024-46676] = "fixed-version: Fixed from version 6.11" | ||
| 10974 | |||
| 10975 | CVE_STATUS[CVE-2024-46677] = "fixed-version: Fixed from version 6.11" | ||
| 10976 | |||
| 10977 | CVE_STATUS[CVE-2024-46678] = "fixed-version: Fixed from version 6.11" | ||
| 10978 | |||
| 10979 | CVE_STATUS[CVE-2024-46679] = "fixed-version: Fixed from version 6.11" | ||
| 10980 | |||
| 10981 | CVE_STATUS[CVE-2024-46680] = "fixed-version: Fixed from version 6.11" | ||
| 10982 | |||
| 10983 | CVE_STATUS[CVE-2024-46681] = "fixed-version: Fixed from version 6.11" | ||
| 10984 | |||
| 10985 | CVE_STATUS[CVE-2024-46682] = "fixed-version: Fixed from version 6.11" | ||
| 10986 | |||
| 10987 | CVE_STATUS[CVE-2024-46683] = "fixed-version: Fixed from version 6.11" | ||
| 10988 | |||
| 10989 | CVE_STATUS[CVE-2024-46684] = "fixed-version: Fixed from version 6.11" | ||
| 10990 | |||
| 10991 | CVE_STATUS[CVE-2024-46685] = "fixed-version: Fixed from version 6.11" | ||
| 10992 | |||
| 10993 | CVE_STATUS[CVE-2024-46686] = "fixed-version: Fixed from version 6.11" | ||
| 10994 | |||
| 10995 | CVE_STATUS[CVE-2024-46687] = "fixed-version: Fixed from version 6.11" | ||
| 10996 | |||
| 10997 | CVE_STATUS[CVE-2024-46688] = "fixed-version: Fixed from version 6.11" | ||
| 10998 | |||
| 10999 | CVE_STATUS[CVE-2024-46689] = "fixed-version: Fixed from version 6.11" | ||
| 11000 | |||
| 11001 | CVE_STATUS[CVE-2024-46690] = "fixed-version: Fixed from version 6.11" | ||
| 11002 | |||
| 11003 | CVE_STATUS[CVE-2024-46691] = "fixed-version: Fixed from version 6.11" | ||
| 11004 | |||
| 11005 | CVE_STATUS[CVE-2024-46692] = "fixed-version: Fixed from version 6.11" | ||
| 11006 | |||
| 11007 | CVE_STATUS[CVE-2024-46693] = "fixed-version: Fixed from version 6.11" | ||
| 11008 | |||
| 11009 | CVE_STATUS[CVE-2024-46694] = "fixed-version: Fixed from version 6.11" | ||
| 11010 | |||
| 11011 | CVE_STATUS[CVE-2024-46695] = "fixed-version: Fixed from version 6.11" | ||
| 11012 | |||
| 11013 | CVE_STATUS[CVE-2024-46696] = "fixed-version: Fixed from version 6.11" | ||
| 11014 | |||
| 11015 | CVE_STATUS[CVE-2024-46697] = "fixed-version: Fixed from version 6.11" | ||
| 11016 | |||
| 11017 | CVE_STATUS[CVE-2024-46698] = "fixed-version: Fixed from version 6.11" | ||
| 11018 | |||
| 11019 | CVE_STATUS[CVE-2024-46699] = "fixed-version: Fixed from version 6.11" | ||
| 11020 | |||
| 11021 | CVE_STATUS[CVE-2024-46701] = "fixed-version: Fixed from version 6.11" | ||
| 11022 | |||
| 11023 | CVE_STATUS[CVE-2024-46702] = "fixed-version: Fixed from version 6.11" | ||
| 11024 | |||
| 11025 | CVE_STATUS[CVE-2024-46703] = "fixed-version: Fixed from version 6.11" | ||
| 11026 | |||
| 11027 | CVE_STATUS[CVE-2024-46704] = "fixed-version: Fixed from version 6.11" | ||
| 11028 | |||
| 11029 | CVE_STATUS[CVE-2024-46705] = "fixed-version: Fixed from version 6.11" | ||
| 11030 | |||
| 11031 | CVE_STATUS[CVE-2024-46706] = "fixed-version: Fixed from version 6.11" | ||
| 11032 | |||
| 11033 | CVE_STATUS[CVE-2024-46707] = "fixed-version: Fixed from version 6.11" | ||
| 11034 | |||
| 11035 | CVE_STATUS[CVE-2024-46708] = "fixed-version: Fixed from version 6.11" | ||
| 11036 | |||
| 11037 | CVE_STATUS[CVE-2024-46709] = "fixed-version: Fixed from version 6.11" | ||
| 11038 | |||
| 11039 | CVE_STATUS[CVE-2024-46710] = "fixed-version: Fixed from version 6.11" | ||
| 11040 | |||
| 11041 | CVE_STATUS[CVE-2024-46711] = "fixed-version: Fixed from version 6.11" | ||
| 11042 | |||
| 11043 | CVE_STATUS[CVE-2024-46712] = "fixed-version: Fixed from version 6.10.8" | ||
| 11044 | |||
| 11045 | CVE_STATUS[CVE-2024-46713] = "fixed-version: Fixed from version 6.11" | ||
| 11046 | |||
| 11047 | CVE_STATUS[CVE-2024-46714] = "fixed-version: Fixed from version 6.11" | ||
| 11048 | |||
| 11049 | CVE_STATUS[CVE-2024-46715] = "fixed-version: Fixed from version 6.11" | ||
| 11050 | |||
| 11051 | CVE_STATUS[CVE-2024-46716] = "fixed-version: Fixed from version 6.11" | ||
| 11052 | |||
| 11053 | CVE_STATUS[CVE-2024-46717] = "fixed-version: Fixed from version 6.11" | ||
| 11054 | |||
| 11055 | CVE_STATUS[CVE-2024-46718] = "fixed-version: Fixed from version 6.11" | ||
| 11056 | |||
| 11057 | CVE_STATUS[CVE-2024-46719] = "fixed-version: Fixed from version 6.11" | ||
| 11058 | |||
| 11059 | CVE_STATUS[CVE-2024-46720] = "fixed-version: Fixed from version 6.11" | ||
| 11060 | |||
| 11061 | CVE_STATUS[CVE-2024-46721] = "fixed-version: Fixed from version 6.11" | ||
| 11062 | |||
| 11063 | CVE_STATUS[CVE-2024-46722] = "fixed-version: Fixed from version 6.11" | ||
| 11064 | |||
| 11065 | CVE_STATUS[CVE-2024-46723] = "fixed-version: Fixed from version 6.11" | ||
| 11066 | |||
| 11067 | CVE_STATUS[CVE-2024-46724] = "fixed-version: Fixed from version 6.11" | ||
| 11068 | |||
| 11069 | CVE_STATUS[CVE-2024-46725] = "fixed-version: Fixed from version 6.11" | ||
| 11070 | |||
| 11071 | CVE_STATUS[CVE-2024-46726] = "fixed-version: Fixed from version 6.11" | ||
| 11072 | |||
| 11073 | CVE_STATUS[CVE-2024-46727] = "fixed-version: Fixed from version 6.11" | ||
| 11074 | |||
| 11075 | CVE_STATUS[CVE-2024-46728] = "fixed-version: Fixed from version 6.11" | ||
| 11076 | |||
| 11077 | CVE_STATUS[CVE-2024-46729] = "fixed-version: Fixed from version 6.11" | ||
| 11078 | |||
| 11079 | CVE_STATUS[CVE-2024-46730] = "fixed-version: Fixed from version 6.11" | ||
| 11080 | |||
| 11081 | CVE_STATUS[CVE-2024-46731] = "fixed-version: Fixed from version 6.11" | ||
| 11082 | |||
| 11083 | CVE_STATUS[CVE-2024-46732] = "fixed-version: Fixed from version 6.11" | ||
| 11084 | |||
| 11085 | CVE_STATUS[CVE-2024-46733] = "fixed-version: Fixed from version 6.11" | ||
| 11086 | |||
| 11087 | CVE_STATUS[CVE-2024-46734] = "fixed-version: Fixed from version 6.10.10" | ||
| 11088 | |||
| 11089 | CVE_STATUS[CVE-2024-46735] = "fixed-version: Fixed from version 6.11" | ||
| 11090 | |||
| 11091 | CVE_STATUS[CVE-2024-46736] = "fixed-version: Fixed from version 6.11" | ||
| 11092 | |||
| 11093 | CVE_STATUS[CVE-2024-46737] = "fixed-version: Fixed from version 6.11" | ||
| 11094 | |||
| 11095 | CVE_STATUS[CVE-2024-46738] = "fixed-version: Fixed from version 6.11" | ||
| 11096 | |||
| 11097 | CVE_STATUS[CVE-2024-46739] = "fixed-version: Fixed from version 6.11" | ||
| 11098 | |||
| 11099 | CVE_STATUS[CVE-2024-46740] = "fixed-version: Fixed from version 6.11" | ||
| 11100 | |||
| 11101 | CVE_STATUS[CVE-2024-46741] = "fixed-version: Fixed from version 6.11" | ||
| 11102 | |||
| 11103 | CVE_STATUS[CVE-2024-46742] = "fixed-version: Fixed from version 6.11" | ||
| 11104 | |||
| 11105 | CVE_STATUS[CVE-2024-46743] = "fixed-version: Fixed from version 6.11" | ||
| 11106 | |||
| 11107 | CVE_STATUS[CVE-2024-46744] = "fixed-version: Fixed from version 6.11" | ||
| 11108 | |||
| 11109 | CVE_STATUS[CVE-2024-46745] = "fixed-version: Fixed from version 6.11" | ||
| 11110 | |||
| 11111 | CVE_STATUS[CVE-2024-46746] = "fixed-version: Fixed from version 6.11" | ||
| 11112 | |||
| 11113 | CVE_STATUS[CVE-2024-46747] = "fixed-version: Fixed from version 6.11" | ||
| 11114 | |||
| 11115 | CVE_STATUS[CVE-2024-46748] = "fixed-version: Fixed from version 6.11" | ||
| 11116 | |||
| 11117 | CVE_STATUS[CVE-2024-46749] = "fixed-version: Fixed from version 6.11" | ||
| 11118 | |||
| 11119 | CVE_STATUS[CVE-2024-46750] = "fixed-version: Fixed from version 6.11" | ||
| 11120 | |||
| 11121 | CVE_STATUS[CVE-2024-46751] = "fixed-version: Fixed from version 6.11" | ||
| 11122 | |||
| 11123 | CVE_STATUS[CVE-2024-46752] = "fixed-version: Fixed from version 6.11" | ||
| 11124 | |||
| 11125 | CVE_STATUS[CVE-2024-46753] = "fixed-version: Fixed from version 6.11" | ||
| 11126 | |||
| 11127 | CVE_STATUS[CVE-2024-46754] = "fixed-version: Fixed from version 6.11" | ||
| 11128 | |||
| 11129 | CVE_STATUS[CVE-2024-46755] = "fixed-version: Fixed from version 6.11" | ||
| 11130 | |||
| 11131 | CVE_STATUS[CVE-2024-46759] = "fixed-version: Fixed from version 6.11" | ||
| 11132 | |||
| 11133 | CVE_STATUS[CVE-2024-46760] = "fixed-version: Fixed from version 6.11" | ||
| 11134 | |||
| 11135 | CVE_STATUS[CVE-2024-46761] = "fixed-version: Fixed from version 6.11" | ||
| 11136 | |||
| 11137 | CVE_STATUS[CVE-2024-46762] = "fixed-version: Fixed from version 6.11" | ||
| 11138 | |||
| 11139 | CVE_STATUS[CVE-2024-46763] = "fixed-version: Fixed from version 6.11" | ||
| 11140 | |||
| 11141 | CVE_STATUS[CVE-2024-46764] = "fixed-version: Fixed from version 6.11" | ||
| 11142 | |||
| 11143 | CVE_STATUS[CVE-2024-46765] = "fixed-version: Fixed from version 6.11" | ||
| 11144 | |||
| 11145 | CVE_STATUS[CVE-2024-46766] = "fixed-version: Fixed from version 6.11" | ||
| 11146 | |||
| 11147 | CVE_STATUS[CVE-2024-46767] = "fixed-version: Fixed from version 6.11" | ||
| 11148 | |||
| 11149 | CVE_STATUS[CVE-2024-46768] = "fixed-version: Fixed from version 6.11" | ||
| 11150 | |||
| 11151 | CVE_STATUS[CVE-2024-46769] = "fixed-version: Fixed from version 6.11" | ||
| 11152 | |||
| 11153 | CVE_STATUS[CVE-2024-46770] = "fixed-version: Fixed from version 6.11" | ||
| 11154 | |||
| 11155 | CVE_STATUS[CVE-2024-46771] = "fixed-version: Fixed from version 6.11" | ||
| 11156 | |||
| 11157 | CVE_STATUS[CVE-2024-46772] = "fixed-version: Fixed from version 6.11" | ||
| 11158 | |||
| 11159 | CVE_STATUS[CVE-2024-46773] = "fixed-version: Fixed from version 6.11" | ||
| 11160 | |||
| 11161 | CVE_STATUS[CVE-2024-46774] = "fixed-version: Fixed from version 6.11" | ||
| 11162 | |||
| 11163 | CVE_STATUS[CVE-2024-46775] = "fixed-version: Fixed from version 6.11" | ||
| 11164 | |||
| 11165 | CVE_STATUS[CVE-2024-46776] = "fixed-version: Fixed from version 6.11" | ||
| 11166 | |||
| 11167 | CVE_STATUS[CVE-2024-46777] = "fixed-version: Fixed from version 6.11" | ||
| 11168 | |||
| 11169 | CVE_STATUS[CVE-2024-46778] = "fixed-version: Fixed from version 6.11" | ||
| 11170 | |||
| 11171 | CVE_STATUS[CVE-2024-46779] = "fixed-version: Fixed from version 6.11" | ||
| 11172 | |||
| 11173 | CVE_STATUS[CVE-2024-46780] = "fixed-version: Fixed from version 6.11" | ||
| 11174 | |||
| 11175 | CVE_STATUS[CVE-2024-46781] = "fixed-version: Fixed from version 6.11" | ||
| 11176 | |||
| 11177 | CVE_STATUS[CVE-2024-46782] = "fixed-version: Fixed from version 6.11" | ||
| 11178 | |||
| 11179 | CVE_STATUS[CVE-2024-46783] = "fixed-version: Fixed from version 6.11" | ||
| 11180 | |||
| 11181 | CVE_STATUS[CVE-2024-46784] = "fixed-version: Fixed from version 6.11" | ||
| 11182 | |||
| 11183 | CVE_STATUS[CVE-2024-46785] = "fixed-version: Fixed from version 6.11" | ||
| 11184 | |||
| 11185 | CVE_STATUS[CVE-2024-46786] = "fixed-version: Fixed from version 6.11" | ||
| 11186 | |||
| 11187 | CVE_STATUS[CVE-2024-46787] = "fixed-version: Fixed from version 6.11" | ||
| 11188 | |||
| 11189 | CVE_STATUS[CVE-2024-46788] = "fixed-version: Fixed from version 6.11" | ||
| 11190 | |||
| 11191 | CVE_STATUS[CVE-2024-46789] = "fixed-version: Fixed from version 6.11" | ||
| 11192 | |||
| 11193 | CVE_STATUS[CVE-2024-46790] = "fixed-version: Fixed from version 6.11" | ||
| 11194 | |||
| 11195 | CVE_STATUS[CVE-2024-46791] = "fixed-version: Fixed from version 6.11" | ||
| 11196 | |||
| 11197 | CVE_STATUS[CVE-2024-46792] = "fixed-version: Fixed from version 6.11" | ||
| 11198 | |||
| 11199 | CVE_STATUS[CVE-2024-46793] = "fixed-version: Fixed from version 6.11" | ||
| 11200 | |||
| 11201 | CVE_STATUS[CVE-2024-46794] = "fixed-version: Fixed from version 6.11" | ||
| 11202 | |||
| 11203 | CVE_STATUS[CVE-2024-46795] = "fixed-version: Fixed from version 6.11" | ||
| 11204 | |||
| 11205 | CVE_STATUS[CVE-2024-46796] = "fixed-version: Fixed from version 6.11" | ||
| 11206 | |||
| 11207 | CVE_STATUS[CVE-2024-46797] = "fixed-version: Fixed from version 6.11" | ||
| 11208 | |||
| 11209 | CVE_STATUS[CVE-2024-46798] = "fixed-version: Fixed from version 6.11" | ||
| 11210 | |||
| 11211 | CVE_STATUS[CVE-2024-46799] = "fixed-version: Fixed from version 6.11" | ||
| 11212 | |||
| 11213 | CVE_STATUS[CVE-2024-46800] = "fixed-version: Fixed from version 6.11" | ||
| 11214 | |||
| 11215 | CVE_STATUS[CVE-2024-46801] = "fixed-version: Fixed from version 6.11" | ||
| 11216 | |||
| 11217 | CVE_STATUS[CVE-2024-46802] = "fixed-version: Fixed from version 6.11" | ||
| 11218 | |||
| 11219 | CVE_STATUS[CVE-2024-46803] = "fixed-version: Fixed from version 6.11" | ||
| 11220 | |||
| 11221 | CVE_STATUS[CVE-2024-46804] = "fixed-version: Fixed from version 6.11" | ||
| 11222 | |||
| 11223 | CVE_STATUS[CVE-2024-46805] = "fixed-version: Fixed from version 6.11" | ||
| 11224 | |||
| 11225 | CVE_STATUS[CVE-2024-46806] = "fixed-version: Fixed from version 6.11" | ||
| 11226 | |||
| 11227 | CVE_STATUS[CVE-2024-46807] = "fixed-version: Fixed from version 6.11" | ||
| 11228 | |||
| 11229 | CVE_STATUS[CVE-2024-46808] = "fixed-version: Fixed from version 6.11" | ||
| 11230 | |||
| 11231 | CVE_STATUS[CVE-2024-46809] = "fixed-version: Fixed from version 6.11" | ||
| 11232 | |||
| 11233 | CVE_STATUS[CVE-2024-46810] = "fixed-version: Fixed from version 6.11" | ||
| 11234 | |||
| 11235 | CVE_STATUS[CVE-2024-46811] = "fixed-version: Fixed from version 6.11" | ||
| 11236 | |||
| 11237 | CVE_STATUS[CVE-2024-46812] = "fixed-version: Fixed from version 6.11" | ||
| 11238 | |||
| 11239 | CVE_STATUS[CVE-2024-46813] = "fixed-version: Fixed from version 6.11" | ||
| 11240 | |||
| 11241 | CVE_STATUS[CVE-2024-46814] = "fixed-version: Fixed from version 6.11" | ||
| 11242 | |||
| 11243 | CVE_STATUS[CVE-2024-46815] = "fixed-version: Fixed from version 6.11" | ||
| 11244 | |||
| 11245 | CVE_STATUS[CVE-2024-46816] = "fixed-version: Fixed from version 6.11" | ||
| 11246 | |||
| 11247 | CVE_STATUS[CVE-2024-46817] = "fixed-version: Fixed from version 6.11" | ||
| 11248 | |||
| 11249 | CVE_STATUS[CVE-2024-46818] = "fixed-version: Fixed from version 6.11" | ||
| 11250 | |||
| 11251 | CVE_STATUS[CVE-2024-46819] = "fixed-version: Fixed from version 6.11" | ||
| 11252 | |||
| 11253 | CVE_STATUS[CVE-2024-46820] = "fixed-version: Fixed from version 6.11" | ||
| 11254 | |||
| 11255 | CVE_STATUS[CVE-2024-46821] = "fixed-version: Fixed from version 6.11" | ||
| 11256 | |||
| 11257 | CVE_STATUS[CVE-2024-46822] = "fixed-version: Fixed from version 6.11" | ||
| 11258 | |||
| 11259 | CVE_STATUS[CVE-2024-46823] = "fixed-version: Fixed from version 6.11" | ||
| 11260 | |||
| 11261 | CVE_STATUS[CVE-2024-46824] = "fixed-version: Fixed from version 6.11" | ||
| 11262 | |||
| 11263 | CVE_STATUS[CVE-2024-46825] = "fixed-version: Fixed from version 6.11" | ||
| 11264 | |||
| 11265 | CVE_STATUS[CVE-2024-46826] = "fixed-version: Fixed from version 6.11" | ||
| 11266 | |||
| 11267 | CVE_STATUS[CVE-2024-46827] = "fixed-version: Fixed from version 6.11" | ||
| 11268 | |||
| 11269 | CVE_STATUS[CVE-2024-46828] = "fixed-version: Fixed from version 6.11" | ||
| 11270 | |||
| 11271 | CVE_STATUS[CVE-2024-46829] = "fixed-version: Fixed from version 6.11" | ||
| 11272 | |||
| 11273 | CVE_STATUS[CVE-2024-46830] = "fixed-version: Fixed from version 6.11" | ||
| 11274 | |||
| 11275 | CVE_STATUS[CVE-2024-46831] = "fixed-version: Fixed from version 6.11" | ||
| 11276 | |||
| 11277 | CVE_STATUS[CVE-2024-46832] = "fixed-version: Fixed from version 6.11" | ||
| 11278 | |||
| 11279 | CVE_STATUS[CVE-2024-46833] = "fixed-version: Fixed from version 6.11" | ||
| 11280 | |||
| 11281 | CVE_STATUS[CVE-2024-46834] = "fixed-version: Fixed from version 6.11" | ||
| 11282 | |||
| 11283 | CVE_STATUS[CVE-2024-46835] = "fixed-version: Fixed from version 6.11" | ||
| 11284 | |||
| 11285 | CVE_STATUS[CVE-2024-46836] = "fixed-version: Fixed from version 6.11" | ||
| 11286 | |||
| 11287 | CVE_STATUS[CVE-2024-46837] = "fixed-version: Fixed from version 6.11" | ||
| 11288 | |||
| 11289 | CVE_STATUS[CVE-2024-46838] = "fixed-version: Fixed from version 6.11" | ||
| 11290 | |||
| 11291 | CVE_STATUS[CVE-2024-46840] = "fixed-version: Fixed from version 6.11" | ||
| 11292 | |||
| 11293 | CVE_STATUS[CVE-2024-46841] = "fixed-version: Fixed from version 6.11" | ||
| 11294 | |||
| 11295 | CVE_STATUS[CVE-2024-46842] = "fixed-version: Fixed from version 6.11" | ||
| 11296 | |||
| 11297 | CVE_STATUS[CVE-2024-46843] = "fixed-version: Fixed from version 6.11" | ||
| 11298 | |||
| 11299 | CVE_STATUS[CVE-2024-46844] = "fixed-version: Fixed from version 6.11" | ||
| 11300 | |||
| 11301 | CVE_STATUS[CVE-2024-46845] = "fixed-version: Fixed from version 6.11" | ||
| 11302 | |||
| 11303 | CVE_STATUS[CVE-2024-46846] = "fixed-version: Fixed from version 6.11" | ||
| 11304 | |||
| 11305 | CVE_STATUS[CVE-2024-46847] = "fixed-version: Fixed from version 6.11" | ||
| 11306 | |||
| 11307 | CVE_STATUS[CVE-2024-46848] = "fixed-version: Fixed from version 6.11" | ||
| 11308 | |||
| 11309 | CVE_STATUS[CVE-2024-46849] = "fixed-version: Fixed from version 6.11" | ||
| 11310 | |||
| 11311 | CVE_STATUS[CVE-2024-46850] = "fixed-version: Fixed from version 6.11" | ||
| 11312 | |||
| 11313 | CVE_STATUS[CVE-2024-46851] = "fixed-version: Fixed from version 6.11" | ||
| 11314 | |||
| 11315 | CVE_STATUS[CVE-2024-46852] = "fixed-version: Fixed from version 6.11" | ||
| 11316 | |||
| 11317 | CVE_STATUS[CVE-2024-46853] = "fixed-version: Fixed from version 6.11" | ||
| 11318 | |||
| 11319 | CVE_STATUS[CVE-2024-46854] = "fixed-version: Fixed from version 6.11" | ||
| 11320 | |||
| 11321 | CVE_STATUS[CVE-2024-46855] = "fixed-version: Fixed from version 6.11" | ||
| 11322 | |||
| 11323 | CVE_STATUS[CVE-2024-46856] = "fixed-version: Fixed from version 6.11" | ||
| 11324 | |||
| 11325 | CVE_STATUS[CVE-2024-46857] = "fixed-version: Fixed from version 6.11" | ||
| 11326 | |||
| 11327 | CVE_STATUS[CVE-2024-46858] = "fixed-version: Fixed from version 6.11" | ||
| 11328 | |||
| 11329 | CVE_STATUS[CVE-2024-46859] = "fixed-version: Fixed from version 6.11" | ||
| 11330 | |||
| 11331 | CVE_STATUS[CVE-2024-46860] = "fixed-version: Fixed from version 6.11" | ||
| 11332 | |||
| 11333 | CVE_STATUS[CVE-2024-46861] = "fixed-version: Fixed from version 6.11" | ||
| 11334 | |||
| 11335 | CVE_STATUS[CVE-2024-46862] = "fixed-version: Fixed from version 6.11" | ||
| 11336 | |||
| 11337 | CVE_STATUS[CVE-2024-46863] = "fixed-version: Fixed from version 6.11" | ||
| 11338 | |||
| 11339 | CVE_STATUS[CVE-2024-46864] = "fixed-version: Fixed from version 6.11" | ||
| 11340 | |||
| 11341 | CVE_STATUS[CVE-2024-46865] = "fixed-version: Fixed from version 6.10.11" | ||
| 11342 | |||
| 11343 | CVE_STATUS[CVE-2024-46866] = "fixed-version: Fixed from version 6.11" | ||
| 11344 | |||
| 11345 | CVE_STATUS[CVE-2024-46867] = "fixed-version: Fixed from version 6.11" | ||
| 11346 | |||
| 11347 | CVE_STATUS[CVE-2024-46868] = "fixed-version: Fixed from version 6.11" | ||
| 11348 | |||
| 11349 | CVE_STATUS[CVE-2024-46869] = "fixed-version: Fixed from version 6.12" | ||
| 11350 | |||
| 11351 | CVE_STATUS[CVE-2024-46870] = "fixed-version: Fixed from version 6.11" | ||
| 11352 | |||
| 11353 | CVE_STATUS[CVE-2024-46871] = "fixed-version: Fixed from version 6.11" | ||
| 11354 | |||
| 11355 | CVE_STATUS[CVE-2024-46896] = "fixed-version: Fixed from version 6.12.7" | ||
| 11356 | |||
| 11357 | CVE_STATUS[CVE-2024-47141] = "fixed-version: Fixed from version 6.13" | ||
| 11358 | |||
| 11359 | CVE_STATUS[CVE-2024-47143] = "fixed-version: Fixed from version 6.13" | ||
| 11360 | |||
| 11361 | CVE_STATUS[CVE-2024-47408] = "fixed-version: Fixed from version 6.13" | ||
| 11362 | |||
| 11363 | CVE_STATUS[CVE-2024-47658] = "fixed-version: Fixed from version 6.11" | ||
| 11364 | |||
| 11365 | CVE_STATUS[CVE-2024-47659] = "fixed-version: Fixed from version 6.11" | ||
| 11366 | |||
| 11367 | CVE_STATUS[CVE-2024-47660] = "fixed-version: Fixed from version 6.11" | ||
| 11368 | |||
| 11369 | CVE_STATUS[CVE-2024-47661] = "fixed-version: Fixed from version 6.11" | ||
| 11370 | |||
| 11371 | CVE_STATUS[CVE-2024-47662] = "fixed-version: Fixed from version 6.11" | ||
| 11372 | |||
| 11373 | CVE_STATUS[CVE-2024-47663] = "fixed-version: Fixed from version 6.11" | ||
| 11374 | |||
| 11375 | CVE_STATUS[CVE-2024-47664] = "fixed-version: Fixed from version 6.11" | ||
| 11376 | |||
| 11377 | CVE_STATUS[CVE-2024-47665] = "fixed-version: Fixed from version 6.11" | ||
| 11378 | |||
| 11379 | CVE_STATUS[CVE-2024-47666] = "fixed-version: Fixed from version 6.11" | ||
| 11380 | |||
| 11381 | CVE_STATUS[CVE-2024-47667] = "fixed-version: Fixed from version 6.11" | ||
| 11382 | |||
| 11383 | CVE_STATUS[CVE-2024-47668] = "fixed-version: Fixed from version 6.11" | ||
| 11384 | |||
| 11385 | CVE_STATUS[CVE-2024-47669] = "fixed-version: Fixed from version 6.11" | ||
| 11386 | |||
| 11387 | CVE_STATUS[CVE-2024-47670] = "fixed-version: Fixed from version 6.11" | ||
| 11388 | |||
| 11389 | CVE_STATUS[CVE-2024-47671] = "fixed-version: Fixed from version 6.12" | ||
| 11390 | |||
| 11391 | CVE_STATUS[CVE-2024-47672] = "fixed-version: Fixed from version 6.11" | ||
| 11392 | |||
| 11393 | CVE_STATUS[CVE-2024-47673] = "fixed-version: Fixed from version 6.11" | ||
| 11394 | |||
| 11395 | CVE_STATUS[CVE-2024-47674] = "fixed-version: Fixed from version 6.11" | ||
| 11396 | |||
| 11397 | CVE_STATUS[CVE-2024-47675] = "fixed-version: Fixed from version 6.12" | ||
| 11398 | |||
| 11399 | CVE_STATUS[CVE-2024-47676] = "fixed-version: Fixed from version 6.12" | ||
| 11400 | |||
| 11401 | CVE_STATUS[CVE-2024-47677] = "fixed-version: Fixed from version 6.12" | ||
| 11402 | |||
| 11403 | CVE_STATUS[CVE-2024-47678] = "fixed-version: Fixed from version 6.12" | ||
| 11404 | |||
| 11405 | CVE_STATUS[CVE-2024-47679] = "fixed-version: Fixed from version 6.12" | ||
| 11406 | |||
| 11407 | CVE_STATUS[CVE-2024-47680] = "fixed-version: Fixed from version 6.12" | ||
| 11408 | |||
| 11409 | CVE_STATUS[CVE-2024-47681] = "fixed-version: Fixed from version 6.12" | ||
| 11410 | |||
| 11411 | CVE_STATUS[CVE-2024-47682] = "fixed-version: Fixed from version 6.12" | ||
| 11412 | |||
| 11413 | CVE_STATUS[CVE-2024-47683] = "fixed-version: Fixed from version 6.12" | ||
| 11414 | |||
| 11415 | CVE_STATUS[CVE-2024-47684] = "fixed-version: Fixed from version 6.12" | ||
| 11416 | |||
| 11417 | CVE_STATUS[CVE-2024-47685] = "fixed-version: Fixed from version 6.12" | ||
| 11418 | |||
| 11419 | CVE_STATUS[CVE-2024-47686] = "fixed-version: Fixed from version 6.12" | ||
| 11420 | |||
| 11421 | CVE_STATUS[CVE-2024-47687] = "fixed-version: Fixed from version 6.12" | ||
| 11422 | |||
| 11423 | CVE_STATUS[CVE-2024-47688] = "fixed-version: Fixed from version 6.12" | ||
| 11424 | |||
| 11425 | CVE_STATUS[CVE-2024-47689] = "fixed-version: Fixed from version 6.12" | ||
| 11426 | |||
| 11427 | CVE_STATUS[CVE-2024-47690] = "fixed-version: Fixed from version 6.12" | ||
| 11428 | |||
| 11429 | CVE_STATUS[CVE-2024-47691] = "fixed-version: Fixed from version 6.12" | ||
| 11430 | |||
| 11431 | CVE_STATUS[CVE-2024-47692] = "fixed-version: Fixed from version 6.12" | ||
| 11432 | |||
| 11433 | CVE_STATUS[CVE-2024-47693] = "fixed-version: Fixed from version 6.12" | ||
| 11434 | |||
| 11435 | CVE_STATUS[CVE-2024-47694] = "fixed-version: Fixed from version 6.12" | ||
| 11436 | |||
| 11437 | CVE_STATUS[CVE-2024-47695] = "fixed-version: Fixed from version 6.12" | ||
| 11438 | |||
| 11439 | CVE_STATUS[CVE-2024-47696] = "fixed-version: Fixed from version 6.12" | ||
| 11440 | |||
| 11441 | CVE_STATUS[CVE-2024-47697] = "fixed-version: Fixed from version 6.12" | ||
| 11442 | |||
| 11443 | CVE_STATUS[CVE-2024-47698] = "fixed-version: Fixed from version 6.12" | ||
| 11444 | |||
| 11445 | CVE_STATUS[CVE-2024-47699] = "fixed-version: Fixed from version 6.12" | ||
| 11446 | |||
| 11447 | CVE_STATUS[CVE-2024-47700] = "fixed-version: Fixed from version 6.12" | ||
| 11448 | |||
| 11449 | CVE_STATUS[CVE-2024-47701] = "fixed-version: Fixed from version 6.12" | ||
| 11450 | |||
| 11451 | CVE_STATUS[CVE-2024-47702] = "fixed-version: Fixed from version 6.12" | ||
| 11452 | |||
| 11453 | CVE_STATUS[CVE-2024-47703] = "fixed-version: Fixed from version 6.12" | ||
| 11454 | |||
| 11455 | CVE_STATUS[CVE-2024-47704] = "fixed-version: Fixed from version 6.12" | ||
| 11456 | |||
| 11457 | CVE_STATUS[CVE-2024-47705] = "fixed-version: Fixed from version 6.12" | ||
| 11458 | |||
| 11459 | CVE_STATUS[CVE-2024-47706] = "fixed-version: Fixed from version 6.12" | ||
| 11460 | |||
| 11461 | CVE_STATUS[CVE-2024-47707] = "fixed-version: Fixed from version 6.12" | ||
| 11462 | |||
| 11463 | CVE_STATUS[CVE-2024-47708] = "fixed-version: Fixed from version 6.12" | ||
| 11464 | |||
| 11465 | CVE_STATUS[CVE-2024-47709] = "fixed-version: Fixed from version 6.12" | ||
| 11466 | |||
| 11467 | CVE_STATUS[CVE-2024-47710] = "fixed-version: Fixed from version 6.12" | ||
| 11468 | |||
| 11469 | CVE_STATUS[CVE-2024-47711] = "fixed-version: Fixed from version 6.12" | ||
| 11470 | |||
| 11471 | CVE_STATUS[CVE-2024-47712] = "fixed-version: Fixed from version 6.12" | ||
| 11472 | |||
| 11473 | CVE_STATUS[CVE-2024-47713] = "fixed-version: Fixed from version 6.12" | ||
| 11474 | |||
| 11475 | CVE_STATUS[CVE-2024-47714] = "fixed-version: Fixed from version 6.12" | ||
| 11476 | |||
| 11477 | CVE_STATUS[CVE-2024-47715] = "fixed-version: Fixed from version 6.12" | ||
| 11478 | |||
| 11479 | CVE_STATUS[CVE-2024-47716] = "fixed-version: Fixed from version 6.12" | ||
| 11480 | |||
| 11481 | CVE_STATUS[CVE-2024-47717] = "fixed-version: Fixed from version 6.12" | ||
| 11482 | |||
| 11483 | CVE_STATUS[CVE-2024-47718] = "fixed-version: Fixed from version 6.12" | ||
| 11484 | |||
| 11485 | CVE_STATUS[CVE-2024-47719] = "fixed-version: Fixed from version 6.12" | ||
| 11486 | |||
| 11487 | CVE_STATUS[CVE-2024-47720] = "fixed-version: Fixed from version 6.12" | ||
| 11488 | |||
| 11489 | CVE_STATUS[CVE-2024-47721] = "fixed-version: Fixed from version 6.12" | ||
| 11490 | |||
| 11491 | CVE_STATUS[CVE-2024-47723] = "fixed-version: Fixed from version 6.12" | ||
| 11492 | |||
| 11493 | CVE_STATUS[CVE-2024-47724] = "fixed-version: Fixed from version 6.12" | ||
| 11494 | |||
| 11495 | CVE_STATUS[CVE-2024-47726] = "fixed-version: Fixed from version 6.12" | ||
| 11496 | |||
| 11497 | CVE_STATUS[CVE-2024-47727] = "fixed-version: Fixed from version 6.12" | ||
| 11498 | |||
| 11499 | CVE_STATUS[CVE-2024-47728] = "fixed-version: Fixed from version 6.12" | ||
| 11500 | |||
| 11501 | CVE_STATUS[CVE-2024-47729] = "fixed-version: Fixed from version 6.12" | ||
| 11502 | |||
| 11503 | CVE_STATUS[CVE-2024-47730] = "fixed-version: Fixed from version 6.12" | ||
| 11504 | |||
| 11505 | CVE_STATUS[CVE-2024-47731] = "fixed-version: Fixed from version 6.12" | ||
| 11506 | |||
| 11507 | CVE_STATUS[CVE-2024-47732] = "fixed-version: Fixed from version 6.12" | ||
| 11508 | |||
| 11509 | CVE_STATUS[CVE-2024-47733] = "fixed-version: Fixed from version 6.12" | ||
| 11510 | |||
| 11511 | CVE_STATUS[CVE-2024-47734] = "fixed-version: Fixed from version 6.12" | ||
| 11512 | |||
| 11513 | CVE_STATUS[CVE-2024-47735] = "fixed-version: Fixed from version 6.12" | ||
| 11514 | |||
| 11515 | CVE_STATUS[CVE-2024-47736] = "fixed-version: Fixed from version 6.12" | ||
| 11516 | |||
| 11517 | CVE_STATUS[CVE-2024-47737] = "fixed-version: Fixed from version 6.12" | ||
| 11518 | |||
| 11519 | CVE_STATUS[CVE-2024-47738] = "fixed-version: Fixed from version 6.12" | ||
| 11520 | |||
| 11521 | CVE_STATUS[CVE-2024-47739] = "fixed-version: Fixed from version 6.12" | ||
| 11522 | |||
| 11523 | CVE_STATUS[CVE-2024-47740] = "fixed-version: Fixed from version 6.12" | ||
| 11524 | |||
| 11525 | CVE_STATUS[CVE-2024-47741] = "fixed-version: Fixed from version 6.12" | ||
| 11526 | |||
| 11527 | CVE_STATUS[CVE-2024-47742] = "fixed-version: Fixed from version 6.12" | ||
| 11528 | |||
| 11529 | CVE_STATUS[CVE-2024-47743] = "fixed-version: Fixed from version 6.12" | ||
| 11530 | |||
| 11531 | CVE_STATUS[CVE-2024-47744] = "fixed-version: Fixed from version 6.12" | ||
| 11532 | |||
| 11533 | CVE_STATUS[CVE-2024-47745] = "fixed-version: Fixed from version 6.12" | ||
| 11534 | |||
| 11535 | CVE_STATUS[CVE-2024-47746] = "fixed-version: Fixed from version 6.12" | ||
| 11536 | |||
| 11537 | CVE_STATUS[CVE-2024-47747] = "fixed-version: Fixed from version 6.12" | ||
| 11538 | |||
| 11539 | CVE_STATUS[CVE-2024-47748] = "fixed-version: Fixed from version 6.12" | ||
| 11540 | |||
| 11541 | CVE_STATUS[CVE-2024-47749] = "fixed-version: Fixed from version 6.12" | ||
| 11542 | |||
| 11543 | CVE_STATUS[CVE-2024-47750] = "fixed-version: Fixed from version 6.12" | ||
| 11544 | |||
| 11545 | CVE_STATUS[CVE-2024-47751] = "fixed-version: Fixed from version 6.12" | ||
| 11546 | |||
| 11547 | CVE_STATUS[CVE-2024-47752] = "fixed-version: Fixed from version 6.12" | ||
| 11548 | |||
| 11549 | CVE_STATUS[CVE-2024-47753] = "fixed-version: Fixed from version 6.12" | ||
| 11550 | |||
| 11551 | CVE_STATUS[CVE-2024-47754] = "fixed-version: Fixed from version 6.12" | ||
| 11552 | |||
| 11553 | CVE_STATUS[CVE-2024-47756] = "fixed-version: Fixed from version 6.12" | ||
| 11554 | |||
| 11555 | CVE_STATUS[CVE-2024-47757] = "fixed-version: Fixed from version 6.12" | ||
| 11556 | |||
| 11557 | CVE_STATUS[CVE-2024-47794] = "fixed-version: Fixed from version 6.13" | ||
| 11558 | |||
| 11559 | CVE_STATUS[CVE-2024-47809] = "fixed-version: Fixed from version 6.13" | ||
| 11560 | |||
| 11561 | CVE_STATUS[CVE-2024-48873] = "fixed-version: Fixed from version 6.13" | ||
| 11562 | |||
| 11563 | CVE_STATUS[CVE-2024-48875] = "fixed-version: Fixed from version 6.13" | ||
| 11564 | |||
| 11565 | CVE_STATUS[CVE-2024-48876] = "fixed-version: Fixed from version 6.13" | ||
| 11566 | |||
| 11567 | CVE_STATUS[CVE-2024-48881] = "fixed-version: Fixed from version 6.13" | ||
| 11568 | |||
| 11569 | CVE_STATUS[CVE-2024-49568] = "fixed-version: Fixed from version 6.13" | ||
| 11570 | |||
| 11571 | CVE_STATUS[CVE-2024-49569] = "fixed-version: Fixed from version 6.13" | ||
| 11572 | |||
| 11573 | CVE_STATUS[CVE-2024-49570] = "fixed-version: Fixed from version 6.14" | ||
| 11574 | |||
| 11575 | CVE_STATUS[CVE-2024-49571] = "fixed-version: Fixed from version 6.13" | ||
| 11576 | |||
| 11577 | CVE_STATUS[CVE-2024-49573] = "fixed-version: Fixed from version 6.13" | ||
| 11578 | |||
| 11579 | CVE_STATUS[CVE-2024-49850] = "fixed-version: Fixed from version 6.12" | ||
| 11580 | |||
| 11581 | CVE_STATUS[CVE-2024-49851] = "fixed-version: Fixed from version 6.12" | ||
| 11582 | |||
| 11583 | CVE_STATUS[CVE-2024-49852] = "fixed-version: Fixed from version 6.12" | ||
| 11584 | |||
| 11585 | CVE_STATUS[CVE-2024-49853] = "fixed-version: Fixed from version 6.12" | ||
| 11586 | |||
| 11587 | # CVE-2024-49854 has no known resolution | ||
| 11588 | |||
| 11589 | CVE_STATUS[CVE-2024-49855] = "fixed-version: Fixed from version 6.12" | ||
| 11590 | |||
| 11591 | CVE_STATUS[CVE-2024-49856] = "fixed-version: Fixed from version 6.12" | ||
| 11592 | |||
| 11593 | CVE_STATUS[CVE-2024-49857] = "fixed-version: Fixed from version 6.12" | ||
| 11594 | |||
| 11595 | CVE_STATUS[CVE-2024-49858] = "fixed-version: Fixed from version 6.12" | ||
| 11596 | |||
| 11597 | CVE_STATUS[CVE-2024-49859] = "fixed-version: Fixed from version 6.12" | ||
| 11598 | |||
| 11599 | CVE_STATUS[CVE-2024-49860] = "fixed-version: Fixed from version 6.12" | ||
| 11600 | |||
| 11601 | CVE_STATUS[CVE-2024-49861] = "fixed-version: Fixed from version 6.12" | ||
| 11602 | |||
| 11603 | CVE_STATUS[CVE-2024-49862] = "fixed-version: Fixed from version 6.12" | ||
| 11604 | |||
| 11605 | CVE_STATUS[CVE-2024-49863] = "fixed-version: Fixed from version 6.12" | ||
| 11606 | |||
| 11607 | CVE_STATUS[CVE-2024-49864] = "fixed-version: Fixed from version 6.12" | ||
| 11608 | |||
| 11609 | CVE_STATUS[CVE-2024-49865] = "fixed-version: Fixed from version 6.12" | ||
| 11610 | |||
| 11611 | CVE_STATUS[CVE-2024-49866] = "fixed-version: Fixed from version 6.12" | ||
| 11612 | |||
| 11613 | CVE_STATUS[CVE-2024-49867] = "fixed-version: Fixed from version 6.12" | ||
| 11614 | |||
| 11615 | CVE_STATUS[CVE-2024-49868] = "fixed-version: Fixed from version 6.12" | ||
| 11616 | |||
| 11617 | CVE_STATUS[CVE-2024-49869] = "fixed-version: Fixed from version 6.12" | ||
| 11618 | |||
| 11619 | CVE_STATUS[CVE-2024-49870] = "fixed-version: Fixed from version 6.12" | ||
| 11620 | |||
| 11621 | CVE_STATUS[CVE-2024-49871] = "fixed-version: Fixed from version 6.12" | ||
| 11622 | |||
| 11623 | CVE_STATUS[CVE-2024-49872] = "fixed-version: Fixed from version 6.12" | ||
| 11624 | |||
| 11625 | CVE_STATUS[CVE-2024-49873] = "fixed-version: Fixed from version 6.12" | ||
| 11626 | |||
| 11627 | CVE_STATUS[CVE-2024-49874] = "fixed-version: Fixed from version 6.12" | ||
| 11628 | |||
| 11629 | CVE_STATUS[CVE-2024-49875] = "fixed-version: Fixed from version 6.12" | ||
| 11630 | |||
| 11631 | CVE_STATUS[CVE-2024-49876] = "fixed-version: Fixed from version 6.12" | ||
| 11632 | |||
| 11633 | CVE_STATUS[CVE-2024-49877] = "fixed-version: Fixed from version 6.12" | ||
| 11634 | |||
| 11635 | CVE_STATUS[CVE-2024-49878] = "fixed-version: Fixed from version 6.12" | ||
| 11636 | |||
| 11637 | CVE_STATUS[CVE-2024-49879] = "fixed-version: Fixed from version 6.12" | ||
| 11638 | |||
| 11639 | CVE_STATUS[CVE-2024-49880] = "fixed-version: Fixed from version 6.12" | ||
| 11640 | |||
| 11641 | CVE_STATUS[CVE-2024-49881] = "fixed-version: Fixed from version 6.12" | ||
| 11642 | |||
| 11643 | CVE_STATUS[CVE-2024-49882] = "fixed-version: Fixed from version 6.12" | ||
| 11644 | |||
| 11645 | CVE_STATUS[CVE-2024-49883] = "fixed-version: Fixed from version 6.12" | ||
| 11646 | |||
| 11647 | CVE_STATUS[CVE-2024-49884] = "fixed-version: Fixed from version 6.12" | ||
| 11648 | |||
| 11649 | CVE_STATUS[CVE-2024-49885] = "fixed-version: Fixed from version 6.12" | ||
| 11650 | |||
| 11651 | CVE_STATUS[CVE-2024-49886] = "fixed-version: Fixed from version 6.12" | ||
| 11652 | |||
| 11653 | CVE_STATUS[CVE-2024-49887] = "fixed-version: Fixed from version 6.12" | ||
| 11654 | |||
| 11655 | CVE_STATUS[CVE-2024-49888] = "fixed-version: Fixed from version 6.12" | ||
| 11656 | |||
| 11657 | CVE_STATUS[CVE-2024-49889] = "fixed-version: Fixed from version 6.12" | ||
| 11658 | |||
| 11659 | CVE_STATUS[CVE-2024-49890] = "fixed-version: Fixed from version 6.12" | ||
| 11660 | |||
| 11661 | CVE_STATUS[CVE-2024-49891] = "fixed-version: Fixed from version 6.12" | ||
| 11662 | |||
| 11663 | CVE_STATUS[CVE-2024-49892] = "fixed-version: Fixed from version 6.12" | ||
| 11664 | |||
| 11665 | CVE_STATUS[CVE-2024-49893] = "fixed-version: Fixed from version 6.12" | ||
| 11666 | |||
| 11667 | CVE_STATUS[CVE-2024-49894] = "fixed-version: Fixed from version 6.12" | ||
| 11668 | |||
| 11669 | CVE_STATUS[CVE-2024-49895] = "fixed-version: Fixed from version 6.12" | ||
| 11670 | |||
| 11671 | CVE_STATUS[CVE-2024-49896] = "fixed-version: Fixed from version 6.12" | ||
| 11672 | |||
| 11673 | CVE_STATUS[CVE-2024-49897] = "fixed-version: Fixed from version 6.12" | ||
| 11674 | |||
| 11675 | CVE_STATUS[CVE-2024-49898] = "fixed-version: Fixed from version 6.12" | ||
| 11676 | |||
| 11677 | CVE_STATUS[CVE-2024-49899] = "fixed-version: Fixed from version 6.12" | ||
| 11678 | |||
| 11679 | CVE_STATUS[CVE-2024-49900] = "fixed-version: Fixed from version 6.12" | ||
| 11680 | |||
| 11681 | CVE_STATUS[CVE-2024-49901] = "fixed-version: Fixed from version 6.12" | ||
| 11682 | |||
| 11683 | CVE_STATUS[CVE-2024-49902] = "fixed-version: Fixed from version 6.12" | ||
| 11684 | |||
| 11685 | CVE_STATUS[CVE-2024-49903] = "fixed-version: Fixed from version 6.12" | ||
| 11686 | |||
| 11687 | CVE_STATUS[CVE-2024-49904] = "fixed-version: Fixed from version 6.12" | ||
| 11688 | |||
| 11689 | CVE_STATUS[CVE-2024-49905] = "fixed-version: Fixed from version 6.12" | ||
| 11690 | |||
| 11691 | CVE_STATUS[CVE-2024-49906] = "fixed-version: Fixed from version 6.12" | ||
| 11692 | |||
| 11693 | CVE_STATUS[CVE-2024-49907] = "fixed-version: Fixed from version 6.12" | ||
| 11694 | |||
| 11695 | CVE_STATUS[CVE-2024-49908] = "fixed-version: Fixed from version 6.12" | ||
| 11696 | |||
| 11697 | CVE_STATUS[CVE-2024-49909] = "fixed-version: Fixed from version 6.12" | ||
| 11698 | |||
| 11699 | CVE_STATUS[CVE-2024-49910] = "fixed-version: Fixed from version 6.12" | ||
| 11700 | |||
| 11701 | CVE_STATUS[CVE-2024-49911] = "fixed-version: Fixed from version 6.12" | ||
| 11702 | |||
| 11703 | CVE_STATUS[CVE-2024-49912] = "fixed-version: Fixed from version 6.12" | ||
| 11704 | |||
| 11705 | CVE_STATUS[CVE-2024-49913] = "fixed-version: Fixed from version 6.12" | ||
| 11706 | |||
| 11707 | CVE_STATUS[CVE-2024-49914] = "fixed-version: Fixed from version 6.12" | ||
| 11708 | |||
| 11709 | CVE_STATUS[CVE-2024-49915] = "fixed-version: Fixed from version 6.12" | ||
| 11710 | |||
| 11711 | CVE_STATUS[CVE-2024-49916] = "fixed-version: Fixed from version 6.12" | ||
| 11712 | |||
| 11713 | CVE_STATUS[CVE-2024-49917] = "fixed-version: Fixed from version 6.12" | ||
| 11714 | |||
| 11715 | CVE_STATUS[CVE-2024-49918] = "fixed-version: Fixed from version 6.12" | ||
| 11716 | |||
| 11717 | CVE_STATUS[CVE-2024-49919] = "fixed-version: Fixed from version 6.12" | ||
| 11718 | |||
| 11719 | CVE_STATUS[CVE-2024-49920] = "fixed-version: Fixed from version 6.12" | ||
| 11720 | |||
| 11721 | CVE_STATUS[CVE-2024-49921] = "fixed-version: Fixed from version 6.12" | ||
| 11722 | |||
| 11723 | CVE_STATUS[CVE-2024-49922] = "fixed-version: Fixed from version 6.12" | ||
| 11724 | |||
| 11725 | CVE_STATUS[CVE-2024-49923] = "fixed-version: Fixed from version 6.12" | ||
| 11726 | |||
| 11727 | CVE_STATUS[CVE-2024-49924] = "fixed-version: Fixed from version 6.12" | ||
| 11728 | |||
| 11729 | CVE_STATUS[CVE-2024-49925] = "fixed-version: Fixed from version 6.12" | ||
| 11730 | |||
| 11731 | CVE_STATUS[CVE-2024-49926] = "fixed-version: Fixed from version 6.12" | ||
| 11732 | |||
| 11733 | CVE_STATUS[CVE-2024-49927] = "fixed-version: Fixed from version 6.12" | ||
| 11734 | |||
| 11735 | CVE_STATUS[CVE-2024-49928] = "fixed-version: Fixed from version 6.12" | ||
| 11736 | |||
| 11737 | CVE_STATUS[CVE-2024-49929] = "fixed-version: Fixed from version 6.12" | ||
| 11738 | |||
| 11739 | CVE_STATUS[CVE-2024-49930] = "fixed-version: Fixed from version 6.12" | ||
| 11740 | |||
| 11741 | CVE_STATUS[CVE-2024-49931] = "fixed-version: Fixed from version 6.12" | ||
| 11742 | |||
| 11743 | CVE_STATUS[CVE-2024-49932] = "fixed-version: Fixed from version 6.12" | ||
| 11744 | |||
| 11745 | CVE_STATUS[CVE-2024-49933] = "fixed-version: Fixed from version 6.12" | ||
| 11746 | |||
| 11747 | CVE_STATUS[CVE-2024-49934] = "fixed-version: Fixed from version 6.12" | ||
| 11748 | |||
| 11749 | CVE_STATUS[CVE-2024-49935] = "fixed-version: Fixed from version 6.12" | ||
| 11750 | |||
| 11751 | CVE_STATUS[CVE-2024-49936] = "fixed-version: Fixed from version 6.12" | ||
| 11752 | |||
| 11753 | CVE_STATUS[CVE-2024-49937] = "fixed-version: Fixed from version 6.12" | ||
| 11754 | |||
| 11755 | CVE_STATUS[CVE-2024-49938] = "fixed-version: Fixed from version 6.12" | ||
| 11756 | |||
| 11757 | CVE_STATUS[CVE-2024-49939] = "fixed-version: Fixed from version 6.12" | ||
| 11758 | |||
| 11759 | CVE_STATUS[CVE-2024-49940] = "fixed-version: Fixed from version 6.12" | ||
| 11760 | |||
| 11761 | CVE_STATUS[CVE-2024-49941] = "fixed-version: Fixed from version 6.12" | ||
| 11762 | |||
| 11763 | CVE_STATUS[CVE-2024-49942] = "fixed-version: Fixed from version 6.12" | ||
| 11764 | |||
| 11765 | CVE_STATUS[CVE-2024-49943] = "fixed-version: Fixed from version 6.12" | ||
| 11766 | |||
| 11767 | CVE_STATUS[CVE-2024-49944] = "fixed-version: Fixed from version 6.12" | ||
| 11768 | |||
| 11769 | CVE_STATUS[CVE-2024-49945] = "fixed-version: Fixed from version 6.12" | ||
| 11770 | |||
| 11771 | CVE_STATUS[CVE-2024-49946] = "fixed-version: Fixed from version 6.12" | ||
| 11772 | |||
| 11773 | CVE_STATUS[CVE-2024-49947] = "fixed-version: Fixed from version 6.12" | ||
| 11774 | |||
| 11775 | CVE_STATUS[CVE-2024-49948] = "fixed-version: Fixed from version 6.12" | ||
| 11776 | |||
| 11777 | CVE_STATUS[CVE-2024-49949] = "fixed-version: Fixed from version 6.12" | ||
| 11778 | |||
| 11779 | CVE_STATUS[CVE-2024-49950] = "fixed-version: Fixed from version 6.12" | ||
| 11780 | |||
| 11781 | CVE_STATUS[CVE-2024-49951] = "fixed-version: Fixed from version 6.12" | ||
| 11782 | |||
| 11783 | CVE_STATUS[CVE-2024-49952] = "fixed-version: Fixed from version 6.12" | ||
| 11784 | |||
| 11785 | CVE_STATUS[CVE-2024-49953] = "fixed-version: Fixed from version 6.12" | ||
| 11786 | |||
| 11787 | CVE_STATUS[CVE-2024-49954] = "fixed-version: Fixed from version 6.12" | ||
| 11788 | |||
| 11789 | CVE_STATUS[CVE-2024-49955] = "fixed-version: Fixed from version 6.12" | ||
| 11790 | |||
| 11791 | CVE_STATUS[CVE-2024-49956] = "fixed-version: Fixed from version 6.12" | ||
| 11792 | |||
| 11793 | CVE_STATUS[CVE-2024-49957] = "fixed-version: Fixed from version 6.12" | ||
| 11794 | |||
| 11795 | CVE_STATUS[CVE-2024-49958] = "fixed-version: Fixed from version 6.12" | ||
| 11796 | |||
| 11797 | CVE_STATUS[CVE-2024-49959] = "fixed-version: Fixed from version 6.12" | ||
| 11798 | |||
| 11799 | CVE_STATUS[CVE-2024-49960] = "fixed-version: Fixed from version 6.12" | ||
| 11800 | |||
| 11801 | CVE_STATUS[CVE-2024-49961] = "fixed-version: Fixed from version 6.12" | ||
| 11802 | |||
| 11803 | CVE_STATUS[CVE-2024-49962] = "fixed-version: Fixed from version 6.12" | ||
| 11804 | |||
| 11805 | CVE_STATUS[CVE-2024-49963] = "fixed-version: Fixed from version 6.12" | ||
| 11806 | |||
| 11807 | CVE_STATUS[CVE-2024-49964] = "fixed-version: Fixed from version 6.12" | ||
| 11808 | |||
| 11809 | CVE_STATUS[CVE-2024-49965] = "fixed-version: Fixed from version 6.12" | ||
| 11810 | |||
| 11811 | CVE_STATUS[CVE-2024-49966] = "fixed-version: Fixed from version 6.12" | ||
| 11812 | |||
| 11813 | CVE_STATUS[CVE-2024-49968] = "fixed-version: Fixed from version 6.12" | ||
| 11814 | |||
| 11815 | CVE_STATUS[CVE-2024-49969] = "fixed-version: Fixed from version 6.12" | ||
| 11816 | |||
| 11817 | CVE_STATUS[CVE-2024-49970] = "fixed-version: Fixed from version 6.12" | ||
| 11818 | |||
| 11819 | CVE_STATUS[CVE-2024-49971] = "fixed-version: Fixed from version 6.12" | ||
| 11820 | |||
| 11821 | CVE_STATUS[CVE-2024-49972] = "fixed-version: Fixed from version 6.12" | ||
| 11822 | |||
| 11823 | CVE_STATUS[CVE-2024-49973] = "fixed-version: Fixed from version 6.12" | ||
| 11824 | |||
| 11825 | CVE_STATUS[CVE-2024-49974] = "fixed-version: Fixed from version 6.12" | ||
| 11826 | |||
| 11827 | CVE_STATUS[CVE-2024-49975] = "fixed-version: Fixed from version 6.12" | ||
| 11828 | |||
| 11829 | CVE_STATUS[CVE-2024-49976] = "fixed-version: Fixed from version 6.12" | ||
| 11830 | |||
| 11831 | CVE_STATUS[CVE-2024-49977] = "fixed-version: Fixed from version 6.12" | ||
| 11832 | |||
| 11833 | CVE_STATUS[CVE-2024-49978] = "fixed-version: Fixed from version 6.12" | ||
| 11834 | |||
| 11835 | CVE_STATUS[CVE-2024-49979] = "fixed-version: Fixed from version 6.12" | ||
| 11836 | |||
| 11837 | CVE_STATUS[CVE-2024-49980] = "fixed-version: Fixed from version 6.12" | ||
| 11838 | |||
| 11839 | CVE_STATUS[CVE-2024-49981] = "fixed-version: Fixed from version 6.12" | ||
| 11840 | |||
| 11841 | CVE_STATUS[CVE-2024-49982] = "fixed-version: Fixed from version 6.12" | ||
| 11842 | |||
| 11843 | CVE_STATUS[CVE-2024-49983] = "fixed-version: Fixed from version 6.12" | ||
| 11844 | |||
| 11845 | CVE_STATUS[CVE-2024-49984] = "fixed-version: Fixed from version 6.12" | ||
| 11846 | |||
| 11847 | CVE_STATUS[CVE-2024-49985] = "fixed-version: Fixed from version 6.12" | ||
| 11848 | |||
| 11849 | CVE_STATUS[CVE-2024-49986] = "fixed-version: Fixed from version 6.12" | ||
| 11850 | |||
| 11851 | CVE_STATUS[CVE-2024-49987] = "fixed-version: Fixed from version 6.12" | ||
| 11852 | |||
| 11853 | CVE_STATUS[CVE-2024-49988] = "fixed-version: Fixed from version 6.12" | ||
| 11854 | |||
| 11855 | CVE_STATUS[CVE-2024-49989] = "fixed-version: Fixed from version 6.12" | ||
| 11856 | |||
| 11857 | CVE_STATUS[CVE-2024-49990] = "fixed-version: Fixed from version 6.12" | ||
| 11858 | |||
| 11859 | CVE_STATUS[CVE-2024-49991] = "fixed-version: Fixed from version 6.12" | ||
| 11860 | |||
| 11861 | CVE_STATUS[CVE-2024-49992] = "fixed-version: Fixed from version 6.12" | ||
| 11862 | |||
| 11863 | CVE_STATUS[CVE-2024-49994] = "fixed-version: Fixed from version 6.12" | ||
| 11864 | |||
| 11865 | CVE_STATUS[CVE-2024-49996] = "fixed-version: Fixed from version 6.12" | ||
| 11866 | |||
| 11867 | CVE_STATUS[CVE-2024-49997] = "fixed-version: Fixed from version 6.12" | ||
| 11868 | |||
| 11869 | CVE_STATUS[CVE-2024-49998] = "fixed-version: Fixed from version 6.12" | ||
| 11870 | |||
| 11871 | CVE_STATUS[CVE-2024-49999] = "fixed-version: Fixed from version 6.12" | ||
| 11872 | |||
| 11873 | CVE_STATUS[CVE-2024-50000] = "fixed-version: Fixed from version 6.12" | ||
| 11874 | |||
| 11875 | CVE_STATUS[CVE-2024-50001] = "fixed-version: Fixed from version 6.12" | ||
| 11876 | |||
| 11877 | CVE_STATUS[CVE-2024-50002] = "fixed-version: Fixed from version 6.12" | ||
| 11878 | |||
| 11879 | CVE_STATUS[CVE-2024-50003] = "fixed-version: Fixed from version 6.12" | ||
| 11880 | |||
| 11881 | CVE_STATUS[CVE-2024-50004] = "fixed-version: Fixed from version 6.12" | ||
| 11882 | |||
| 11883 | CVE_STATUS[CVE-2024-50005] = "fixed-version: Fixed from version 6.12" | ||
| 11884 | |||
| 11885 | CVE_STATUS[CVE-2024-50006] = "fixed-version: Fixed from version 6.12" | ||
| 11886 | |||
| 11887 | CVE_STATUS[CVE-2024-50007] = "fixed-version: Fixed from version 6.12" | ||
| 11888 | |||
| 11889 | CVE_STATUS[CVE-2024-50008] = "fixed-version: Fixed from version 6.12" | ||
| 11890 | |||
| 11891 | CVE_STATUS[CVE-2024-50009] = "fixed-version: Fixed from version 6.12" | ||
| 11892 | |||
| 11893 | CVE_STATUS[CVE-2024-50010] = "fixed-version: Fixed from version 6.12" | ||
| 11894 | |||
| 11895 | CVE_STATUS[CVE-2024-50011] = "fixed-version: Fixed from version 6.12" | ||
| 11896 | |||
| 11897 | CVE_STATUS[CVE-2024-50012] = "fixed-version: Fixed from version 6.12" | ||
| 11898 | |||
| 11899 | CVE_STATUS[CVE-2024-50013] = "fixed-version: Fixed from version 6.12" | ||
| 11900 | |||
| 11901 | CVE_STATUS[CVE-2024-50014] = "fixed-version: Fixed from version 6.12" | ||
| 11902 | |||
| 11903 | CVE_STATUS[CVE-2024-50015] = "fixed-version: Fixed from version 6.12" | ||
| 11904 | |||
| 11905 | CVE_STATUS[CVE-2024-50017] = "fixed-version: Fixed from version 6.12" | ||
| 11906 | |||
| 11907 | CVE_STATUS[CVE-2024-50019] = "fixed-version: Fixed from version 6.12" | ||
| 11908 | |||
| 11909 | CVE_STATUS[CVE-2024-50020] = "fixed-version: Fixed from version 6.12" | ||
| 11910 | |||
| 11911 | CVE_STATUS[CVE-2024-50021] = "fixed-version: Fixed from version 6.12" | ||
| 11912 | |||
| 11913 | CVE_STATUS[CVE-2024-50022] = "fixed-version: Fixed from version 6.12" | ||
| 11914 | |||
| 11915 | CVE_STATUS[CVE-2024-50023] = "fixed-version: Fixed from version 6.12" | ||
| 11916 | |||
| 11917 | CVE_STATUS[CVE-2024-50024] = "fixed-version: Fixed from version 6.12" | ||
| 11918 | |||
| 11919 | CVE_STATUS[CVE-2024-50025] = "fixed-version: Fixed from version 6.12" | ||
| 11920 | |||
| 11921 | CVE_STATUS[CVE-2024-50026] = "fixed-version: Fixed from version 6.12" | ||
| 11922 | |||
| 11923 | CVE_STATUS[CVE-2024-50027] = "fixed-version: Fixed from version 6.12" | ||
| 11924 | |||
| 11925 | CVE_STATUS[CVE-2024-50028] = "fixed-version: Fixed from version 6.12" | ||
| 11926 | |||
| 11927 | CVE_STATUS[CVE-2024-50029] = "fixed-version: Fixed from version 6.12" | ||
| 11928 | |||
| 11929 | CVE_STATUS[CVE-2024-50030] = "fixed-version: Fixed from version 6.12" | ||
| 11930 | |||
| 11931 | CVE_STATUS[CVE-2024-50031] = "fixed-version: Fixed from version 6.12" | ||
| 11932 | |||
| 11933 | CVE_STATUS[CVE-2024-50033] = "fixed-version: Fixed from version 6.12" | ||
| 11934 | |||
| 11935 | CVE_STATUS[CVE-2024-50034] = "fixed-version: Fixed from version 6.12" | ||
| 11936 | |||
| 11937 | CVE_STATUS[CVE-2024-50035] = "fixed-version: Fixed from version 6.12" | ||
| 11938 | |||
| 11939 | CVE_STATUS[CVE-2024-50036] = "fixed-version: Fixed from version 6.12" | ||
| 11940 | |||
| 11941 | CVE_STATUS[CVE-2024-50037] = "fixed-version: Fixed from version 6.12" | ||
| 11942 | |||
| 11943 | CVE_STATUS[CVE-2024-50038] = "fixed-version: Fixed from version 6.12" | ||
| 11944 | |||
| 11945 | CVE_STATUS[CVE-2024-50039] = "fixed-version: Fixed from version 6.12" | ||
| 11946 | |||
| 11947 | CVE_STATUS[CVE-2024-50040] = "fixed-version: Fixed from version 6.12" | ||
| 11948 | |||
| 11949 | CVE_STATUS[CVE-2024-50041] = "fixed-version: Fixed from version 6.12" | ||
| 11950 | |||
| 11951 | CVE_STATUS[CVE-2024-50042] = "fixed-version: Fixed from version 6.12" | ||
| 11952 | |||
| 11953 | CVE_STATUS[CVE-2024-50043] = "fixed-version: Fixed from version 6.12" | ||
| 11954 | |||
| 11955 | CVE_STATUS[CVE-2024-50044] = "fixed-version: Fixed from version 6.12" | ||
| 11956 | |||
| 11957 | CVE_STATUS[CVE-2024-50045] = "fixed-version: Fixed from version 6.12" | ||
| 11958 | |||
| 11959 | CVE_STATUS[CVE-2024-50046] = "fixed-version: Fixed from version 6.12" | ||
| 11960 | |||
| 11961 | CVE_STATUS[CVE-2024-50047] = "fixed-version: Fixed from version 6.12" | ||
| 11962 | |||
| 11963 | CVE_STATUS[CVE-2024-50048] = "fixed-version: Fixed from version 6.12" | ||
| 11964 | |||
| 11965 | CVE_STATUS[CVE-2024-50049] = "fixed-version: Fixed from version 6.12" | ||
| 11966 | |||
| 11967 | CVE_STATUS[CVE-2024-50051] = "fixed-version: Fixed from version 6.13" | ||
| 11968 | |||
| 11969 | CVE_STATUS[CVE-2024-50055] = "fixed-version: Fixed from version 6.12" | ||
| 11970 | |||
| 11971 | CVE_STATUS[CVE-2024-50056] = "fixed-version: Fixed from version 6.12" | ||
| 11972 | |||
| 11973 | CVE_STATUS[CVE-2024-50057] = "fixed-version: Fixed from version 6.12" | ||
| 11974 | |||
| 11975 | CVE_STATUS[CVE-2024-50058] = "fixed-version: Fixed from version 6.12" | ||
| 11976 | |||
| 11977 | CVE_STATUS[CVE-2024-50059] = "fixed-version: Fixed from version 6.12" | ||
| 11978 | |||
| 11979 | CVE_STATUS[CVE-2024-50060] = "fixed-version: Fixed from version 6.12" | ||
| 11980 | |||
| 11981 | CVE_STATUS[CVE-2024-50061] = "fixed-version: Fixed from version 6.12" | ||
| 11982 | |||
| 11983 | CVE_STATUS[CVE-2024-50062] = "fixed-version: Fixed from version 6.12" | ||
| 11984 | |||
| 11985 | CVE_STATUS[CVE-2024-50063] = "fixed-version: Fixed from version 6.12" | ||
| 11986 | |||
| 11987 | CVE_STATUS[CVE-2024-50064] = "fixed-version: Fixed from version 6.12" | ||
| 11988 | |||
| 11989 | CVE_STATUS[CVE-2024-50065] = "fixed-version: Fixed from version 6.12" | ||
| 11990 | |||
| 11991 | CVE_STATUS[CVE-2024-50066] = "fixed-version: Fixed from version 6.12" | ||
| 11992 | |||
| 11993 | CVE_STATUS[CVE-2024-50067] = "fixed-version: Fixed from version 6.12" | ||
| 11994 | |||
| 11995 | CVE_STATUS[CVE-2024-50068] = "fixed-version: Fixed from version 6.12" | ||
| 11996 | |||
| 11997 | CVE_STATUS[CVE-2024-50069] = "fixed-version: Fixed from version 6.12" | ||
| 11998 | |||
| 11999 | CVE_STATUS[CVE-2024-50070] = "fixed-version: Fixed from version 6.12" | ||
| 12000 | |||
| 12001 | CVE_STATUS[CVE-2024-50071] = "fixed-version: Fixed from version 6.12" | ||
| 12002 | |||
| 12003 | CVE_STATUS[CVE-2024-50072] = "fixed-version: Fixed from version 6.12" | ||
| 12004 | |||
| 12005 | CVE_STATUS[CVE-2024-50073] = "fixed-version: Fixed from version 6.12" | ||
| 12006 | |||
| 12007 | CVE_STATUS[CVE-2024-50074] = "fixed-version: Fixed from version 6.12" | ||
| 12008 | |||
| 12009 | CVE_STATUS[CVE-2024-50075] = "fixed-version: Fixed from version 6.12" | ||
| 12010 | |||
| 12011 | CVE_STATUS[CVE-2024-50076] = "fixed-version: Fixed from version 6.12" | ||
| 12012 | |||
| 12013 | CVE_STATUS[CVE-2024-50077] = "fixed-version: Fixed from version 6.12" | ||
| 12014 | |||
| 12015 | CVE_STATUS[CVE-2024-50078] = "fixed-version: Fixed from version 6.12" | ||
| 12016 | |||
| 12017 | CVE_STATUS[CVE-2024-50079] = "fixed-version: Fixed from version 6.12" | ||
| 12018 | |||
| 12019 | CVE_STATUS[CVE-2024-50080] = "fixed-version: Fixed from version 6.12" | ||
| 12020 | |||
| 12021 | CVE_STATUS[CVE-2024-50081] = "fixed-version: Fixed from version 6.12" | ||
| 12022 | |||
| 12023 | CVE_STATUS[CVE-2024-50082] = "fixed-version: Fixed from version 6.12" | ||
| 12024 | |||
| 12025 | CVE_STATUS[CVE-2024-50083] = "fixed-version: Fixed from version 6.12" | ||
| 12026 | |||
| 12027 | CVE_STATUS[CVE-2024-50084] = "fixed-version: Fixed from version 6.12" | ||
| 12028 | |||
| 12029 | CVE_STATUS[CVE-2024-50085] = "fixed-version: Fixed from version 6.12" | ||
| 12030 | |||
| 12031 | CVE_STATUS[CVE-2024-50086] = "fixed-version: Fixed from version 6.12" | ||
| 12032 | |||
| 12033 | CVE_STATUS[CVE-2024-50087] = "fixed-version: Fixed from version 6.12" | ||
| 12034 | |||
| 12035 | CVE_STATUS[CVE-2024-50088] = "fixed-version: Fixed from version 6.12" | ||
| 12036 | |||
| 12037 | CVE_STATUS[CVE-2024-50090] = "fixed-version: Fixed from version 6.12" | ||
| 12038 | |||
| 12039 | CVE_STATUS[CVE-2024-50091] = "fixed-version: Fixed from version 6.12" | ||
| 12040 | |||
| 12041 | CVE_STATUS[CVE-2024-50092] = "fixed-version: Fixed from version 6.12" | ||
| 12042 | |||
| 12043 | CVE_STATUS[CVE-2024-50093] = "fixed-version: Fixed from version 6.12" | ||
| 12044 | |||
| 12045 | CVE_STATUS[CVE-2024-50094] = "fixed-version: Fixed from version 6.12" | ||
| 12046 | |||
| 12047 | CVE_STATUS[CVE-2024-50095] = "fixed-version: Fixed from version 6.12" | ||
| 12048 | |||
| 12049 | CVE_STATUS[CVE-2024-50096] = "fixed-version: Fixed from version 6.12" | ||
| 12050 | |||
| 12051 | CVE_STATUS[CVE-2024-50097] = "fixed-version: Fixed from version 6.11.4" | ||
| 12052 | |||
| 12053 | CVE_STATUS[CVE-2024-50098] = "fixed-version: Fixed from version 6.12" | ||
| 12054 | |||
| 12055 | CVE_STATUS[CVE-2024-50099] = "fixed-version: Fixed from version 6.12" | ||
| 12056 | |||
| 12057 | CVE_STATUS[CVE-2024-50100] = "fixed-version: Fixed from version 6.12" | ||
| 12058 | |||
| 12059 | CVE_STATUS[CVE-2024-50101] = "fixed-version: Fixed from version 6.12" | ||
| 12060 | |||
| 12061 | CVE_STATUS[CVE-2024-50102] = "fixed-version: Fixed from version 6.12" | ||
| 12062 | |||
| 12063 | CVE_STATUS[CVE-2024-50103] = "fixed-version: Fixed from version 6.12" | ||
| 12064 | |||
| 12065 | CVE_STATUS[CVE-2024-50104] = "fixed-version: Fixed from version 6.12" | ||
| 12066 | |||
| 12067 | CVE_STATUS[CVE-2024-50105] = "fixed-version: Fixed from version 6.12" | ||
| 12068 | |||
| 12069 | CVE_STATUS[CVE-2024-50106] = "fixed-version: Fixed from version 6.12" | ||
| 12070 | |||
| 12071 | CVE_STATUS[CVE-2024-50107] = "fixed-version: Fixed from version 6.12" | ||
| 12072 | |||
| 12073 | CVE_STATUS[CVE-2024-50108] = "fixed-version: Fixed from version 6.12" | ||
| 12074 | |||
| 12075 | CVE_STATUS[CVE-2024-50109] = "fixed-version: Fixed from version 6.12" | ||
| 12076 | |||
| 12077 | CVE_STATUS[CVE-2024-50110] = "fixed-version: Fixed from version 6.12" | ||
| 12078 | |||
| 12079 | CVE_STATUS[CVE-2024-50111] = "fixed-version: Fixed from version 6.12" | ||
| 12080 | |||
| 12081 | CVE_STATUS[CVE-2024-50112] = "fixed-version: Fixed from version 6.12" | ||
| 12082 | |||
| 12083 | CVE_STATUS[CVE-2024-50113] = "fixed-version: Fixed from version 6.12" | ||
| 12084 | |||
| 12085 | CVE_STATUS[CVE-2024-50114] = "fixed-version: Fixed from version 6.12" | ||
| 12086 | |||
| 12087 | CVE_STATUS[CVE-2024-50115] = "fixed-version: Fixed from version 6.12" | ||
| 12088 | |||
| 12089 | CVE_STATUS[CVE-2024-50116] = "fixed-version: Fixed from version 6.12" | ||
| 12090 | |||
| 12091 | CVE_STATUS[CVE-2024-50117] = "fixed-version: Fixed from version 6.12" | ||
| 12092 | |||
| 12093 | CVE_STATUS[CVE-2024-50118] = "fixed-version: Fixed from version 6.12" | ||
| 12094 | |||
| 12095 | CVE_STATUS[CVE-2024-50119] = "fixed-version: Fixed from version 6.12" | ||
| 12096 | |||
| 12097 | CVE_STATUS[CVE-2024-50120] = "fixed-version: Fixed from version 6.12" | ||
| 12098 | |||
| 12099 | CVE_STATUS[CVE-2024-50121] = "fixed-version: Fixed from version 6.12" | ||
| 12100 | |||
| 12101 | CVE_STATUS[CVE-2024-50122] = "fixed-version: Fixed from version 6.12" | ||
| 12102 | |||
| 12103 | CVE_STATUS[CVE-2024-50123] = "fixed-version: Fixed from version 6.12" | ||
| 12104 | |||
| 12105 | CVE_STATUS[CVE-2024-50124] = "fixed-version: Fixed from version 6.12" | ||
| 12106 | |||
| 12107 | CVE_STATUS[CVE-2024-50125] = "fixed-version: Fixed from version 6.12" | ||
| 12108 | |||
| 12109 | CVE_STATUS[CVE-2024-50126] = "fixed-version: Fixed from version 6.12" | ||
| 12110 | |||
| 12111 | CVE_STATUS[CVE-2024-50127] = "fixed-version: Fixed from version 6.12" | ||
| 12112 | |||
| 12113 | CVE_STATUS[CVE-2024-50128] = "fixed-version: Fixed from version 6.12" | ||
| 12114 | |||
| 12115 | CVE_STATUS[CVE-2024-50129] = "fixed-version: Fixed from version 6.12" | ||
| 12116 | |||
| 12117 | CVE_STATUS[CVE-2024-50130] = "fixed-version: Fixed from version 6.12" | ||
| 12118 | |||
| 12119 | CVE_STATUS[CVE-2024-50131] = "fixed-version: Fixed from version 6.12" | ||
| 12120 | |||
| 12121 | CVE_STATUS[CVE-2024-50132] = "fixed-version: Fixed from version 6.12" | ||
| 12122 | |||
| 12123 | CVE_STATUS[CVE-2024-50133] = "fixed-version: Fixed from version 6.12" | ||
| 12124 | |||
| 12125 | CVE_STATUS[CVE-2024-50134] = "fixed-version: Fixed from version 6.12" | ||
| 12126 | |||
| 12127 | CVE_STATUS[CVE-2024-50135] = "fixed-version: Fixed from version 6.12" | ||
| 12128 | |||
| 12129 | CVE_STATUS[CVE-2024-50136] = "fixed-version: Fixed from version 6.12" | ||
| 12130 | |||
| 12131 | CVE_STATUS[CVE-2024-50137] = "fixed-version: Fixed from version 6.12" | ||
| 12132 | |||
| 12133 | CVE_STATUS[CVE-2024-50138] = "fixed-version: Fixed from version 6.12" | ||
| 12134 | |||
| 12135 | CVE_STATUS[CVE-2024-50139] = "fixed-version: Fixed from version 6.12" | ||
| 12136 | |||
| 12137 | CVE_STATUS[CVE-2024-50140] = "fixed-version: Fixed from version 6.12" | ||
| 12138 | |||
| 12139 | CVE_STATUS[CVE-2024-50141] = "fixed-version: Fixed from version 6.12" | ||
| 12140 | |||
| 12141 | CVE_STATUS[CVE-2024-50142] = "fixed-version: Fixed from version 6.12" | ||
| 12142 | |||
| 12143 | CVE_STATUS[CVE-2024-50143] = "fixed-version: Fixed from version 6.12" | ||
| 12144 | |||
| 12145 | CVE_STATUS[CVE-2024-50144] = "fixed-version: Fixed from version 6.12" | ||
| 12146 | |||
| 12147 | CVE_STATUS[CVE-2024-50145] = "fixed-version: Fixed from version 6.12" | ||
| 12148 | |||
| 12149 | CVE_STATUS[CVE-2024-50146] = "fixed-version: Fixed from version 6.12" | ||
| 12150 | |||
| 12151 | CVE_STATUS[CVE-2024-50147] = "fixed-version: Fixed from version 6.12" | ||
| 12152 | |||
| 12153 | CVE_STATUS[CVE-2024-50148] = "fixed-version: Fixed from version 6.12" | ||
| 12154 | |||
| 12155 | CVE_STATUS[CVE-2024-50149] = "fixed-version: Fixed from version 6.12" | ||
| 12156 | |||
| 12157 | CVE_STATUS[CVE-2024-50150] = "fixed-version: Fixed from version 6.12" | ||
| 12158 | |||
| 12159 | CVE_STATUS[CVE-2024-50151] = "fixed-version: Fixed from version 6.12" | ||
| 12160 | |||
| 12161 | CVE_STATUS[CVE-2024-50152] = "fixed-version: Fixed from version 6.12" | ||
| 12162 | |||
| 12163 | CVE_STATUS[CVE-2024-50153] = "fixed-version: Fixed from version 6.12" | ||
| 12164 | |||
| 12165 | CVE_STATUS[CVE-2024-50154] = "fixed-version: Fixed from version 6.12" | ||
| 12166 | |||
| 12167 | CVE_STATUS[CVE-2024-50155] = "fixed-version: Fixed from version 6.12" | ||
| 12168 | |||
| 12169 | CVE_STATUS[CVE-2024-50156] = "fixed-version: Fixed from version 6.12" | ||
| 12170 | |||
| 12171 | CVE_STATUS[CVE-2024-50157] = "fixed-version: Fixed from version 6.12" | ||
| 12172 | |||
| 12173 | CVE_STATUS[CVE-2024-50158] = "fixed-version: Fixed from version 6.12" | ||
| 12174 | |||
| 12175 | CVE_STATUS[CVE-2024-50159] = "fixed-version: Fixed from version 6.12" | ||
| 12176 | |||
| 12177 | CVE_STATUS[CVE-2024-50160] = "fixed-version: Fixed from version 6.12" | ||
| 12178 | |||
| 12179 | CVE_STATUS[CVE-2024-50161] = "fixed-version: Fixed from version 6.12" | ||
| 12180 | |||
| 12181 | CVE_STATUS[CVE-2024-50162] = "fixed-version: Fixed from version 6.12" | ||
| 12182 | |||
| 12183 | CVE_STATUS[CVE-2024-50163] = "fixed-version: Fixed from version 6.12" | ||
| 12184 | |||
| 12185 | CVE_STATUS[CVE-2024-50164] = "fixed-version: Fixed from version 6.12" | ||
| 12186 | |||
| 12187 | CVE_STATUS[CVE-2024-50165] = "fixed-version: Fixed from version 6.12" | ||
| 12188 | |||
| 12189 | CVE_STATUS[CVE-2024-50166] = "fixed-version: Fixed from version 6.12" | ||
| 12190 | |||
| 12191 | CVE_STATUS[CVE-2024-50167] = "fixed-version: Fixed from version 6.12" | ||
| 12192 | |||
| 12193 | CVE_STATUS[CVE-2024-50168] = "fixed-version: Fixed from version 6.12" | ||
| 12194 | |||
| 12195 | CVE_STATUS[CVE-2024-50169] = "fixed-version: Fixed from version 6.12" | ||
| 12196 | |||
| 12197 | CVE_STATUS[CVE-2024-50170] = "fixed-version: Fixed from version 6.12" | ||
| 12198 | |||
| 12199 | CVE_STATUS[CVE-2024-50171] = "fixed-version: Fixed from version 6.12" | ||
| 12200 | |||
| 12201 | CVE_STATUS[CVE-2024-50172] = "fixed-version: Fixed from version 6.12" | ||
| 12202 | |||
| 12203 | CVE_STATUS[CVE-2024-50173] = "fixed-version: Fixed from version 6.12" | ||
| 12204 | |||
| 12205 | CVE_STATUS[CVE-2024-50174] = "fixed-version: Fixed from version 6.12" | ||
| 12206 | |||
| 12207 | CVE_STATUS[CVE-2024-50175] = "fixed-version: Fixed from version 6.12" | ||
| 12208 | |||
| 12209 | CVE_STATUS[CVE-2024-50176] = "fixed-version: Fixed from version 6.12" | ||
| 12210 | |||
| 12211 | CVE_STATUS[CVE-2024-50177] = "fixed-version: Fixed from version 6.12" | ||
| 12212 | |||
| 12213 | CVE_STATUS[CVE-2024-50178] = "fixed-version: Fixed from version 6.12" | ||
| 12214 | |||
| 12215 | CVE_STATUS[CVE-2024-50179] = "fixed-version: Fixed from version 6.12" | ||
| 12216 | |||
| 12217 | CVE_STATUS[CVE-2024-50180] = "fixed-version: Fixed from version 6.12" | ||
| 12218 | |||
| 12219 | CVE_STATUS[CVE-2024-50182] = "fixed-version: Fixed from version 6.12" | ||
| 12220 | |||
| 12221 | CVE_STATUS[CVE-2024-50183] = "fixed-version: Fixed from version 6.12" | ||
| 12222 | |||
| 12223 | CVE_STATUS[CVE-2024-50184] = "fixed-version: Fixed from version 6.12" | ||
| 12224 | |||
| 12225 | CVE_STATUS[CVE-2024-50185] = "fixed-version: Fixed from version 6.12" | ||
| 12226 | |||
| 12227 | CVE_STATUS[CVE-2024-50186] = "fixed-version: Fixed from version 6.12" | ||
| 12228 | |||
| 12229 | CVE_STATUS[CVE-2024-50187] = "fixed-version: Fixed from version 6.12" | ||
| 12230 | |||
| 12231 | CVE_STATUS[CVE-2024-50188] = "fixed-version: Fixed from version 6.12" | ||
| 12232 | |||
| 12233 | CVE_STATUS[CVE-2024-50189] = "fixed-version: Fixed from version 6.12" | ||
| 12234 | |||
| 12235 | CVE_STATUS[CVE-2024-50190] = "fixed-version: Fixed from version 6.12" | ||
| 12236 | |||
| 12237 | CVE_STATUS[CVE-2024-50191] = "fixed-version: Fixed from version 6.12" | ||
| 12238 | |||
| 12239 | CVE_STATUS[CVE-2024-50192] = "fixed-version: Fixed from version 6.12" | ||
| 12240 | |||
| 12241 | CVE_STATUS[CVE-2024-50193] = "fixed-version: Fixed from version 6.12" | ||
| 12242 | |||
| 12243 | CVE_STATUS[CVE-2024-50194] = "fixed-version: Fixed from version 6.12" | ||
| 12244 | |||
| 12245 | CVE_STATUS[CVE-2024-50195] = "fixed-version: Fixed from version 6.12" | ||
| 12246 | |||
| 12247 | CVE_STATUS[CVE-2024-50196] = "fixed-version: Fixed from version 6.12" | ||
| 12248 | |||
| 12249 | CVE_STATUS[CVE-2024-50197] = "fixed-version: Fixed from version 6.12" | ||
| 12250 | |||
| 12251 | CVE_STATUS[CVE-2024-50198] = "fixed-version: Fixed from version 6.12" | ||
| 12252 | |||
| 12253 | CVE_STATUS[CVE-2024-50199] = "fixed-version: Fixed from version 6.12" | ||
| 12254 | |||
| 12255 | CVE_STATUS[CVE-2024-50200] = "fixed-version: Fixed from version 6.12" | ||
| 12256 | |||
| 12257 | CVE_STATUS[CVE-2024-50201] = "fixed-version: Fixed from version 6.12" | ||
| 12258 | |||
| 12259 | CVE_STATUS[CVE-2024-50202] = "fixed-version: Fixed from version 6.12" | ||
| 12260 | |||
| 12261 | CVE_STATUS[CVE-2024-50203] = "fixed-version: Fixed from version 6.12" | ||
| 12262 | |||
| 12263 | CVE_STATUS[CVE-2024-50204] = "fixed-version: Fixed from version 6.12" | ||
| 12264 | |||
| 12265 | CVE_STATUS[CVE-2024-50205] = "fixed-version: Fixed from version 6.12" | ||
| 12266 | |||
| 12267 | CVE_STATUS[CVE-2024-50206] = "fixed-version: Fixed from version 6.12" | ||
| 12268 | |||
| 12269 | CVE_STATUS[CVE-2024-50207] = "fixed-version: Fixed from version 6.12" | ||
| 12270 | |||
| 12271 | CVE_STATUS[CVE-2024-50208] = "fixed-version: Fixed from version 6.12" | ||
| 12272 | |||
| 12273 | CVE_STATUS[CVE-2024-50209] = "fixed-version: Fixed from version 6.12" | ||
| 12274 | |||
| 12275 | CVE_STATUS[CVE-2024-50210] = "fixed-version: Fixed from version 6.11.6" | ||
| 12276 | |||
| 12277 | CVE_STATUS[CVE-2024-50211] = "fixed-version: Fixed from version 6.12" | ||
| 12278 | |||
| 12279 | CVE_STATUS[CVE-2024-50212] = "fixed-version: Fixed from version 6.12" | ||
| 12280 | |||
| 12281 | CVE_STATUS[CVE-2024-50213] = "fixed-version: Fixed from version 6.12" | ||
| 12282 | |||
| 12283 | CVE_STATUS[CVE-2024-50214] = "fixed-version: Fixed from version 6.12" | ||
| 12284 | |||
| 12285 | CVE_STATUS[CVE-2024-50215] = "fixed-version: Fixed from version 6.12" | ||
| 12286 | |||
| 12287 | CVE_STATUS[CVE-2024-50216] = "fixed-version: Fixed from version 6.12" | ||
| 12288 | |||
| 12289 | CVE_STATUS[CVE-2024-50217] = "fixed-version: Fixed from version 6.12" | ||
| 12290 | |||
| 12291 | CVE_STATUS[CVE-2024-50218] = "fixed-version: Fixed from version 6.12" | ||
| 12292 | |||
| 12293 | CVE_STATUS[CVE-2024-50220] = "fixed-version: Fixed from version 6.12" | ||
| 12294 | |||
| 12295 | CVE_STATUS[CVE-2024-50221] = "fixed-version: Fixed from version 6.12" | ||
| 12296 | |||
| 12297 | CVE_STATUS[CVE-2024-50222] = "fixed-version: Fixed from version 6.12" | ||
| 12298 | |||
| 12299 | CVE_STATUS[CVE-2024-50223] = "fixed-version: Fixed from version 6.12" | ||
| 12300 | |||
| 12301 | CVE_STATUS[CVE-2024-50224] = "fixed-version: Fixed from version 6.12" | ||
| 12302 | |||
| 12303 | CVE_STATUS[CVE-2024-50225] = "fixed-version: Fixed from version 6.12" | ||
| 12304 | |||
| 12305 | CVE_STATUS[CVE-2024-50226] = "fixed-version: Fixed from version 6.12" | ||
| 12306 | |||
| 12307 | CVE_STATUS[CVE-2024-50227] = "fixed-version: Fixed from version 6.12" | ||
| 12308 | |||
| 12309 | CVE_STATUS[CVE-2024-50229] = "fixed-version: Fixed from version 6.12" | ||
| 12310 | |||
| 12311 | CVE_STATUS[CVE-2024-50230] = "fixed-version: Fixed from version 6.12" | ||
| 12312 | |||
| 12313 | CVE_STATUS[CVE-2024-50231] = "fixed-version: Fixed from version 6.12" | ||
| 12314 | |||
| 12315 | CVE_STATUS[CVE-2024-50232] = "fixed-version: Fixed from version 6.12" | ||
| 12316 | |||
| 12317 | CVE_STATUS[CVE-2024-50233] = "fixed-version: Fixed from version 6.12" | ||
| 12318 | |||
| 12319 | CVE_STATUS[CVE-2024-50234] = "fixed-version: Fixed from version 6.12" | ||
| 12320 | |||
| 12321 | CVE_STATUS[CVE-2024-50235] = "fixed-version: Fixed from version 6.12" | ||
| 12322 | |||
| 12323 | CVE_STATUS[CVE-2024-50236] = "fixed-version: Fixed from version 6.12" | ||
| 12324 | |||
| 12325 | CVE_STATUS[CVE-2024-50237] = "fixed-version: Fixed from version 6.12" | ||
| 12326 | |||
| 12327 | CVE_STATUS[CVE-2024-50238] = "fixed-version: Fixed from version 6.12" | ||
| 12328 | |||
| 12329 | CVE_STATUS[CVE-2024-50239] = "fixed-version: Fixed from version 6.12" | ||
| 12330 | |||
| 12331 | CVE_STATUS[CVE-2024-50240] = "fixed-version: Fixed from version 6.12" | ||
| 12332 | |||
| 12333 | CVE_STATUS[CVE-2024-50241] = "fixed-version: Fixed from version 6.11.7" | ||
| 12334 | |||
| 12335 | CVE_STATUS[CVE-2024-50242] = "fixed-version: Fixed from version 6.12" | ||
| 12336 | |||
| 12337 | CVE_STATUS[CVE-2024-50243] = "fixed-version: Fixed from version 6.12" | ||
| 12338 | |||
| 12339 | CVE_STATUS[CVE-2024-50244] = "fixed-version: Fixed from version 6.12" | ||
| 12340 | |||
| 12341 | CVE_STATUS[CVE-2024-50245] = "fixed-version: Fixed from version 6.12" | ||
| 12342 | |||
| 12343 | CVE_STATUS[CVE-2024-50246] = "fixed-version: Fixed from version 6.12" | ||
| 12344 | |||
| 12345 | CVE_STATUS[CVE-2024-50247] = "fixed-version: Fixed from version 6.12" | ||
| 12346 | |||
| 12347 | CVE_STATUS[CVE-2024-50248] = "fixed-version: Fixed from version 6.12" | ||
| 12348 | |||
| 12349 | CVE_STATUS[CVE-2024-50249] = "fixed-version: Fixed from version 6.11.7" | ||
| 12350 | |||
| 12351 | CVE_STATUS[CVE-2024-50250] = "fixed-version: Fixed from version 6.12" | ||
| 12352 | |||
| 12353 | CVE_STATUS[CVE-2024-50251] = "fixed-version: Fixed from version 6.12" | ||
| 12354 | |||
| 12355 | CVE_STATUS[CVE-2024-50252] = "fixed-version: Fixed from version 6.12" | ||
| 12356 | |||
| 12357 | CVE_STATUS[CVE-2024-50253] = "fixed-version: Fixed from version 6.12" | ||
| 12358 | |||
| 12359 | CVE_STATUS[CVE-2024-50254] = "fixed-version: Fixed from version 6.12" | ||
| 12360 | |||
| 12361 | CVE_STATUS[CVE-2024-50255] = "fixed-version: Fixed from version 6.12" | ||
| 12362 | |||
| 12363 | CVE_STATUS[CVE-2024-50256] = "fixed-version: Fixed from version 6.12" | ||
| 12364 | |||
| 12365 | CVE_STATUS[CVE-2024-50257] = "fixed-version: Fixed from version 6.12" | ||
| 12366 | |||
| 12367 | CVE_STATUS[CVE-2024-50258] = "fixed-version: Fixed from version 6.12" | ||
| 12368 | |||
| 12369 | CVE_STATUS[CVE-2024-50259] = "fixed-version: Fixed from version 6.12" | ||
| 12370 | |||
| 12371 | CVE_STATUS[CVE-2024-50260] = "fixed-version: Fixed from version 6.12" | ||
| 12372 | |||
| 12373 | CVE_STATUS[CVE-2024-50261] = "fixed-version: Fixed from version 6.12" | ||
| 12374 | |||
| 12375 | CVE_STATUS[CVE-2024-50262] = "fixed-version: Fixed from version 6.12" | ||
| 12376 | |||
| 12377 | CVE_STATUS[CVE-2024-50263] = "fixed-version: Fixed from version 6.12" | ||
| 12378 | |||
| 12379 | CVE_STATUS[CVE-2024-50264] = "fixed-version: Fixed from version 6.12" | ||
| 12380 | |||
| 12381 | CVE_STATUS[CVE-2024-50265] = "fixed-version: Fixed from version 6.12" | ||
| 12382 | |||
| 12383 | CVE_STATUS[CVE-2024-50266] = "fixed-version: Fixed from version 6.12" | ||
| 12384 | |||
| 12385 | CVE_STATUS[CVE-2024-50267] = "fixed-version: Fixed from version 6.12" | ||
| 12386 | |||
| 12387 | CVE_STATUS[CVE-2024-50268] = "fixed-version: Fixed from version 6.12" | ||
| 12388 | |||
| 12389 | CVE_STATUS[CVE-2024-50269] = "fixed-version: Fixed from version 6.12" | ||
| 12390 | |||
| 12391 | CVE_STATUS[CVE-2024-50270] = "fixed-version: Fixed from version 6.12" | ||
| 12392 | |||
| 12393 | CVE_STATUS[CVE-2024-50271] = "fixed-version: Fixed from version 6.12" | ||
| 12394 | |||
| 12395 | CVE_STATUS[CVE-2024-50272] = "fixed-version: Fixed from version 6.12" | ||
| 12396 | |||
| 12397 | CVE_STATUS[CVE-2024-50273] = "fixed-version: Fixed from version 6.12" | ||
| 12398 | |||
| 12399 | CVE_STATUS[CVE-2024-50274] = "fixed-version: Fixed from version 6.12" | ||
| 12400 | |||
| 12401 | CVE_STATUS[CVE-2024-50275] = "fixed-version: Fixed from version 6.12" | ||
| 12402 | |||
| 12403 | CVE_STATUS[CVE-2024-50276] = "fixed-version: Fixed from version 6.12" | ||
| 12404 | |||
| 12405 | CVE_STATUS[CVE-2024-50277] = "fixed-version: Fixed from version 6.12" | ||
| 12406 | |||
| 12407 | CVE_STATUS[CVE-2024-50278] = "fixed-version: Fixed from version 6.12" | ||
| 12408 | |||
| 12409 | CVE_STATUS[CVE-2024-50279] = "fixed-version: Fixed from version 6.12" | ||
| 12410 | |||
| 12411 | CVE_STATUS[CVE-2024-50280] = "fixed-version: Fixed from version 6.12" | ||
| 12412 | |||
| 12413 | CVE_STATUS[CVE-2024-50281] = "fixed-version: Fixed from version 6.12" | ||
| 12414 | |||
| 12415 | CVE_STATUS[CVE-2024-50282] = "fixed-version: Fixed from version 6.12" | ||
| 12416 | |||
| 12417 | CVE_STATUS[CVE-2024-50283] = "fixed-version: Fixed from version 6.12" | ||
| 12418 | |||
| 12419 | CVE_STATUS[CVE-2024-50284] = "fixed-version: Fixed from version 6.12" | ||
| 12420 | |||
| 12421 | CVE_STATUS[CVE-2024-50285] = "fixed-version: Fixed from version 6.12" | ||
| 12422 | |||
| 12423 | CVE_STATUS[CVE-2024-50286] = "fixed-version: Fixed from version 6.12" | ||
| 12424 | |||
| 12425 | CVE_STATUS[CVE-2024-50287] = "fixed-version: Fixed from version 6.12" | ||
| 12426 | |||
| 12427 | CVE_STATUS[CVE-2024-50288] = "fixed-version: Fixed from version 6.12" | ||
| 12428 | |||
| 12429 | CVE_STATUS[CVE-2024-50289] = "fixed-version: Fixed from version 6.12" | ||
| 12430 | |||
| 12431 | CVE_STATUS[CVE-2024-50290] = "fixed-version: Fixed from version 6.12" | ||
| 12432 | |||
| 12433 | CVE_STATUS[CVE-2024-50291] = "fixed-version: Fixed from version 6.12" | ||
| 12434 | |||
| 12435 | CVE_STATUS[CVE-2024-50292] = "fixed-version: Fixed from version 6.12" | ||
| 12436 | |||
| 12437 | CVE_STATUS[CVE-2024-50293] = "fixed-version: Fixed from version 6.12" | ||
| 12438 | |||
| 12439 | CVE_STATUS[CVE-2024-50294] = "fixed-version: Fixed from version 6.12" | ||
| 12440 | |||
| 12441 | CVE_STATUS[CVE-2024-50295] = "fixed-version: Fixed from version 6.12" | ||
| 12442 | |||
| 12443 | CVE_STATUS[CVE-2024-50296] = "fixed-version: Fixed from version 6.12" | ||
| 12444 | |||
| 12445 | CVE_STATUS[CVE-2024-50297] = "fixed-version: Fixed from version 6.12" | ||
| 12446 | |||
| 12447 | CVE_STATUS[CVE-2024-50298] = "fixed-version: Fixed from version 6.12" | ||
| 12448 | |||
| 12449 | CVE_STATUS[CVE-2024-50299] = "fixed-version: Fixed from version 6.12" | ||
| 12450 | |||
| 12451 | CVE_STATUS[CVE-2024-50300] = "fixed-version: Fixed from version 6.12" | ||
| 12452 | |||
| 12453 | CVE_STATUS[CVE-2024-50301] = "fixed-version: Fixed from version 6.12" | ||
| 12454 | |||
| 12455 | CVE_STATUS[CVE-2024-50302] = "fixed-version: Fixed from version 6.12" | ||
| 12456 | |||
| 12457 | CVE_STATUS[CVE-2024-50303] = "fixed-version: Fixed from version 6.12" | ||
| 12458 | |||
| 12459 | CVE_STATUS[CVE-2024-50304] = "fixed-version: Fixed from version 6.12" | ||
| 12460 | |||
| 12461 | CVE_STATUS[CVE-2024-51729] = "fixed-version: Fixed from version 6.13" | ||
| 12462 | |||
| 12463 | CVE_STATUS[CVE-2024-52319] = "fixed-version: Fixed from version 6.13" | ||
| 12464 | |||
| 12465 | CVE_STATUS[CVE-2024-52332] = "fixed-version: Fixed from version 6.13" | ||
| 12466 | |||
| 12467 | CVE_STATUS[CVE-2024-52557] = "fixed-version: Fixed from version 6.14" | ||
| 12468 | |||
| 12469 | CVE_STATUS[CVE-2024-52559] = "fixed-version: Fixed from version 6.14" | ||
| 12470 | |||
| 12471 | CVE_STATUS[CVE-2024-52560] = "fixed-version: Fixed from version 6.14" | ||
| 12472 | |||
| 12473 | CVE_STATUS[CVE-2024-53042] = "fixed-version: Fixed from version 6.12" | ||
| 12474 | |||
| 12475 | CVE_STATUS[CVE-2024-53043] = "fixed-version: Fixed from version 6.12" | ||
| 12476 | |||
| 12477 | CVE_STATUS[CVE-2024-53044] = "fixed-version: Fixed from version 6.12" | ||
| 12478 | |||
| 12479 | CVE_STATUS[CVE-2024-53045] = "fixed-version: Fixed from version 6.12" | ||
| 12480 | |||
| 12481 | CVE_STATUS[CVE-2024-53046] = "fixed-version: Fixed from version 6.12" | ||
| 12482 | |||
| 12483 | CVE_STATUS[CVE-2024-53047] = "fixed-version: Fixed from version 6.12" | ||
| 12484 | |||
| 12485 | CVE_STATUS[CVE-2024-53048] = "fixed-version: Fixed from version 6.12" | ||
| 12486 | |||
| 12487 | CVE_STATUS[CVE-2024-53049] = "fixed-version: Fixed from version 6.12" | ||
| 12488 | |||
| 12489 | CVE_STATUS[CVE-2024-53050] = "fixed-version: Fixed from version 6.12" | ||
| 12490 | |||
| 12491 | CVE_STATUS[CVE-2024-53051] = "fixed-version: Fixed from version 6.12" | ||
| 12492 | |||
| 12493 | CVE_STATUS[CVE-2024-53052] = "fixed-version: Fixed from version 6.12" | ||
| 12494 | |||
| 12495 | CVE_STATUS[CVE-2024-53053] = "fixed-version: Fixed from version 6.12" | ||
| 12496 | |||
| 12497 | CVE_STATUS[CVE-2024-53055] = "fixed-version: Fixed from version 6.12" | ||
| 12498 | |||
| 12499 | CVE_STATUS[CVE-2024-53056] = "fixed-version: Fixed from version 6.12" | ||
| 12500 | |||
| 12501 | CVE_STATUS[CVE-2024-53057] = "fixed-version: Fixed from version 6.12" | ||
| 12502 | |||
| 12503 | CVE_STATUS[CVE-2024-53058] = "fixed-version: Fixed from version 6.12" | ||
| 12504 | |||
| 12505 | CVE_STATUS[CVE-2024-53059] = "fixed-version: Fixed from version 6.12" | ||
| 12506 | |||
| 12507 | CVE_STATUS[CVE-2024-53060] = "fixed-version: Fixed from version 6.11.8" | ||
| 12508 | |||
| 12509 | CVE_STATUS[CVE-2024-53061] = "fixed-version: Fixed from version 6.12" | ||
| 12510 | |||
| 12511 | CVE_STATUS[CVE-2024-53062] = "fixed-version: Fixed from version 6.12" | ||
| 12512 | |||
| 12513 | CVE_STATUS[CVE-2024-53063] = "fixed-version: Fixed from version 6.12" | ||
| 12514 | |||
| 12515 | CVE_STATUS[CVE-2024-53064] = "fixed-version: Fixed from version 6.12" | ||
| 12516 | |||
| 12517 | CVE_STATUS[CVE-2024-53065] = "fixed-version: Fixed from version 6.12" | ||
| 12518 | |||
| 12519 | CVE_STATUS[CVE-2024-53066] = "fixed-version: Fixed from version 6.12" | ||
| 12520 | |||
| 12521 | CVE_STATUS[CVE-2024-53067] = "fixed-version: Fixed from version 6.12" | ||
| 12522 | |||
| 12523 | CVE_STATUS[CVE-2024-53068] = "fixed-version: Fixed from version 6.12" | ||
| 12524 | |||
| 12525 | CVE_STATUS[CVE-2024-53069] = "fixed-version: Fixed from version 6.12" | ||
| 12526 | |||
| 12527 | CVE_STATUS[CVE-2024-53070] = "fixed-version: Fixed from version 6.11.8" | ||
| 12528 | |||
| 12529 | CVE_STATUS[CVE-2024-53071] = "fixed-version: Fixed from version 6.12" | ||
| 12530 | |||
| 12531 | CVE_STATUS[CVE-2024-53072] = "fixed-version: Fixed from version 6.12" | ||
| 12532 | |||
| 12533 | CVE_STATUS[CVE-2024-53073] = "fixed-version: Fixed from version 6.11.7" | ||
| 12534 | |||
| 12535 | CVE_STATUS[CVE-2024-53074] = "fixed-version: Fixed from version 6.12" | ||
| 12536 | |||
| 12537 | CVE_STATUS[CVE-2024-53075] = "fixed-version: Fixed from version 6.12" | ||
| 12538 | |||
| 12539 | CVE_STATUS[CVE-2024-53076] = "fixed-version: Fixed from version 6.12" | ||
| 12540 | |||
| 12541 | CVE_STATUS[CVE-2024-53077] = "fixed-version: Fixed from version 6.12" | ||
| 12542 | |||
| 12543 | CVE_STATUS[CVE-2024-53078] = "fixed-version: Fixed from version 6.12" | ||
| 12544 | |||
| 12545 | CVE_STATUS[CVE-2024-53079] = "fixed-version: Fixed from version 6.12" | ||
| 12546 | |||
| 12547 | CVE_STATUS[CVE-2024-53080] = "fixed-version: Fixed from version 6.12" | ||
| 12548 | |||
| 12549 | CVE_STATUS[CVE-2024-53081] = "fixed-version: Fixed from version 6.12" | ||
| 12550 | |||
| 12551 | CVE_STATUS[CVE-2024-53082] = "fixed-version: Fixed from version 6.12" | ||
| 12552 | |||
| 12553 | CVE_STATUS[CVE-2024-53083] = "fixed-version: Fixed from version 6.12" | ||
| 12554 | |||
| 12555 | CVE_STATUS[CVE-2024-53084] = "fixed-version: Fixed from version 6.12" | ||
| 12556 | |||
| 12557 | CVE_STATUS[CVE-2024-53085] = "fixed-version: Fixed from version 6.12" | ||
| 12558 | |||
| 12559 | CVE_STATUS[CVE-2024-53086] = "fixed-version: Fixed from version 6.12" | ||
| 12560 | |||
| 12561 | CVE_STATUS[CVE-2024-53087] = "fixed-version: Fixed from version 6.12" | ||
| 12562 | |||
| 12563 | CVE_STATUS[CVE-2024-53088] = "fixed-version: Fixed from version 6.12" | ||
| 12564 | |||
| 12565 | CVE_STATUS[CVE-2024-53089] = "fixed-version: Fixed from version 6.12" | ||
| 12566 | |||
| 12567 | CVE_STATUS[CVE-2024-53090] = "fixed-version: Fixed from version 6.12" | ||
| 12568 | |||
| 12569 | CVE_STATUS[CVE-2024-53091] = "fixed-version: Fixed from version 6.12" | ||
| 12570 | |||
| 12571 | CVE_STATUS[CVE-2024-53092] = "fixed-version: Fixed from version 6.12" | ||
| 12572 | |||
| 12573 | CVE_STATUS[CVE-2024-53093] = "fixed-version: Fixed from version 6.12" | ||
| 12574 | |||
| 12575 | CVE_STATUS[CVE-2024-53094] = "fixed-version: Fixed from version 6.12" | ||
| 12576 | |||
| 12577 | CVE_STATUS[CVE-2024-53095] = "fixed-version: Fixed from version 6.12" | ||
| 12578 | |||
| 12579 | CVE_STATUS[CVE-2024-53096] = "fixed-version: Fixed from version 6.12" | ||
| 12580 | |||
| 12581 | CVE_STATUS[CVE-2024-53097] = "fixed-version: Fixed from version 6.11.9" | ||
| 12582 | |||
| 12583 | CVE_STATUS[CVE-2024-53098] = "fixed-version: Fixed from version 6.12" | ||
| 12584 | |||
| 12585 | CVE_STATUS[CVE-2024-53099] = "fixed-version: Fixed from version 6.12" | ||
| 12586 | |||
| 12587 | CVE_STATUS[CVE-2024-53100] = "fixed-version: Fixed from version 6.12" | ||
| 12588 | |||
| 12589 | CVE_STATUS[CVE-2024-53101] = "fixed-version: Fixed from version 6.12" | ||
| 12590 | |||
| 12591 | CVE_STATUS[CVE-2024-53103] = "fixed-version: Fixed from version 6.13" | ||
| 12592 | |||
| 12593 | CVE_STATUS[CVE-2024-53104] = "fixed-version: Fixed from version 6.13" | ||
| 12594 | |||
| 12595 | CVE_STATUS[CVE-2024-53105] = "fixed-version: Fixed from version 6.12" | ||
| 12596 | |||
| 12597 | CVE_STATUS[CVE-2024-53106] = "fixed-version: Fixed from version 6.12" | ||
| 12598 | |||
| 12599 | CVE_STATUS[CVE-2024-53107] = "fixed-version: Fixed from version 6.12" | ||
| 12600 | |||
| 12601 | CVE_STATUS[CVE-2024-53108] = "fixed-version: Fixed from version 6.12" | ||
| 12602 | |||
| 12603 | CVE_STATUS[CVE-2024-53109] = "fixed-version: Fixed from version 6.12" | ||
| 12604 | |||
| 12605 | CVE_STATUS[CVE-2024-53110] = "fixed-version: Fixed from version 6.12" | ||
| 12606 | |||
| 12607 | CVE_STATUS[CVE-2024-53111] = "fixed-version: Fixed from version 6.12" | ||
| 12608 | |||
| 12609 | CVE_STATUS[CVE-2024-53112] = "fixed-version: Fixed from version 6.12" | ||
| 12610 | |||
| 12611 | CVE_STATUS[CVE-2024-53113] = "fixed-version: Fixed from version 6.12" | ||
| 12612 | |||
| 12613 | CVE_STATUS[CVE-2024-53114] = "fixed-version: Fixed from version 6.12" | ||
| 12614 | |||
| 12615 | CVE_STATUS[CVE-2024-53115] = "fixed-version: Fixed from version 6.12" | ||
| 12616 | |||
| 12617 | CVE_STATUS[CVE-2024-53116] = "fixed-version: Fixed from version 6.12" | ||
| 12618 | |||
| 12619 | CVE_STATUS[CVE-2024-53117] = "fixed-version: Fixed from version 6.12" | ||
| 12620 | |||
| 12621 | CVE_STATUS[CVE-2024-53118] = "fixed-version: Fixed from version 6.12" | ||
| 12622 | |||
| 12623 | CVE_STATUS[CVE-2024-53119] = "fixed-version: Fixed from version 6.12" | ||
| 12624 | |||
| 12625 | CVE_STATUS[CVE-2024-53120] = "fixed-version: Fixed from version 6.12" | ||
| 12626 | |||
| 12627 | CVE_STATUS[CVE-2024-53121] = "fixed-version: Fixed from version 6.12" | ||
| 12628 | |||
| 12629 | CVE_STATUS[CVE-2024-53122] = "fixed-version: Fixed from version 6.12" | ||
| 12630 | |||
| 12631 | CVE_STATUS[CVE-2024-53123] = "fixed-version: Fixed from version 6.12" | ||
| 12632 | |||
| 12633 | CVE_STATUS[CVE-2024-53124] = "fixed-version: Fixed from version 6.12" | ||
| 12634 | |||
| 12635 | CVE_STATUS[CVE-2024-53125] = "fixed-version: Fixed from version 6.12" | ||
| 12636 | |||
| 12637 | CVE_STATUS[CVE-2024-53126] = "fixed-version: Fixed from version 6.12" | ||
| 12638 | |||
| 12639 | CVE_STATUS[CVE-2024-53127] = "fixed-version: Fixed from version 6.12" | ||
| 12640 | |||
| 12641 | CVE_STATUS[CVE-2024-53128] = "fixed-version: Fixed from version 6.12" | ||
| 12642 | |||
| 12643 | CVE_STATUS[CVE-2024-53129] = "fixed-version: Fixed from version 6.12" | ||
| 12644 | |||
| 12645 | CVE_STATUS[CVE-2024-53130] = "fixed-version: Fixed from version 6.12" | ||
| 12646 | |||
| 12647 | CVE_STATUS[CVE-2024-53131] = "fixed-version: Fixed from version 6.12" | ||
| 12648 | |||
| 12649 | CVE_STATUS[CVE-2024-53132] = "fixed-version: Fixed from version 6.12" | ||
| 12650 | |||
| 12651 | CVE_STATUS[CVE-2024-53133] = "fixed-version: Fixed from version 6.12" | ||
| 12652 | |||
| 12653 | CVE_STATUS[CVE-2024-53134] = "fixed-version: Fixed from version 6.12" | ||
| 12654 | |||
| 12655 | CVE_STATUS[CVE-2024-53135] = "fixed-version: Fixed from version 6.12" | ||
| 12656 | |||
| 12657 | CVE_STATUS[CVE-2024-53136] = "fixed-version: Fixed from version 6.11.10" | ||
| 12658 | |||
| 12659 | CVE_STATUS[CVE-2024-53137] = "fixed-version: Fixed from version 6.12" | ||
| 12660 | |||
| 12661 | CVE_STATUS[CVE-2024-53138] = "fixed-version: Fixed from version 6.12" | ||
| 12662 | |||
| 12663 | CVE_STATUS[CVE-2024-53139] = "fixed-version: Fixed from version 6.12" | ||
| 12664 | |||
| 12665 | CVE_STATUS[CVE-2024-53140] = "fixed-version: Fixed from version 6.12" | ||
| 12666 | |||
| 12667 | CVE_STATUS[CVE-2024-53141] = "fixed-version: Fixed from version 6.13" | ||
| 12668 | |||
| 12669 | CVE_STATUS[CVE-2024-53142] = "fixed-version: Fixed from version 6.13" | ||
| 12670 | |||
| 12671 | CVE_STATUS[CVE-2024-53143] = "fixed-version: Fixed from version 6.13" | ||
| 12672 | |||
| 12673 | CVE_STATUS[CVE-2024-53144] = "fixed-version: Fixed from version 6.12" | ||
| 12674 | |||
| 12675 | CVE_STATUS[CVE-2024-53145] = "fixed-version: Fixed from version 6.13" | ||
| 12676 | |||
| 12677 | CVE_STATUS[CVE-2024-53146] = "fixed-version: Fixed from version 6.13" | ||
| 12678 | |||
| 12679 | CVE_STATUS[CVE-2024-53147] = "fixed-version: Fixed from version 6.13" | ||
| 12680 | |||
| 12681 | CVE_STATUS[CVE-2024-53148] = "fixed-version: Fixed from version 6.13" | ||
| 12682 | |||
| 12683 | CVE_STATUS[CVE-2024-53149] = "fixed-version: Fixed from version 6.13" | ||
| 12684 | |||
| 12685 | CVE_STATUS[CVE-2024-53150] = "fixed-version: Fixed from version 6.13" | ||
| 12686 | |||
| 12687 | CVE_STATUS[CVE-2024-53151] = "fixed-version: Fixed from version 6.13" | ||
| 12688 | |||
| 12689 | CVE_STATUS[CVE-2024-53152] = "fixed-version: Fixed from version 6.13" | ||
| 12690 | |||
| 12691 | CVE_STATUS[CVE-2024-53153] = "fixed-version: Fixed from version 6.13" | ||
| 12692 | |||
| 12693 | CVE_STATUS[CVE-2024-53154] = "fixed-version: Fixed from version 6.13" | ||
| 12694 | |||
| 12695 | CVE_STATUS[CVE-2024-53155] = "fixed-version: Fixed from version 6.13" | ||
| 12696 | |||
| 12697 | CVE_STATUS[CVE-2024-53156] = "fixed-version: Fixed from version 6.13" | ||
| 12698 | |||
| 12699 | CVE_STATUS[CVE-2024-53157] = "fixed-version: Fixed from version 6.13" | ||
| 12700 | |||
| 12701 | CVE_STATUS[CVE-2024-53158] = "fixed-version: Fixed from version 6.13" | ||
| 12702 | |||
| 12703 | CVE_STATUS[CVE-2024-53160] = "fixed-version: Fixed from version 6.13" | ||
| 12704 | |||
| 12705 | CVE_STATUS[CVE-2024-53161] = "fixed-version: Fixed from version 6.13" | ||
| 12706 | |||
| 12707 | CVE_STATUS[CVE-2024-53162] = "fixed-version: Fixed from version 6.13" | ||
| 12708 | |||
| 12709 | CVE_STATUS[CVE-2024-53163] = "fixed-version: Fixed from version 6.13" | ||
| 12710 | |||
| 12711 | CVE_STATUS[CVE-2024-53164] = "fixed-version: Fixed from version 6.13" | ||
| 12712 | |||
| 12713 | CVE_STATUS[CVE-2024-53165] = "fixed-version: Fixed from version 6.13" | ||
| 12714 | |||
| 12715 | CVE_STATUS[CVE-2024-53166] = "fixed-version: Fixed from version 6.13" | ||
| 12716 | |||
| 12717 | CVE_STATUS[CVE-2024-53167] = "fixed-version: Fixed from version 6.13" | ||
| 12718 | |||
| 12719 | CVE_STATUS[CVE-2024-53168] = "fixed-version: Fixed from version 6.13" | ||
| 12720 | |||
| 12721 | CVE_STATUS[CVE-2024-53169] = "fixed-version: Fixed from version 6.13" | ||
| 12722 | |||
| 12723 | CVE_STATUS[CVE-2024-53170] = "fixed-version: Fixed from version 6.13" | ||
| 12724 | |||
| 12725 | CVE_STATUS[CVE-2024-53171] = "fixed-version: Fixed from version 6.13" | ||
| 12726 | |||
| 12727 | CVE_STATUS[CVE-2024-53172] = "fixed-version: Fixed from version 6.13" | ||
| 12728 | |||
| 12729 | CVE_STATUS[CVE-2024-53173] = "fixed-version: Fixed from version 6.13" | ||
| 12730 | |||
| 12731 | CVE_STATUS[CVE-2024-53174] = "fixed-version: Fixed from version 6.13" | ||
| 12732 | |||
| 12733 | CVE_STATUS[CVE-2024-53175] = "fixed-version: Fixed from version 6.13" | ||
| 12734 | |||
| 12735 | CVE_STATUS[CVE-2024-53176] = "fixed-version: Fixed from version 6.13" | ||
| 12736 | |||
| 12737 | CVE_STATUS[CVE-2024-53177] = "fixed-version: Fixed from version 6.13" | ||
| 12738 | |||
| 12739 | CVE_STATUS[CVE-2024-53178] = "fixed-version: Fixed from version 6.13" | ||
| 12740 | |||
| 12741 | CVE_STATUS[CVE-2024-53179] = "fixed-version: Fixed from version 6.13" | ||
| 12742 | |||
| 12743 | CVE_STATUS[CVE-2024-53180] = "fixed-version: Fixed from version 6.13" | ||
| 12744 | |||
| 12745 | CVE_STATUS[CVE-2024-53181] = "fixed-version: Fixed from version 6.13" | ||
| 12746 | |||
| 12747 | CVE_STATUS[CVE-2024-53182] = "fixed-version: Fixed from version 6.13" | ||
| 12748 | |||
| 12749 | CVE_STATUS[CVE-2024-53183] = "fixed-version: Fixed from version 6.13" | ||
| 12750 | |||
| 12751 | CVE_STATUS[CVE-2024-53184] = "fixed-version: Fixed from version 6.13" | ||
| 12752 | |||
| 12753 | CVE_STATUS[CVE-2024-53185] = "fixed-version: Fixed from version 6.13" | ||
| 12754 | |||
| 12755 | CVE_STATUS[CVE-2024-53186] = "fixed-version: Fixed from version 6.13" | ||
| 12756 | |||
| 12757 | CVE_STATUS[CVE-2024-53187] = "fixed-version: Fixed from version 6.13" | ||
| 12758 | |||
| 12759 | CVE_STATUS[CVE-2024-53188] = "fixed-version: Fixed from version 6.13" | ||
| 12760 | |||
| 12761 | CVE_STATUS[CVE-2024-53189] = "fixed-version: Fixed from version 6.13" | ||
| 12762 | |||
| 12763 | CVE_STATUS[CVE-2024-53190] = "fixed-version: Fixed from version 6.13" | ||
| 12764 | |||
| 12765 | CVE_STATUS[CVE-2024-53191] = "fixed-version: Fixed from version 6.13" | ||
| 12766 | |||
| 12767 | CVE_STATUS[CVE-2024-53192] = "fixed-version: Fixed from version 6.13" | ||
| 12768 | |||
| 12769 | CVE_STATUS[CVE-2024-53193] = "fixed-version: Fixed from version 6.13" | ||
| 12770 | |||
| 12771 | CVE_STATUS[CVE-2024-53194] = "fixed-version: Fixed from version 6.13" | ||
| 12772 | |||
| 12773 | CVE_STATUS[CVE-2024-53195] = "fixed-version: Fixed from version 6.13" | ||
| 12774 | |||
| 12775 | CVE_STATUS[CVE-2024-53196] = "fixed-version: Fixed from version 6.13" | ||
| 12776 | |||
| 12777 | CVE_STATUS[CVE-2024-53197] = "fixed-version: Fixed from version 6.13" | ||
| 12778 | |||
| 12779 | CVE_STATUS[CVE-2024-53198] = "fixed-version: Fixed from version 6.13" | ||
| 12780 | |||
| 12781 | CVE_STATUS[CVE-2024-53199] = "fixed-version: Fixed from version 6.13" | ||
| 12782 | |||
| 12783 | CVE_STATUS[CVE-2024-53200] = "fixed-version: Fixed from version 6.13" | ||
| 12784 | |||
| 12785 | CVE_STATUS[CVE-2024-53201] = "fixed-version: Fixed from version 6.13" | ||
| 12786 | |||
| 12787 | CVE_STATUS[CVE-2024-53202] = "fixed-version: Fixed from version 6.13" | ||
| 12788 | |||
| 12789 | CVE_STATUS[CVE-2024-53203] = "fixed-version: Fixed from version 6.13" | ||
| 12790 | |||
| 12791 | CVE_STATUS[CVE-2024-53204] = "fixed-version: Fixed from version 6.13" | ||
| 12792 | |||
| 12793 | CVE_STATUS[CVE-2024-53205] = "fixed-version: Fixed from version 6.13" | ||
| 12794 | |||
| 12795 | CVE_STATUS[CVE-2024-53206] = "fixed-version: Fixed from version 6.13" | ||
| 12796 | |||
| 12797 | CVE_STATUS[CVE-2024-53207] = "fixed-version: Fixed from version 6.13" | ||
| 12798 | |||
| 12799 | CVE_STATUS[CVE-2024-53208] = "fixed-version: Fixed from version 6.13" | ||
| 12800 | |||
| 12801 | CVE_STATUS[CVE-2024-53209] = "fixed-version: Fixed from version 6.13" | ||
| 12802 | |||
| 12803 | CVE_STATUS[CVE-2024-53210] = "fixed-version: Fixed from version 6.13" | ||
| 12804 | |||
| 12805 | CVE_STATUS[CVE-2024-53211] = "fixed-version: Fixed from version 6.13" | ||
| 12806 | |||
| 12807 | CVE_STATUS[CVE-2024-53212] = "fixed-version: Fixed from version 6.13" | ||
| 12808 | |||
| 12809 | CVE_STATUS[CVE-2024-53213] = "fixed-version: Fixed from version 6.13" | ||
| 12810 | |||
| 12811 | CVE_STATUS[CVE-2024-53214] = "fixed-version: Fixed from version 6.13" | ||
| 12812 | |||
| 12813 | CVE_STATUS[CVE-2024-53215] = "fixed-version: Fixed from version 6.13" | ||
| 12814 | |||
| 12815 | CVE_STATUS[CVE-2024-53216] = "fixed-version: Fixed from version 6.13" | ||
| 12816 | |||
| 12817 | CVE_STATUS[CVE-2024-53217] = "fixed-version: Fixed from version 6.13" | ||
| 12818 | |||
| 12819 | CVE_STATUS[CVE-2024-53218] = "fixed-version: Fixed from version 6.13" | ||
| 12820 | |||
| 12821 | CVE_STATUS[CVE-2024-53219] = "fixed-version: Fixed from version 6.13" | ||
| 12822 | |||
| 12823 | CVE_STATUS[CVE-2024-53220] = "fixed-version: Fixed from version 6.13" | ||
| 12824 | |||
| 12825 | CVE_STATUS[CVE-2024-53221] = "fixed-version: Fixed from version 6.13" | ||
| 12826 | |||
| 12827 | CVE_STATUS[CVE-2024-53222] = "fixed-version: Fixed from version 6.13" | ||
| 12828 | |||
| 12829 | CVE_STATUS[CVE-2024-53223] = "fixed-version: Fixed from version 6.13" | ||
| 12830 | |||
| 12831 | CVE_STATUS[CVE-2024-53224] = "fixed-version: Fixed from version 6.13" | ||
| 12832 | |||
| 12833 | CVE_STATUS[CVE-2024-53225] = "fixed-version: Fixed from version 6.13" | ||
| 12834 | |||
| 12835 | CVE_STATUS[CVE-2024-53226] = "fixed-version: Fixed from version 6.13" | ||
| 12836 | |||
| 12837 | CVE_STATUS[CVE-2024-53227] = "fixed-version: Fixed from version 6.13" | ||
| 12838 | |||
| 12839 | CVE_STATUS[CVE-2024-53228] = "fixed-version: Fixed from version 6.13" | ||
| 12840 | |||
| 12841 | CVE_STATUS[CVE-2024-53229] = "fixed-version: Fixed from version 6.13" | ||
| 12842 | |||
| 12843 | CVE_STATUS[CVE-2024-53230] = "fixed-version: Fixed from version 6.13" | ||
| 12844 | |||
| 12845 | CVE_STATUS[CVE-2024-53231] = "fixed-version: Fixed from version 6.13" | ||
| 12846 | |||
| 12847 | CVE_STATUS[CVE-2024-53232] = "fixed-version: Fixed from version 6.13" | ||
| 12848 | |||
| 12849 | CVE_STATUS[CVE-2024-53233] = "fixed-version: Fixed from version 6.13" | ||
| 12850 | |||
| 12851 | CVE_STATUS[CVE-2024-53234] = "fixed-version: Fixed from version 6.13" | ||
| 12852 | |||
| 12853 | CVE_STATUS[CVE-2024-53235] = "fixed-version: Fixed from version 6.13" | ||
| 12854 | |||
| 12855 | CVE_STATUS[CVE-2024-53236] = "fixed-version: Fixed from version 6.13" | ||
| 12856 | |||
| 12857 | CVE_STATUS[CVE-2024-53237] = "fixed-version: Fixed from version 6.13" | ||
| 12858 | |||
| 12859 | CVE_STATUS[CVE-2024-53238] = "fixed-version: Fixed from version 6.13" | ||
| 12860 | |||
| 12861 | CVE_STATUS[CVE-2024-53239] = "fixed-version: Fixed from version 6.13" | ||
| 12862 | |||
| 12863 | CVE_STATUS[CVE-2024-53240] = "fixed-version: Fixed from version 6.13" | ||
| 12864 | |||
| 12865 | CVE_STATUS[CVE-2024-53241] = "fixed-version: Fixed from version 6.13" | ||
| 12866 | |||
| 12867 | CVE_STATUS[CVE-2024-53680] = "fixed-version: Fixed from version 6.13" | ||
| 12868 | |||
| 12869 | CVE_STATUS[CVE-2024-53681] = "fixed-version: Fixed from version 6.13" | ||
| 12870 | |||
| 12871 | CVE_STATUS[CVE-2024-53682] = "fixed-version: Fixed from version 6.13" | ||
| 12872 | |||
| 12873 | CVE_STATUS[CVE-2024-53685] = "fixed-version: Fixed from version 6.13" | ||
| 12874 | |||
| 12875 | CVE_STATUS[CVE-2024-53687] = "fixed-version: Fixed from version 6.13" | ||
| 12876 | |||
| 12877 | CVE_STATUS[CVE-2024-53690] = "fixed-version: Fixed from version 6.13" | ||
| 12878 | |||
| 12879 | CVE_STATUS[CVE-2024-54031] = "fixed-version: Fixed from version 6.12.9" | ||
| 12880 | |||
| 12881 | CVE_STATUS[CVE-2024-54191] = "fixed-version: Fixed from version 6.12.6" | ||
| 12882 | |||
| 12883 | CVE_STATUS[CVE-2024-54193] = "fixed-version: Fixed from version 6.13" | ||
| 12884 | |||
| 12885 | CVE_STATUS[CVE-2024-54455] = "fixed-version: Fixed from version 6.13" | ||
| 12886 | |||
| 12887 | CVE_STATUS[CVE-2024-54456] = "fixed-version: Fixed from version 6.14" | ||
| 12888 | |||
| 12889 | CVE_STATUS[CVE-2024-54458] = "fixed-version: Fixed from version 6.14" | ||
| 12890 | |||
| 12891 | CVE_STATUS[CVE-2024-54460] = "fixed-version: Fixed from version 6.13" | ||
| 12892 | |||
| 12893 | CVE_STATUS[CVE-2024-54683] = "fixed-version: Fixed from version 6.13" | ||
| 12894 | |||
| 12895 | CVE_STATUS[CVE-2024-55639] = "fixed-version: Fixed from version 6.13" | ||
| 12896 | |||
| 12897 | CVE_STATUS[CVE-2024-55641] = "fixed-version: Fixed from version 6.13" | ||
| 12898 | |||
| 12899 | CVE_STATUS[CVE-2024-55642] = "fixed-version: Fixed from version 6.13" | ||
| 12900 | |||
| 12901 | CVE_STATUS[CVE-2024-55881] = "fixed-version: Fixed from version 6.13" | ||
| 12902 | |||
| 12903 | CVE_STATUS[CVE-2024-55916] = "fixed-version: Fixed from version 6.13" | ||
| 12904 | |||
| 12905 | CVE_STATUS[CVE-2024-56368] = "fixed-version: Fixed from version 6.13" | ||
| 12906 | |||
| 12907 | CVE_STATUS[CVE-2024-56369] = "fixed-version: Fixed from version 6.13" | ||
| 12908 | |||
| 12909 | CVE_STATUS[CVE-2024-56372] = "fixed-version: Fixed from version 6.13" | ||
| 12910 | |||
| 12911 | CVE_STATUS[CVE-2024-56531] = "fixed-version: Fixed from version 6.13" | ||
| 12912 | |||
| 12913 | CVE_STATUS[CVE-2024-56532] = "fixed-version: Fixed from version 6.13" | ||
| 12914 | |||
| 12915 | CVE_STATUS[CVE-2024-56533] = "fixed-version: Fixed from version 6.13" | ||
| 12916 | |||
| 12917 | CVE_STATUS[CVE-2024-56534] = "fixed-version: Fixed from version 6.13" | ||
| 12918 | |||
| 12919 | CVE_STATUS[CVE-2024-56535] = "fixed-version: Fixed from version 6.13" | ||
| 12920 | |||
| 12921 | CVE_STATUS[CVE-2024-56536] = "fixed-version: Fixed from version 6.13" | ||
| 12922 | |||
| 12923 | CVE_STATUS[CVE-2024-56537] = "fixed-version: Fixed from version 6.13" | ||
| 12924 | |||
| 12925 | CVE_STATUS[CVE-2024-56538] = "fixed-version: Fixed from version 6.13" | ||
| 12926 | |||
| 12927 | CVE_STATUS[CVE-2024-56539] = "fixed-version: Fixed from version 6.13" | ||
| 12928 | |||
| 12929 | CVE_STATUS[CVE-2024-56540] = "fixed-version: Fixed from version 6.13" | ||
| 12930 | |||
| 12931 | CVE_STATUS[CVE-2024-56541] = "fixed-version: Fixed from version 6.13" | ||
| 12932 | |||
| 12933 | CVE_STATUS[CVE-2024-56542] = "fixed-version: Fixed from version 6.13" | ||
| 12934 | |||
| 12935 | CVE_STATUS[CVE-2024-56543] = "fixed-version: Fixed from version 6.13" | ||
| 12936 | |||
| 12937 | CVE_STATUS[CVE-2024-56544] = "fixed-version: Fixed from version 6.13" | ||
| 12938 | |||
| 12939 | CVE_STATUS[CVE-2024-56545] = "fixed-version: Fixed from version 6.13" | ||
| 12940 | |||
| 12941 | CVE_STATUS[CVE-2024-56546] = "fixed-version: Fixed from version 6.13" | ||
| 12942 | |||
| 12943 | CVE_STATUS[CVE-2024-56547] = "fixed-version: Fixed from version 6.13" | ||
| 12944 | |||
| 12945 | CVE_STATUS[CVE-2024-56548] = "fixed-version: Fixed from version 6.13" | ||
| 12946 | |||
| 12947 | CVE_STATUS[CVE-2024-56549] = "fixed-version: Fixed from version 6.13" | ||
| 12948 | |||
| 12949 | CVE_STATUS[CVE-2024-56550] = "fixed-version: Fixed from version 6.13" | ||
| 12950 | |||
| 12951 | CVE_STATUS[CVE-2024-56551] = "fixed-version: Fixed from version 6.13" | ||
| 12952 | |||
| 12953 | CVE_STATUS[CVE-2024-56552] = "fixed-version: Fixed from version 6.13" | ||
| 12954 | |||
| 12955 | CVE_STATUS[CVE-2024-56553] = "fixed-version: Fixed from version 6.13" | ||
| 12956 | |||
| 12957 | CVE_STATUS[CVE-2024-56554] = "fixed-version: Fixed from version 6.13" | ||
| 12958 | |||
| 12959 | CVE_STATUS[CVE-2024-56555] = "fixed-version: Fixed from version 6.13" | ||
| 12960 | |||
| 12961 | CVE_STATUS[CVE-2024-56556] = "fixed-version: Fixed from version 6.13" | ||
| 12962 | |||
| 12963 | CVE_STATUS[CVE-2024-56557] = "fixed-version: Fixed from version 6.13" | ||
| 12964 | |||
| 12965 | CVE_STATUS[CVE-2024-56558] = "fixed-version: Fixed from version 6.13" | ||
| 12966 | |||
| 12967 | CVE_STATUS[CVE-2024-56559] = "fixed-version: Fixed from version 6.13" | ||
| 12968 | |||
| 12969 | CVE_STATUS[CVE-2024-56560] = "fixed-version: Fixed from version 6.13" | ||
| 12970 | |||
| 12971 | CVE_STATUS[CVE-2024-56561] = "fixed-version: Fixed from version 6.13" | ||
| 12972 | |||
| 12973 | CVE_STATUS[CVE-2024-56562] = "fixed-version: Fixed from version 6.13" | ||
| 12974 | |||
| 12975 | CVE_STATUS[CVE-2024-56563] = "fixed-version: Fixed from version 6.13" | ||
| 12976 | |||
| 12977 | CVE_STATUS[CVE-2024-56564] = "fixed-version: Fixed from version 6.13" | ||
| 12978 | |||
| 12979 | CVE_STATUS[CVE-2024-56565] = "fixed-version: Fixed from version 6.13" | ||
| 12980 | |||
| 12981 | CVE_STATUS[CVE-2024-56566] = "fixed-version: Fixed from version 6.13" | ||
| 12982 | |||
| 12983 | CVE_STATUS[CVE-2024-56567] = "fixed-version: Fixed from version 6.13" | ||
| 12984 | |||
| 12985 | CVE_STATUS[CVE-2024-56568] = "fixed-version: Fixed from version 6.13" | ||
| 12986 | |||
| 12987 | CVE_STATUS[CVE-2024-56569] = "fixed-version: Fixed from version 6.13" | ||
| 12988 | |||
| 12989 | CVE_STATUS[CVE-2024-56570] = "fixed-version: Fixed from version 6.13" | ||
| 12990 | |||
| 12991 | CVE_STATUS[CVE-2024-56572] = "fixed-version: Fixed from version 6.13" | ||
| 12992 | |||
| 12993 | CVE_STATUS[CVE-2024-56573] = "fixed-version: Fixed from version 6.13" | ||
| 12994 | |||
| 12995 | CVE_STATUS[CVE-2024-56574] = "fixed-version: Fixed from version 6.13" | ||
| 12996 | |||
| 12997 | CVE_STATUS[CVE-2024-56575] = "fixed-version: Fixed from version 6.13" | ||
| 12998 | |||
| 12999 | CVE_STATUS[CVE-2024-56576] = "fixed-version: Fixed from version 6.13" | ||
| 13000 | |||
| 13001 | CVE_STATUS[CVE-2024-56577] = "fixed-version: Fixed from version 6.13" | ||
| 13002 | |||
| 13003 | CVE_STATUS[CVE-2024-56578] = "fixed-version: Fixed from version 6.13" | ||
| 13004 | |||
| 13005 | CVE_STATUS[CVE-2024-56579] = "fixed-version: Fixed from version 6.13" | ||
| 13006 | |||
| 13007 | CVE_STATUS[CVE-2024-56580] = "fixed-version: Fixed from version 6.13" | ||
| 13008 | |||
| 13009 | CVE_STATUS[CVE-2024-56581] = "fixed-version: Fixed from version 6.13" | ||
| 13010 | |||
| 13011 | CVE_STATUS[CVE-2024-56582] = "fixed-version: Fixed from version 6.13" | ||
| 13012 | |||
| 13013 | CVE_STATUS[CVE-2024-56583] = "fixed-version: Fixed from version 6.13" | ||
| 13014 | |||
| 13015 | CVE_STATUS[CVE-2024-56584] = "fixed-version: Fixed from version 6.13" | ||
| 13016 | |||
| 13017 | CVE_STATUS[CVE-2024-56585] = "fixed-version: Fixed from version 6.13" | ||
| 13018 | |||
| 13019 | CVE_STATUS[CVE-2024-56586] = "fixed-version: Fixed from version 6.13" | ||
| 13020 | |||
| 13021 | CVE_STATUS[CVE-2024-56587] = "fixed-version: Fixed from version 6.13" | ||
| 13022 | |||
| 13023 | CVE_STATUS[CVE-2024-56588] = "fixed-version: Fixed from version 6.13" | ||
| 13024 | |||
| 13025 | CVE_STATUS[CVE-2024-56589] = "fixed-version: Fixed from version 6.13" | ||
| 13026 | |||
| 13027 | CVE_STATUS[CVE-2024-56590] = "fixed-version: Fixed from version 6.13" | ||
| 13028 | |||
| 13029 | CVE_STATUS[CVE-2024-56591] = "fixed-version: Fixed from version 6.13" | ||
| 13030 | |||
| 13031 | CVE_STATUS[CVE-2024-56592] = "fixed-version: Fixed from version 6.13" | ||
| 13032 | |||
| 13033 | CVE_STATUS[CVE-2024-56593] = "fixed-version: Fixed from version 6.13" | ||
| 13034 | |||
| 13035 | CVE_STATUS[CVE-2024-56594] = "fixed-version: Fixed from version 6.13" | ||
| 13036 | |||
| 13037 | CVE_STATUS[CVE-2024-56595] = "fixed-version: Fixed from version 6.13" | ||
| 13038 | |||
| 13039 | CVE_STATUS[CVE-2024-56596] = "fixed-version: Fixed from version 6.13" | ||
| 13040 | |||
| 13041 | CVE_STATUS[CVE-2024-56597] = "fixed-version: Fixed from version 6.13" | ||
| 13042 | |||
| 13043 | CVE_STATUS[CVE-2024-56598] = "fixed-version: Fixed from version 6.13" | ||
| 13044 | |||
| 13045 | CVE_STATUS[CVE-2024-56599] = "fixed-version: Fixed from version 6.13" | ||
| 13046 | |||
| 13047 | CVE_STATUS[CVE-2024-56600] = "fixed-version: Fixed from version 6.13" | ||
| 13048 | |||
| 13049 | CVE_STATUS[CVE-2024-56601] = "fixed-version: Fixed from version 6.13" | ||
| 13050 | |||
| 13051 | CVE_STATUS[CVE-2024-56602] = "fixed-version: Fixed from version 6.13" | ||
| 13052 | |||
| 13053 | CVE_STATUS[CVE-2024-56603] = "fixed-version: Fixed from version 6.13" | ||
| 13054 | |||
| 13055 | CVE_STATUS[CVE-2024-56604] = "fixed-version: Fixed from version 6.13" | ||
| 13056 | |||
| 13057 | CVE_STATUS[CVE-2024-56605] = "fixed-version: Fixed from version 6.13" | ||
| 13058 | |||
| 13059 | CVE_STATUS[CVE-2024-56606] = "fixed-version: Fixed from version 6.13" | ||
| 13060 | |||
| 13061 | CVE_STATUS[CVE-2024-56607] = "fixed-version: Fixed from version 6.13" | ||
| 13062 | |||
| 13063 | CVE_STATUS[CVE-2024-56608] = "fixed-version: Fixed from version 6.13" | ||
| 13064 | |||
| 13065 | CVE_STATUS[CVE-2024-56609] = "fixed-version: Fixed from version 6.13" | ||
| 13066 | |||
| 13067 | CVE_STATUS[CVE-2024-56610] = "fixed-version: Fixed from version 6.13" | ||
| 13068 | |||
| 13069 | CVE_STATUS[CVE-2024-56611] = "fixed-version: Fixed from version 6.13" | ||
| 13070 | |||
| 13071 | CVE_STATUS[CVE-2024-56612] = "fixed-version: Fixed from version 6.13" | ||
| 13072 | |||
| 13073 | CVE_STATUS[CVE-2024-56613] = "fixed-version: Fixed from version 6.13" | ||
| 13074 | |||
| 13075 | CVE_STATUS[CVE-2024-56614] = "fixed-version: Fixed from version 6.13" | ||
| 13076 | |||
| 13077 | CVE_STATUS[CVE-2024-56615] = "fixed-version: Fixed from version 6.13" | ||
| 13078 | |||
| 13079 | CVE_STATUS[CVE-2024-56616] = "fixed-version: Fixed from version 6.13" | ||
| 13080 | |||
| 13081 | CVE_STATUS[CVE-2024-56617] = "fixed-version: Fixed from version 6.13" | ||
| 13082 | |||
| 13083 | CVE_STATUS[CVE-2024-56618] = "fixed-version: Fixed from version 6.13" | ||
| 13084 | |||
| 13085 | CVE_STATUS[CVE-2024-56619] = "fixed-version: Fixed from version 6.13" | ||
| 13086 | |||
| 13087 | CVE_STATUS[CVE-2024-56620] = "fixed-version: Fixed from version 6.13" | ||
| 13088 | |||
| 13089 | CVE_STATUS[CVE-2024-56621] = "fixed-version: Fixed from version 6.13" | ||
| 13090 | |||
| 13091 | CVE_STATUS[CVE-2024-56622] = "fixed-version: Fixed from version 6.13" | ||
| 13092 | |||
| 13093 | CVE_STATUS[CVE-2024-56623] = "fixed-version: Fixed from version 6.13" | ||
| 13094 | |||
| 13095 | CVE_STATUS[CVE-2024-56624] = "fixed-version: Fixed from version 6.13" | ||
| 13096 | |||
| 13097 | CVE_STATUS[CVE-2024-56625] = "fixed-version: Fixed from version 6.13" | ||
| 13098 | |||
| 13099 | CVE_STATUS[CVE-2024-56626] = "fixed-version: Fixed from version 6.13" | ||
| 13100 | |||
| 13101 | CVE_STATUS[CVE-2024-56627] = "fixed-version: Fixed from version 6.13" | ||
| 13102 | |||
| 13103 | CVE_STATUS[CVE-2024-56628] = "fixed-version: Fixed from version 6.13" | ||
| 13104 | |||
| 13105 | CVE_STATUS[CVE-2024-56629] = "fixed-version: Fixed from version 6.13" | ||
| 13106 | |||
| 13107 | CVE_STATUS[CVE-2024-56630] = "fixed-version: Fixed from version 6.13" | ||
| 13108 | |||
| 13109 | CVE_STATUS[CVE-2024-56631] = "fixed-version: Fixed from version 6.13" | ||
| 13110 | |||
| 13111 | CVE_STATUS[CVE-2024-56632] = "fixed-version: Fixed from version 6.13" | ||
| 13112 | |||
| 13113 | CVE_STATUS[CVE-2024-56633] = "fixed-version: Fixed from version 6.13" | ||
| 13114 | |||
| 13115 | CVE_STATUS[CVE-2024-56634] = "fixed-version: Fixed from version 6.13" | ||
| 13116 | |||
| 13117 | CVE_STATUS[CVE-2024-56635] = "fixed-version: Fixed from version 6.13" | ||
| 13118 | |||
| 13119 | CVE_STATUS[CVE-2024-56636] = "fixed-version: Fixed from version 6.13" | ||
| 13120 | |||
| 13121 | CVE_STATUS[CVE-2024-56637] = "fixed-version: Fixed from version 6.13" | ||
| 13122 | |||
| 13123 | CVE_STATUS[CVE-2024-56638] = "fixed-version: Fixed from version 6.13" | ||
| 13124 | |||
| 13125 | CVE_STATUS[CVE-2024-56639] = "fixed-version: Fixed from version 6.13" | ||
| 13126 | |||
| 13127 | CVE_STATUS[CVE-2024-56640] = "fixed-version: Fixed from version 6.13" | ||
| 13128 | |||
| 13129 | CVE_STATUS[CVE-2024-56641] = "fixed-version: Fixed from version 6.13" | ||
| 13130 | |||
| 13131 | CVE_STATUS[CVE-2024-56642] = "fixed-version: Fixed from version 6.13" | ||
| 13132 | |||
| 13133 | CVE_STATUS[CVE-2024-56643] = "fixed-version: Fixed from version 6.13" | ||
| 13134 | |||
| 13135 | CVE_STATUS[CVE-2024-56644] = "fixed-version: Fixed from version 6.13" | ||
| 13136 | |||
| 13137 | CVE_STATUS[CVE-2024-56645] = "fixed-version: Fixed from version 6.13" | ||
| 13138 | |||
| 13139 | CVE_STATUS[CVE-2024-56646] = "fixed-version: Fixed from version 6.13" | ||
| 13140 | |||
| 13141 | CVE_STATUS[CVE-2024-56647] = "fixed-version: Fixed from version 6.13" | ||
| 13142 | |||
| 13143 | CVE_STATUS[CVE-2024-56648] = "fixed-version: Fixed from version 6.13" | ||
| 13144 | |||
| 13145 | CVE_STATUS[CVE-2024-56649] = "fixed-version: Fixed from version 6.13" | ||
| 13146 | |||
| 13147 | CVE_STATUS[CVE-2024-56650] = "fixed-version: Fixed from version 6.13" | ||
| 13148 | |||
| 13149 | CVE_STATUS[CVE-2024-56651] = "fixed-version: Fixed from version 6.13" | ||
| 13150 | |||
| 13151 | CVE_STATUS[CVE-2024-56652] = "fixed-version: Fixed from version 6.13" | ||
| 13152 | |||
| 13153 | CVE_STATUS[CVE-2024-56653] = "fixed-version: Fixed from version 6.13" | ||
| 13154 | |||
| 13155 | CVE_STATUS[CVE-2024-56654] = "fixed-version: Fixed from version 6.13" | ||
| 13156 | |||
| 13157 | CVE_STATUS[CVE-2024-56655] = "fixed-version: Fixed from version 6.13" | ||
| 13158 | |||
| 13159 | CVE_STATUS[CVE-2024-56656] = "fixed-version: Fixed from version 6.13" | ||
| 13160 | |||
| 13161 | CVE_STATUS[CVE-2024-56657] = "fixed-version: Fixed from version 6.13" | ||
| 13162 | |||
| 13163 | CVE_STATUS[CVE-2024-56658] = "fixed-version: Fixed from version 6.13" | ||
| 13164 | |||
| 13165 | CVE_STATUS[CVE-2024-56659] = "fixed-version: Fixed from version 6.13" | ||
| 13166 | |||
| 13167 | CVE_STATUS[CVE-2024-56660] = "fixed-version: Fixed from version 6.13" | ||
| 13168 | |||
| 13169 | CVE_STATUS[CVE-2024-56661] = "fixed-version: Fixed from version 6.12.6" | ||
| 13170 | |||
| 13171 | CVE_STATUS[CVE-2024-56662] = "fixed-version: Fixed from version 6.13" | ||
| 13172 | |||
| 13173 | CVE_STATUS[CVE-2024-56663] = "fixed-version: Fixed from version 6.13" | ||
| 13174 | |||
| 13175 | CVE_STATUS[CVE-2024-56664] = "fixed-version: Fixed from version 6.13" | ||
| 13176 | |||
| 13177 | CVE_STATUS[CVE-2024-56665] = "fixed-version: Fixed from version 6.13" | ||
| 13178 | |||
| 13179 | CVE_STATUS[CVE-2024-56666] = "fixed-version: Fixed from version 6.13" | ||
| 13180 | |||
| 13181 | CVE_STATUS[CVE-2024-56667] = "fixed-version: Fixed from version 6.13" | ||
| 13182 | |||
| 13183 | CVE_STATUS[CVE-2024-56668] = "fixed-version: Fixed from version 6.13" | ||
| 13184 | |||
| 13185 | CVE_STATUS[CVE-2024-56669] = "fixed-version: Fixed from version 6.13" | ||
| 13186 | |||
| 13187 | CVE_STATUS[CVE-2024-56670] = "fixed-version: Fixed from version 6.13" | ||
| 13188 | |||
| 13189 | CVE_STATUS[CVE-2024-56671] = "fixed-version: Fixed from version 6.13" | ||
| 13190 | |||
| 13191 | CVE_STATUS[CVE-2024-56672] = "fixed-version: Fixed from version 6.13" | ||
| 13192 | |||
| 13193 | CVE_STATUS[CVE-2024-56673] = "fixed-version: Fixed from version 6.13" | ||
| 13194 | |||
| 13195 | CVE_STATUS[CVE-2024-56674] = "fixed-version: Fixed from version 6.13" | ||
| 13196 | |||
| 13197 | CVE_STATUS[CVE-2024-56675] = "fixed-version: Fixed from version 6.13" | ||
| 13198 | |||
| 13199 | CVE_STATUS[CVE-2024-56676] = "fixed-version: Fixed from version 6.13" | ||
| 13200 | |||
| 13201 | CVE_STATUS[CVE-2024-56677] = "fixed-version: Fixed from version 6.13" | ||
| 13202 | |||
| 13203 | CVE_STATUS[CVE-2024-56678] = "fixed-version: Fixed from version 6.13" | ||
| 13204 | |||
| 13205 | CVE_STATUS[CVE-2024-56679] = "fixed-version: Fixed from version 6.13" | ||
| 13206 | |||
| 13207 | CVE_STATUS[CVE-2024-56680] = "fixed-version: Fixed from version 6.13" | ||
| 13208 | |||
| 13209 | CVE_STATUS[CVE-2024-56681] = "fixed-version: Fixed from version 6.13" | ||
| 13210 | |||
| 13211 | CVE_STATUS[CVE-2024-56682] = "fixed-version: Fixed from version 6.13" | ||
| 13212 | |||
| 13213 | CVE_STATUS[CVE-2024-56683] = "fixed-version: Fixed from version 6.13" | ||
| 13214 | |||
| 13215 | CVE_STATUS[CVE-2024-56684] = "fixed-version: Fixed from version 6.13" | ||
| 13216 | |||
| 13217 | CVE_STATUS[CVE-2024-56685] = "fixed-version: Fixed from version 6.13" | ||
| 13218 | |||
| 13219 | CVE_STATUS[CVE-2024-56687] = "fixed-version: Fixed from version 6.13" | ||
| 13220 | |||
| 13221 | CVE_STATUS[CVE-2024-56688] = "fixed-version: Fixed from version 6.13" | ||
| 13222 | |||
| 13223 | CVE_STATUS[CVE-2024-56689] = "fixed-version: Fixed from version 6.13" | ||
| 13224 | |||
| 13225 | CVE_STATUS[CVE-2024-56690] = "fixed-version: Fixed from version 6.13" | ||
| 13226 | |||
| 13227 | CVE_STATUS[CVE-2024-56691] = "fixed-version: Fixed from version 6.13" | ||
| 13228 | |||
| 13229 | CVE_STATUS[CVE-2024-56692] = "fixed-version: Fixed from version 6.13" | ||
| 13230 | |||
| 13231 | CVE_STATUS[CVE-2024-56693] = "fixed-version: Fixed from version 6.13" | ||
| 13232 | |||
| 13233 | CVE_STATUS[CVE-2024-56694] = "fixed-version: Fixed from version 6.13" | ||
| 13234 | |||
| 13235 | CVE_STATUS[CVE-2024-56695] = "fixed-version: Fixed from version 6.13" | ||
| 13236 | |||
| 13237 | CVE_STATUS[CVE-2024-56696] = "fixed-version: Fixed from version 6.13" | ||
| 13238 | |||
| 13239 | CVE_STATUS[CVE-2024-56697] = "fixed-version: Fixed from version 6.13" | ||
| 13240 | |||
| 13241 | CVE_STATUS[CVE-2024-56698] = "fixed-version: Fixed from version 6.13" | ||
| 13242 | |||
| 13243 | CVE_STATUS[CVE-2024-56699] = "fixed-version: Fixed from version 6.13" | ||
| 13244 | |||
| 13245 | CVE_STATUS[CVE-2024-56700] = "fixed-version: Fixed from version 6.13" | ||
| 13246 | |||
| 13247 | CVE_STATUS[CVE-2024-56701] = "fixed-version: Fixed from version 6.13" | ||
| 13248 | |||
| 13249 | CVE_STATUS[CVE-2024-56702] = "fixed-version: Fixed from version 6.13" | ||
| 13250 | |||
| 13251 | CVE_STATUS[CVE-2024-56703] = "fixed-version: Fixed from version 6.13" | ||
| 13252 | |||
| 13253 | CVE_STATUS[CVE-2024-56704] = "fixed-version: Fixed from version 6.13" | ||
| 13254 | |||
| 13255 | CVE_STATUS[CVE-2024-56705] = "fixed-version: Fixed from version 6.13" | ||
| 13256 | |||
| 13257 | CVE_STATUS[CVE-2024-56706] = "fixed-version: Fixed from version 6.13" | ||
| 13258 | |||
| 13259 | CVE_STATUS[CVE-2024-56707] = "fixed-version: Fixed from version 6.13" | ||
| 13260 | |||
| 13261 | CVE_STATUS[CVE-2024-56708] = "fixed-version: Fixed from version 6.13" | ||
| 13262 | |||
| 13263 | CVE_STATUS[CVE-2024-56709] = "fixed-version: Fixed from version 6.13" | ||
| 13264 | |||
| 13265 | CVE_STATUS[CVE-2024-56710] = "fixed-version: Fixed from version 6.13" | ||
| 13266 | |||
| 13267 | CVE_STATUS[CVE-2024-56711] = "fixed-version: Fixed from version 6.13" | ||
| 13268 | |||
| 13269 | CVE_STATUS[CVE-2024-56712] = "fixed-version: Fixed from version 6.13" | ||
| 13270 | |||
| 13271 | CVE_STATUS[CVE-2024-56713] = "fixed-version: Fixed from version 6.13" | ||
| 13272 | |||
| 13273 | CVE_STATUS[CVE-2024-56714] = "fixed-version: Fixed from version 6.13" | ||
| 13274 | |||
| 13275 | CVE_STATUS[CVE-2024-56715] = "fixed-version: Fixed from version 6.13" | ||
| 13276 | |||
| 13277 | CVE_STATUS[CVE-2024-56716] = "fixed-version: Fixed from version 6.13" | ||
| 13278 | |||
| 13279 | CVE_STATUS[CVE-2024-56717] = "fixed-version: Fixed from version 6.13" | ||
| 13280 | |||
| 13281 | CVE_STATUS[CVE-2024-56718] = "fixed-version: Fixed from version 6.13" | ||
| 13282 | |||
| 13283 | CVE_STATUS[CVE-2024-56719] = "fixed-version: Fixed from version 6.13" | ||
| 13284 | |||
| 13285 | CVE_STATUS[CVE-2024-56720] = "fixed-version: Fixed from version 6.13" | ||
| 13286 | |||
| 13287 | CVE_STATUS[CVE-2024-56721] = "fixed-version: Fixed from version 6.13" | ||
| 13288 | |||
| 13289 | CVE_STATUS[CVE-2024-56722] = "fixed-version: Fixed from version 6.13" | ||
| 13290 | |||
| 13291 | CVE_STATUS[CVE-2024-56723] = "fixed-version: Fixed from version 6.13" | ||
| 13292 | |||
| 13293 | CVE_STATUS[CVE-2024-56724] = "fixed-version: Fixed from version 6.13" | ||
| 13294 | |||
| 13295 | CVE_STATUS[CVE-2024-56725] = "fixed-version: Fixed from version 6.13" | ||
| 13296 | |||
| 13297 | CVE_STATUS[CVE-2024-56726] = "fixed-version: Fixed from version 6.13" | ||
| 13298 | |||
| 13299 | CVE_STATUS[CVE-2024-56727] = "fixed-version: Fixed from version 6.13" | ||
| 13300 | |||
| 13301 | CVE_STATUS[CVE-2024-56728] = "fixed-version: Fixed from version 6.13" | ||
| 13302 | |||
| 13303 | CVE_STATUS[CVE-2024-56729] = "fixed-version: Fixed from version 6.13" | ||
| 13304 | |||
| 13305 | CVE_STATUS[CVE-2024-56730] = "fixed-version: Fixed from version 6.13" | ||
| 13306 | |||
| 13307 | CVE_STATUS[CVE-2024-56739] = "fixed-version: Fixed from version 6.13" | ||
| 13308 | |||
| 13309 | CVE_STATUS[CVE-2024-56740] = "fixed-version: Fixed from version 6.13" | ||
| 13310 | |||
| 13311 | CVE_STATUS[CVE-2024-56742] = "fixed-version: Fixed from version 6.13" | ||
| 13312 | |||
| 13313 | CVE_STATUS[CVE-2024-56743] = "fixed-version: Fixed from version 6.13" | ||
| 13314 | |||
| 13315 | CVE_STATUS[CVE-2024-56744] = "fixed-version: Fixed from version 6.13" | ||
| 13316 | |||
| 13317 | CVE_STATUS[CVE-2024-56745] = "fixed-version: Fixed from version 6.13" | ||
| 13318 | |||
| 13319 | CVE_STATUS[CVE-2024-56746] = "fixed-version: Fixed from version 6.13" | ||
| 13320 | |||
| 13321 | CVE_STATUS[CVE-2024-56747] = "fixed-version: Fixed from version 6.13" | ||
| 13322 | |||
| 13323 | CVE_STATUS[CVE-2024-56748] = "fixed-version: Fixed from version 6.13" | ||
| 13324 | |||
| 13325 | CVE_STATUS[CVE-2024-56749] = "fixed-version: Fixed from version 6.13" | ||
| 13326 | |||
| 13327 | CVE_STATUS[CVE-2024-56750] = "fixed-version: Fixed from version 6.13" | ||
| 13328 | |||
| 13329 | CVE_STATUS[CVE-2024-56751] = "fixed-version: Fixed from version 6.13" | ||
| 13330 | |||
| 13331 | CVE_STATUS[CVE-2024-56752] = "fixed-version: Fixed from version 6.13" | ||
| 13332 | |||
| 13333 | CVE_STATUS[CVE-2024-56753] = "fixed-version: Fixed from version 6.13" | ||
| 13334 | |||
| 13335 | CVE_STATUS[CVE-2024-56754] = "fixed-version: Fixed from version 6.13" | ||
| 13336 | |||
| 13337 | CVE_STATUS[CVE-2024-56755] = "fixed-version: Fixed from version 6.13" | ||
| 13338 | |||
| 13339 | CVE_STATUS[CVE-2024-56756] = "fixed-version: Fixed from version 6.13" | ||
| 13340 | |||
| 13341 | CVE_STATUS[CVE-2024-56757] = "fixed-version: Fixed from version 6.13" | ||
| 13342 | |||
| 13343 | CVE_STATUS[CVE-2024-56758] = "fixed-version: Fixed from version 6.13" | ||
| 13344 | |||
| 13345 | CVE_STATUS[CVE-2024-56759] = "fixed-version: Fixed from version 6.13" | ||
| 13346 | |||
| 13347 | CVE_STATUS[CVE-2024-56760] = "fixed-version: Fixed from version 6.13" | ||
| 13348 | |||
| 13349 | CVE_STATUS[CVE-2024-56761] = "fixed-version: Fixed from version 6.13" | ||
| 13350 | |||
| 13351 | CVE_STATUS[CVE-2024-56763] = "fixed-version: Fixed from version 6.13" | ||
| 13352 | |||
| 13353 | CVE_STATUS[CVE-2024-56764] = "fixed-version: Fixed from version 6.13" | ||
| 13354 | |||
| 13355 | CVE_STATUS[CVE-2024-56765] = "fixed-version: Fixed from version 6.13" | ||
| 13356 | |||
| 13357 | CVE_STATUS[CVE-2024-56766] = "fixed-version: Fixed from version 6.12.8" | ||
| 13358 | |||
| 13359 | CVE_STATUS[CVE-2024-56767] = "fixed-version: Fixed from version 6.13" | ||
| 13360 | |||
| 13361 | CVE_STATUS[CVE-2024-56768] = "fixed-version: Fixed from version 6.13" | ||
| 13362 | |||
| 13363 | CVE_STATUS[CVE-2024-56769] = "fixed-version: Fixed from version 6.13" | ||
| 13364 | |||
| 13365 | CVE_STATUS[CVE-2024-56770] = "fixed-version: Fixed from version 6.13" | ||
| 13366 | |||
| 13367 | CVE_STATUS[CVE-2024-56771] = "fixed-version: Fixed from version 6.13" | ||
| 13368 | |||
| 13369 | CVE_STATUS[CVE-2024-56772] = "fixed-version: Fixed from version 6.13" | ||
| 13370 | |||
| 13371 | CVE_STATUS[CVE-2024-56773] = "fixed-version: Fixed from version 6.13" | ||
| 13372 | |||
| 13373 | CVE_STATUS[CVE-2024-56774] = "fixed-version: Fixed from version 6.13" | ||
| 13374 | |||
| 13375 | CVE_STATUS[CVE-2024-56775] = "fixed-version: Fixed from version 6.13" | ||
| 13376 | |||
| 13377 | CVE_STATUS[CVE-2024-56776] = "fixed-version: Fixed from version 6.13" | ||
| 13378 | |||
| 13379 | CVE_STATUS[CVE-2024-56777] = "fixed-version: Fixed from version 6.13" | ||
| 13380 | |||
| 13381 | CVE_STATUS[CVE-2024-56778] = "fixed-version: Fixed from version 6.13" | ||
| 13382 | |||
| 13383 | CVE_STATUS[CVE-2024-56779] = "fixed-version: Fixed from version 6.13" | ||
| 13384 | |||
| 13385 | CVE_STATUS[CVE-2024-56780] = "fixed-version: Fixed from version 6.13" | ||
| 13386 | |||
| 13387 | CVE_STATUS[CVE-2024-56781] = "fixed-version: Fixed from version 6.13" | ||
| 13388 | |||
| 13389 | CVE_STATUS[CVE-2024-56782] = "fixed-version: Fixed from version 6.13" | ||
| 13390 | |||
| 13391 | CVE_STATUS[CVE-2024-56783] = "fixed-version: Fixed from version 6.13" | ||
| 13392 | |||
| 13393 | CVE_STATUS[CVE-2024-56784] = "fixed-version: Fixed from version 6.13" | ||
| 13394 | |||
| 13395 | CVE_STATUS[CVE-2024-56785] = "fixed-version: Fixed from version 6.13" | ||
| 13396 | |||
| 13397 | CVE_STATUS[CVE-2024-56787] = "fixed-version: Fixed from version 6.13" | ||
| 13398 | |||
| 13399 | CVE_STATUS[CVE-2024-56788] = "fixed-version: Fixed from version 6.13" | ||
| 13400 | |||
| 13401 | CVE_STATUS[CVE-2024-57791] = "fixed-version: Fixed from version 6.13" | ||
| 13402 | |||
| 13403 | CVE_STATUS[CVE-2024-57792] = "fixed-version: Fixed from version 6.13" | ||
| 13404 | |||
| 13405 | CVE_STATUS[CVE-2024-57793] = "fixed-version: Fixed from version 6.13" | ||
| 13406 | |||
| 13407 | CVE_STATUS[CVE-2024-57795] = "fixed-version: Fixed from version 6.13" | ||
| 13408 | |||
| 13409 | CVE_STATUS[CVE-2024-57798] = "fixed-version: Fixed from version 6.13" | ||
| 13410 | |||
| 13411 | CVE_STATUS[CVE-2024-57799] = "fixed-version: Fixed from version 6.13" | ||
| 13412 | |||
| 13413 | CVE_STATUS[CVE-2024-57800] = "fixed-version: Fixed from version 6.13" | ||
| 13414 | |||
| 13415 | CVE_STATUS[CVE-2024-57801] = "fixed-version: Fixed from version 6.13" | ||
| 13416 | |||
| 13417 | CVE_STATUS[CVE-2024-57802] = "fixed-version: Fixed from version 6.13" | ||
| 13418 | |||
| 13419 | CVE_STATUS[CVE-2024-57804] = "fixed-version: Fixed from version 6.13" | ||
| 13420 | |||
| 13421 | CVE_STATUS[CVE-2024-57805] = "fixed-version: Fixed from version 6.13" | ||
| 13422 | |||
| 13423 | CVE_STATUS[CVE-2024-57806] = "fixed-version: Fixed from version 6.13" | ||
| 13424 | |||
| 13425 | CVE_STATUS[CVE-2024-57807] = "fixed-version: Fixed from version 6.13" | ||
| 13426 | |||
| 13427 | CVE_STATUS[CVE-2024-57809] = "fixed-version: Fixed from version 6.13" | ||
| 13428 | |||
| 13429 | CVE_STATUS[CVE-2024-57834] = "fixed-version: Fixed from version 6.14" | ||
| 13430 | |||
| 13431 | CVE_STATUS[CVE-2024-57838] = "fixed-version: Fixed from version 6.13" | ||
| 13432 | |||
| 13433 | CVE_STATUS[CVE-2024-57839] = "fixed-version: Fixed from version 6.13" | ||
| 13434 | |||
| 13435 | CVE_STATUS[CVE-2024-57841] = "fixed-version: Fixed from version 6.13" | ||
| 13436 | |||
| 13437 | CVE_STATUS[CVE-2024-57843] = "fixed-version: Fixed from version 6.13" | ||
| 13438 | |||
| 13439 | CVE_STATUS[CVE-2024-57844] = "fixed-version: Fixed from version 6.13" | ||
| 13440 | |||
| 13441 | CVE_STATUS[CVE-2024-57849] = "fixed-version: Fixed from version 6.13" | ||
| 13442 | |||
| 13443 | CVE_STATUS[CVE-2024-57850] = "fixed-version: Fixed from version 6.13" | ||
| 13444 | |||
| 13445 | CVE_STATUS[CVE-2024-57852] = "fixed-version: Fixed from version 6.14" | ||
| 13446 | |||
| 13447 | CVE_STATUS[CVE-2024-57857] = "fixed-version: Fixed from version 6.13" | ||
| 13448 | |||
| 13449 | CVE_STATUS[CVE-2024-57872] = "fixed-version: Fixed from version 6.13" | ||
| 13450 | |||
| 13451 | CVE_STATUS[CVE-2024-57874] = "fixed-version: Fixed from version 6.13" | ||
| 13452 | |||
| 13453 | CVE_STATUS[CVE-2024-57875] = "fixed-version: Fixed from version 6.13" | ||
| 13454 | |||
| 13455 | CVE_STATUS[CVE-2024-57876] = "fixed-version: Fixed from version 6.13" | ||
| 13456 | |||
| 13457 | CVE_STATUS[CVE-2024-57877] = "fixed-version: Fixed from version 6.13" | ||
| 13458 | |||
| 13459 | CVE_STATUS[CVE-2024-57878] = "fixed-version: Fixed from version 6.13" | ||
| 13460 | |||
| 13461 | CVE_STATUS[CVE-2024-57879] = "fixed-version: Fixed from version 6.13" | ||
| 13462 | |||
| 13463 | CVE_STATUS[CVE-2024-57880] = "fixed-version: Fixed from version 6.13" | ||
| 13464 | |||
| 13465 | CVE_STATUS[CVE-2024-57881] = "fixed-version: Fixed from version 6.13" | ||
| 13466 | |||
| 13467 | CVE_STATUS[CVE-2024-57882] = "fixed-version: Fixed from version 6.13" | ||
| 13468 | |||
| 13469 | CVE_STATUS[CVE-2024-57883] = "fixed-version: Fixed from version 6.13" | ||
| 13470 | |||
| 13471 | CVE_STATUS[CVE-2024-57884] = "fixed-version: Fixed from version 6.13" | ||
| 13472 | |||
| 13473 | CVE_STATUS[CVE-2024-57885] = "fixed-version: Fixed from version 6.13" | ||
| 13474 | |||
| 13475 | CVE_STATUS[CVE-2024-57886] = "fixed-version: Fixed from version 6.13" | ||
| 13476 | |||
| 13477 | CVE_STATUS[CVE-2024-57887] = "fixed-version: Fixed from version 6.13" | ||
| 13478 | |||
| 13479 | CVE_STATUS[CVE-2024-57888] = "fixed-version: Fixed from version 6.13" | ||
| 13480 | |||
| 13481 | CVE_STATUS[CVE-2024-57889] = "fixed-version: Fixed from version 6.13" | ||
| 13482 | |||
| 13483 | CVE_STATUS[CVE-2024-57890] = "fixed-version: Fixed from version 6.13" | ||
| 13484 | |||
| 13485 | CVE_STATUS[CVE-2024-57891] = "fixed-version: Fixed from version 6.13" | ||
| 13486 | |||
| 13487 | CVE_STATUS[CVE-2024-57892] = "fixed-version: Fixed from version 6.13" | ||
| 13488 | |||
| 13489 | CVE_STATUS[CVE-2024-57893] = "fixed-version: Fixed from version 6.13" | ||
| 13490 | |||
| 13491 | CVE_STATUS[CVE-2024-57895] = "fixed-version: Fixed from version 6.13" | ||
| 13492 | |||
| 13493 | CVE_STATUS[CVE-2024-57896] = "fixed-version: Fixed from version 6.13" | ||
| 13494 | |||
| 13495 | CVE_STATUS[CVE-2024-57897] = "fixed-version: Fixed from version 6.13" | ||
| 13496 | |||
| 13497 | CVE_STATUS[CVE-2024-57898] = "fixed-version: Fixed from version 6.13" | ||
| 13498 | |||
| 13499 | CVE_STATUS[CVE-2024-57899] = "fixed-version: Fixed from version 6.13" | ||
| 13500 | |||
| 13501 | CVE_STATUS[CVE-2024-57900] = "fixed-version: Fixed from version 6.13" | ||
| 13502 | |||
| 13503 | CVE_STATUS[CVE-2024-57901] = "fixed-version: Fixed from version 6.13" | ||
| 13504 | |||
| 13505 | CVE_STATUS[CVE-2024-57902] = "fixed-version: Fixed from version 6.13" | ||
| 13506 | |||
| 13507 | CVE_STATUS[CVE-2024-57903] = "fixed-version: Fixed from version 6.13" | ||
| 13508 | |||
| 13509 | CVE_STATUS[CVE-2024-57904] = "fixed-version: Fixed from version 6.13" | ||
| 13510 | |||
| 13511 | CVE_STATUS[CVE-2024-57905] = "fixed-version: Fixed from version 6.13" | ||
| 13512 | |||
| 13513 | CVE_STATUS[CVE-2024-57906] = "fixed-version: Fixed from version 6.13" | ||
| 13514 | |||
| 13515 | CVE_STATUS[CVE-2024-57907] = "fixed-version: Fixed from version 6.13" | ||
| 13516 | |||
| 13517 | CVE_STATUS[CVE-2024-57908] = "fixed-version: Fixed from version 6.13" | ||
| 13518 | |||
| 13519 | CVE_STATUS[CVE-2024-57909] = "fixed-version: Fixed from version 6.13" | ||
| 13520 | |||
| 13521 | CVE_STATUS[CVE-2024-57910] = "fixed-version: Fixed from version 6.13" | ||
| 13522 | |||
| 13523 | CVE_STATUS[CVE-2024-57911] = "fixed-version: Fixed from version 6.13" | ||
| 13524 | |||
| 13525 | CVE_STATUS[CVE-2024-57912] = "fixed-version: Fixed from version 6.13" | ||
| 13526 | |||
| 13527 | CVE_STATUS[CVE-2024-57913] = "fixed-version: Fixed from version 6.13" | ||
| 13528 | |||
| 13529 | CVE_STATUS[CVE-2024-57914] = "fixed-version: Fixed from version 6.13" | ||
| 13530 | |||
| 13531 | CVE_STATUS[CVE-2024-57916] = "fixed-version: Fixed from version 6.13" | ||
| 13532 | |||
| 13533 | CVE_STATUS[CVE-2024-57917] = "fixed-version: Fixed from version 6.13" | ||
| 13534 | |||
| 13535 | CVE_STATUS[CVE-2024-57918] = "fixed-version: Fixed from version 6.13" | ||
| 13536 | |||
| 13537 | CVE_STATUS[CVE-2024-57919] = "fixed-version: Fixed from version 6.13" | ||
| 13538 | |||
| 13539 | CVE_STATUS[CVE-2024-57921] = "fixed-version: Fixed from version 6.13" | ||
| 13540 | |||
| 13541 | CVE_STATUS[CVE-2024-57922] = "fixed-version: Fixed from version 6.13" | ||
| 13542 | |||
| 13543 | CVE_STATUS[CVE-2024-57923] = "fixed-version: Fixed from version 6.13" | ||
| 13544 | |||
| 13545 | CVE_STATUS[CVE-2024-57924] = "fixed-version: Fixed from version 6.13" | ||
| 13546 | |||
| 13547 | CVE_STATUS[CVE-2024-57925] = "fixed-version: Fixed from version 6.13" | ||
| 13548 | |||
| 13549 | CVE_STATUS[CVE-2024-57926] = "fixed-version: Fixed from version 6.13" | ||
| 13550 | |||
| 13551 | CVE_STATUS[CVE-2024-57927] = "fixed-version: Fixed from version 6.13" | ||
| 13552 | |||
| 13553 | CVE_STATUS[CVE-2024-57928] = "fixed-version: Fixed from version 6.13" | ||
| 13554 | |||
| 13555 | CVE_STATUS[CVE-2024-57929] = "fixed-version: Fixed from version 6.13" | ||
| 13556 | |||
| 13557 | CVE_STATUS[CVE-2024-57930] = "fixed-version: Fixed from version 6.12.9" | ||
| 13558 | |||
| 13559 | CVE_STATUS[CVE-2024-57931] = "fixed-version: Fixed from version 6.13" | ||
| 13560 | |||
| 13561 | CVE_STATUS[CVE-2024-57932] = "fixed-version: Fixed from version 6.13" | ||
| 13562 | |||
| 13563 | CVE_STATUS[CVE-2024-57933] = "fixed-version: Fixed from version 6.13" | ||
| 13564 | |||
| 13565 | CVE_STATUS[CVE-2024-57934] = "fixed-version: Fixed from version 6.13" | ||
| 13566 | |||
| 13567 | CVE_STATUS[CVE-2024-57935] = "fixed-version: Fixed from version 6.12.9" | ||
| 13568 | |||
| 13569 | CVE_STATUS[CVE-2024-57936] = "fixed-version: Fixed from version 6.13" | ||
| 13570 | |||
| 13571 | CVE_STATUS[CVE-2024-57938] = "fixed-version: Fixed from version 6.13" | ||
| 13572 | |||
| 13573 | CVE_STATUS[CVE-2024-57939] = "fixed-version: Fixed from version 6.13" | ||
| 13574 | |||
| 13575 | CVE_STATUS[CVE-2024-57940] = "fixed-version: Fixed from version 6.13" | ||
| 13576 | |||
| 13577 | CVE_STATUS[CVE-2024-57941] = "fixed-version: Fixed from version 6.13" | ||
| 13578 | |||
| 13579 | CVE_STATUS[CVE-2024-57942] = "fixed-version: Fixed from version 6.13" | ||
| 13580 | |||
| 13581 | CVE_STATUS[CVE-2024-57943] = "fixed-version: Fixed from version 6.13" | ||
| 13582 | |||
| 13583 | CVE_STATUS[CVE-2024-57944] = "fixed-version: Fixed from version 6.13" | ||
| 13584 | |||
| 13585 | CVE_STATUS[CVE-2024-57945] = "fixed-version: Fixed from version 6.13" | ||
| 13586 | |||
| 13587 | CVE_STATUS[CVE-2024-57946] = "fixed-version: Fixed from version 6.13" | ||
| 13588 | |||
| 13589 | CVE_STATUS[CVE-2024-57947] = "fixed-version: Fixed from version 6.11" | ||
| 13590 | |||
| 13591 | CVE_STATUS[CVE-2024-57948] = "fixed-version: Fixed from version 6.13" | ||
| 13592 | |||
| 13593 | CVE_STATUS[CVE-2024-57949] = "fixed-version: Fixed from version 6.13" | ||
| 13594 | |||
| 13595 | CVE_STATUS[CVE-2024-57950] = "fixed-version: Fixed from version 6.13" | ||
| 13596 | |||
| 13597 | CVE_STATUS[CVE-2024-57951] = "fixed-version: Fixed from version 6.13" | ||
| 13598 | |||
| 13599 | CVE_STATUS[CVE-2024-57952] = "fixed-version: Fixed from version 6.14" | ||
| 13600 | |||
| 13601 | CVE_STATUS[CVE-2024-57953] = "fixed-version: Fixed from version 6.14" | ||
| 13602 | |||
| 13603 | CVE_STATUS[CVE-2024-57973] = "fixed-version: Fixed from version 6.14" | ||
| 13604 | |||
| 13605 | CVE_STATUS[CVE-2024-57974] = "fixed-version: Fixed from version 6.14" | ||
| 13606 | |||
| 13607 | CVE_STATUS[CVE-2024-57975] = "fixed-version: Fixed from version 6.14" | ||
| 13608 | |||
| 13609 | CVE_STATUS[CVE-2024-57976] = "fixed-version: Fixed from version 6.14" | ||
| 13610 | |||
| 13611 | CVE_STATUS[CVE-2024-57977] = "fixed-version: Fixed from version 6.14" | ||
| 13612 | |||
| 13613 | CVE_STATUS[CVE-2024-57978] = "fixed-version: Fixed from version 6.14" | ||
| 13614 | |||
| 13615 | CVE_STATUS[CVE-2024-57979] = "fixed-version: Fixed from version 6.14" | ||
| 13616 | |||
| 13617 | CVE_STATUS[CVE-2024-57980] = "fixed-version: Fixed from version 6.14" | ||
| 13618 | |||
| 13619 | CVE_STATUS[CVE-2024-57981] = "fixed-version: Fixed from version 6.14" | ||
| 13620 | |||
| 13621 | CVE_STATUS[CVE-2024-57982] = "fixed-version: Fixed from version 6.14" | ||
| 13622 | |||
| 13623 | CVE_STATUS[CVE-2024-57983] = "fixed-version: Fixed from version 6.14" | ||
| 13624 | |||
| 13625 | CVE_STATUS[CVE-2024-57984] = "fixed-version: Fixed from version 6.14" | ||
| 13626 | |||
| 13627 | CVE_STATUS[CVE-2024-57985] = "fixed-version: Fixed from version 6.14" | ||
| 13628 | |||
| 13629 | CVE_STATUS[CVE-2024-57986] = "fixed-version: Fixed from version 6.14" | ||
| 13630 | |||
| 13631 | CVE_STATUS[CVE-2024-57987] = "fixed-version: Fixed from version 6.14" | ||
| 13632 | |||
| 13633 | CVE_STATUS[CVE-2024-57988] = "fixed-version: Fixed from version 6.14" | ||
| 13634 | |||
| 13635 | CVE_STATUS[CVE-2024-57989] = "fixed-version: Fixed from version 6.14" | ||
| 13636 | |||
| 13637 | CVE_STATUS[CVE-2024-57990] = "fixed-version: Fixed from version 6.14" | ||
| 13638 | |||
| 13639 | CVE_STATUS[CVE-2024-57991] = "fixed-version: Fixed from version 6.14" | ||
| 13640 | |||
| 13641 | CVE_STATUS[CVE-2024-57992] = "fixed-version: Fixed from version 6.14" | ||
| 13642 | |||
| 13643 | CVE_STATUS[CVE-2024-57993] = "fixed-version: Fixed from version 6.14" | ||
| 13644 | |||
| 13645 | CVE_STATUS[CVE-2024-57994] = "fixed-version: Fixed from version 6.14" | ||
| 13646 | |||
| 13647 | CVE_STATUS[CVE-2024-57995] = "fixed-version: Fixed from version 6.14" | ||
| 13648 | |||
| 13649 | CVE_STATUS[CVE-2024-57996] = "fixed-version: Fixed from version 6.14" | ||
| 13650 | |||
| 13651 | CVE_STATUS[CVE-2024-57997] = "fixed-version: Fixed from version 6.14" | ||
| 13652 | |||
| 13653 | CVE_STATUS[CVE-2024-57998] = "fixed-version: Fixed from version 6.14" | ||
| 13654 | |||
| 13655 | CVE_STATUS[CVE-2024-57999] = "fixed-version: Fixed from version 6.14" | ||
| 13656 | |||
| 13657 | CVE_STATUS[CVE-2024-58000] = "fixed-version: Fixed from version 6.14" | ||
| 13658 | |||
| 13659 | CVE_STATUS[CVE-2024-58001] = "fixed-version: Fixed from version 6.14" | ||
| 13660 | |||
| 13661 | CVE_STATUS[CVE-2024-58002] = "fixed-version: Fixed from version 6.14" | ||
| 13662 | |||
| 13663 | CVE_STATUS[CVE-2024-58003] = "fixed-version: Fixed from version 6.14" | ||
| 13664 | |||
| 13665 | CVE_STATUS[CVE-2024-58004] = "fixed-version: Fixed from version 6.14" | ||
| 13666 | |||
| 13667 | CVE_STATUS[CVE-2024-58005] = "fixed-version: Fixed from version 6.14" | ||
| 13668 | |||
| 13669 | CVE_STATUS[CVE-2024-58006] = "fixed-version: Fixed from version 6.14" | ||
| 13670 | |||
| 13671 | CVE_STATUS[CVE-2024-58007] = "fixed-version: Fixed from version 6.14" | ||
| 13672 | |||
| 13673 | CVE_STATUS[CVE-2024-58008] = "fixed-version: Fixed from version 6.14" | ||
| 13674 | |||
| 13675 | CVE_STATUS[CVE-2024-58009] = "fixed-version: Fixed from version 6.14" | ||
| 13676 | |||
| 13677 | CVE_STATUS[CVE-2024-58010] = "fixed-version: Fixed from version 6.14" | ||
| 13678 | |||
| 13679 | CVE_STATUS[CVE-2024-58011] = "fixed-version: Fixed from version 6.14" | ||
| 13680 | |||
| 13681 | CVE_STATUS[CVE-2024-58012] = "fixed-version: Fixed from version 6.14" | ||
| 13682 | |||
| 13683 | CVE_STATUS[CVE-2024-58013] = "fixed-version: Fixed from version 6.14" | ||
| 13684 | |||
| 13685 | CVE_STATUS[CVE-2024-58014] = "fixed-version: Fixed from version 6.14" | ||
| 13686 | |||
| 13687 | CVE_STATUS[CVE-2024-58015] = "fixed-version: Fixed from version 6.14" | ||
| 13688 | |||
| 13689 | CVE_STATUS[CVE-2024-58016] = "fixed-version: Fixed from version 6.14" | ||
| 13690 | |||
| 13691 | CVE_STATUS[CVE-2024-58017] = "fixed-version: Fixed from version 6.14" | ||
| 13692 | |||
| 13693 | CVE_STATUS[CVE-2024-58018] = "fixed-version: Fixed from version 6.14" | ||
| 13694 | |||
| 13695 | CVE_STATUS[CVE-2024-58019] = "fixed-version: Fixed from version 6.14" | ||
| 13696 | |||
| 13697 | CVE_STATUS[CVE-2024-58020] = "fixed-version: Fixed from version 6.14" | ||
| 13698 | |||
| 13699 | CVE_STATUS[CVE-2024-58021] = "fixed-version: Fixed from version 6.14" | ||
| 13700 | |||
| 13701 | CVE_STATUS[CVE-2024-58022] = "fixed-version: Fixed from version 6.14" | ||
| 13702 | |||
| 13703 | CVE_STATUS[CVE-2024-58034] = "fixed-version: Fixed from version 6.14" | ||
| 13704 | |||
| 13705 | CVE_STATUS[CVE-2024-58042] = "fixed-version: Fixed from version 6.14" | ||
| 13706 | |||
| 13707 | CVE_STATUS[CVE-2024-58051] = "fixed-version: Fixed from version 6.14" | ||
| 13708 | |||
| 13709 | CVE_STATUS[CVE-2024-58052] = "fixed-version: Fixed from version 6.14" | ||
| 13710 | |||
| 13711 | CVE_STATUS[CVE-2024-58053] = "fixed-version: Fixed from version 6.14" | ||
| 13712 | |||
| 13713 | CVE_STATUS[CVE-2024-58054] = "fixed-version: Fixed from version 6.14" | ||
| 13714 | |||
| 13715 | CVE_STATUS[CVE-2024-58055] = "fixed-version: Fixed from version 6.14" | ||
| 13716 | |||
| 13717 | CVE_STATUS[CVE-2024-58056] = "fixed-version: Fixed from version 6.14" | ||
| 13718 | |||
| 13719 | CVE_STATUS[CVE-2024-58057] = "fixed-version: Fixed from version 6.14" | ||
| 13720 | |||
| 13721 | CVE_STATUS[CVE-2024-58058] = "fixed-version: Fixed from version 6.14" | ||
| 13722 | |||
| 13723 | CVE_STATUS[CVE-2024-58059] = "fixed-version: Fixed from version 6.14" | ||
| 13724 | |||
| 13725 | CVE_STATUS[CVE-2024-58060] = "fixed-version: Fixed from version 6.14" | ||
| 13726 | |||
| 13727 | CVE_STATUS[CVE-2024-58061] = "fixed-version: Fixed from version 6.14" | ||
| 13728 | |||
| 13729 | CVE_STATUS[CVE-2024-58062] = "fixed-version: Fixed from version 6.14" | ||
| 13730 | |||
| 13731 | CVE_STATUS[CVE-2024-58063] = "fixed-version: Fixed from version 6.14" | ||
| 13732 | |||
| 13733 | CVE_STATUS[CVE-2024-58064] = "fixed-version: Fixed from version 6.14" | ||
| 13734 | |||
| 13735 | CVE_STATUS[CVE-2024-58065] = "fixed-version: Fixed from version 6.14" | ||
| 13736 | |||
| 13737 | CVE_STATUS[CVE-2024-58066] = "fixed-version: Fixed from version 6.14" | ||
| 13738 | |||
| 13739 | CVE_STATUS[CVE-2024-58067] = "fixed-version: Fixed from version 6.14" | ||
| 13740 | |||
| 13741 | CVE_STATUS[CVE-2024-58068] = "fixed-version: Fixed from version 6.14" | ||
| 13742 | |||
| 13743 | CVE_STATUS[CVE-2024-58069] = "fixed-version: Fixed from version 6.14" | ||
| 13744 | |||
| 13745 | CVE_STATUS[CVE-2024-58070] = "fixed-version: Fixed from version 6.14" | ||
| 13746 | |||
| 13747 | CVE_STATUS[CVE-2024-58071] = "fixed-version: Fixed from version 6.14" | ||
| 13748 | |||
| 13749 | CVE_STATUS[CVE-2024-58072] = "fixed-version: Fixed from version 6.14" | ||
| 13750 | |||
| 13751 | CVE_STATUS[CVE-2024-58073] = "fixed-version: Fixed from version 6.14" | ||
| 13752 | |||
| 13753 | CVE_STATUS[CVE-2024-58074] = "fixed-version: Fixed from version 6.14" | ||
| 13754 | |||
| 13755 | CVE_STATUS[CVE-2024-58075] = "fixed-version: Fixed from version 6.14" | ||
| 13756 | |||
| 13757 | CVE_STATUS[CVE-2024-58076] = "fixed-version: Fixed from version 6.14" | ||
| 13758 | |||
| 13759 | CVE_STATUS[CVE-2024-58077] = "fixed-version: Fixed from version 6.14" | ||
| 13760 | |||
| 13761 | CVE_STATUS[CVE-2024-58078] = "fixed-version: Fixed from version 6.14" | ||
| 13762 | |||
| 13763 | CVE_STATUS[CVE-2024-58079] = "fixed-version: Fixed from version 6.14" | ||
| 13764 | |||
| 13765 | CVE_STATUS[CVE-2024-58080] = "fixed-version: Fixed from version 6.14" | ||
| 13766 | |||
| 13767 | CVE_STATUS[CVE-2024-58081] = "fixed-version: Fixed from version 6.14" | ||
| 13768 | |||
| 13769 | CVE_STATUS[CVE-2024-58082] = "fixed-version: Fixed from version 6.14" | ||
| 13770 | |||
| 13771 | CVE_STATUS[CVE-2024-58083] = "fixed-version: Fixed from version 6.14" | ||
| 13772 | |||
| 13773 | CVE_STATUS[CVE-2024-58084] = "fixed-version: Fixed from version 6.14" | ||
| 13774 | |||
| 13775 | CVE_STATUS[CVE-2024-58085] = "fixed-version: Fixed from version 6.14" | ||
| 13776 | |||
| 13777 | CVE_STATUS[CVE-2024-58086] = "fixed-version: Fixed from version 6.14" | ||
| 13778 | |||
| 13779 | CVE_STATUS[CVE-2024-58087] = "fixed-version: Fixed from version 6.13" | ||
| 13780 | |||
| 13781 | CVE_STATUS[CVE-2024-58088] = "fixed-version: Fixed from version 6.14" | ||
| 13782 | |||
| 13783 | CVE_STATUS[CVE-2024-58089] = "fixed-version: Fixed from version 6.14" | ||
| 13784 | |||
| 13785 | CVE_STATUS[CVE-2024-58090] = "fixed-version: Fixed from version 6.14" | ||
| 13786 | |||
| 13787 | CVE_STATUS[CVE-2024-58091] = "fixed-version: Fixed from version 6.14" | ||
| 13788 | |||
| 13789 | CVE_STATUS[CVE-2024-58092] = "fixed-version: Fixed from version 6.14" | ||
| 13790 | |||
| 13791 | CVE_STATUS[CVE-2024-58093] = "fixed-version: Fixed from version 6.15" | ||
| 13792 | |||
| 13793 | CVE_STATUS[CVE-2024-58094] = "fixed-version: Fixed from version 6.15" | ||
| 13794 | |||
| 13795 | CVE_STATUS[CVE-2024-58095] = "fixed-version: Fixed from version 6.15" | ||
| 13796 | |||
| 13797 | CVE_STATUS[CVE-2024-58096] = "fixed-version: Fixed from version 6.15" | ||
| 13798 | |||
| 13799 | CVE_STATUS[CVE-2024-58097] = "fixed-version: Fixed from version 6.15" | ||
| 13800 | |||
| 13801 | CVE_STATUS[CVE-2024-58098] = "fixed-version: Fixed from version 6.13" | ||
| 13802 | |||
| 13803 | CVE_STATUS[CVE-2024-58099] = "fixed-version: Fixed from version 6.12" | ||
| 13804 | |||
| 13805 | CVE_STATUS[CVE-2024-58100] = "fixed-version: Fixed from version 6.13" | ||
| 13806 | |||
| 13807 | CVE_STATUS[CVE-2024-58237] = "fixed-version: Fixed from version 6.13" | ||
| 13808 | |||
| 13809 | CVE_STATUS[CVE-2024-58238] = "fixed-version: Fixed from version 6.9" | ||
| 13810 | |||
| 13811 | CVE_STATUS[CVE-2024-58239] = "fixed-version: Fixed from version 6.8" | ||
| 13812 | |||
| 13813 | CVE_STATUS[CVE-2024-58240] = "fixed-version: Fixed from version 6.8" | ||
| 13814 | |||
| 13815 | CVE_STATUS[CVE-2024-58241] = "fixed-version: Fixed from version 6.12" | ||
| 13816 | |||
| 13817 | CVE_STATUS[CVE-2025-21629] = "fixed-version: Fixed from version 6.13" | ||
| 13818 | |||
| 13819 | CVE_STATUS[CVE-2025-21631] = "fixed-version: Fixed from version 6.13" | ||
| 13820 | |||
| 13821 | CVE_STATUS[CVE-2025-21632] = "fixed-version: Fixed from version 6.13" | ||
| 13822 | |||
| 13823 | CVE_STATUS[CVE-2025-21634] = "fixed-version: Fixed from version 6.13" | ||
| 13824 | |||
| 13825 | CVE_STATUS[CVE-2025-21635] = "fixed-version: Fixed from version 6.13" | ||
| 13826 | |||
| 13827 | CVE_STATUS[CVE-2025-21636] = "fixed-version: Fixed from version 6.13" | ||
| 13828 | |||
| 13829 | CVE_STATUS[CVE-2025-21637] = "fixed-version: Fixed from version 6.13" | ||
| 13830 | |||
| 13831 | CVE_STATUS[CVE-2025-21638] = "fixed-version: Fixed from version 6.13" | ||
| 13832 | |||
| 13833 | CVE_STATUS[CVE-2025-21639] = "fixed-version: Fixed from version 6.13" | ||
| 13834 | |||
| 13835 | CVE_STATUS[CVE-2025-21640] = "fixed-version: Fixed from version 6.13" | ||
| 13836 | |||
| 13837 | CVE_STATUS[CVE-2025-21641] = "fixed-version: Fixed from version 6.13" | ||
| 13838 | |||
| 13839 | CVE_STATUS[CVE-2025-21642] = "fixed-version: Fixed from version 6.13" | ||
| 13840 | |||
| 13841 | CVE_STATUS[CVE-2025-21643] = "fixed-version: Fixed from version 6.13" | ||
| 13842 | |||
| 13843 | CVE_STATUS[CVE-2025-21644] = "fixed-version: Fixed from version 6.13" | ||
| 13844 | |||
| 13845 | CVE_STATUS[CVE-2025-21645] = "fixed-version: Fixed from version 6.13" | ||
| 13846 | |||
| 13847 | CVE_STATUS[CVE-2025-21646] = "fixed-version: Fixed from version 6.13" | ||
| 13848 | |||
| 13849 | CVE_STATUS[CVE-2025-21647] = "fixed-version: Fixed from version 6.13" | ||
| 13850 | |||
| 13851 | CVE_STATUS[CVE-2025-21648] = "fixed-version: Fixed from version 6.13" | ||
| 13852 | |||
| 13853 | CVE_STATUS[CVE-2025-21649] = "fixed-version: Fixed from version 6.13" | ||
| 13854 | |||
| 13855 | CVE_STATUS[CVE-2025-21650] = "fixed-version: Fixed from version 6.13" | ||
| 13856 | |||
| 13857 | CVE_STATUS[CVE-2025-21651] = "fixed-version: Fixed from version 6.13" | ||
| 13858 | |||
| 13859 | CVE_STATUS[CVE-2025-21652] = "fixed-version: Fixed from version 6.13" | ||
| 13860 | |||
| 13861 | CVE_STATUS[CVE-2025-21653] = "fixed-version: Fixed from version 6.13" | ||
| 13862 | |||
| 13863 | CVE_STATUS[CVE-2025-21654] = "fixed-version: Fixed from version 6.13" | ||
| 13864 | |||
| 13865 | CVE_STATUS[CVE-2025-21655] = "fixed-version: Fixed from version 6.13" | ||
| 13866 | |||
| 13867 | CVE_STATUS[CVE-2025-21656] = "fixed-version: Fixed from version 6.13" | ||
| 13868 | |||
| 13869 | CVE_STATUS[CVE-2025-21657] = "fixed-version: Fixed from version 6.13" | ||
| 13870 | |||
| 13871 | CVE_STATUS[CVE-2025-21658] = "fixed-version: Fixed from version 6.13" | ||
| 13872 | |||
| 13873 | CVE_STATUS[CVE-2025-21659] = "fixed-version: Fixed from version 6.13" | ||
| 13874 | |||
| 13875 | CVE_STATUS[CVE-2025-21660] = "fixed-version: Fixed from version 6.13" | ||
| 13876 | |||
| 13877 | CVE_STATUS[CVE-2025-21661] = "fixed-version: Fixed from version 6.13" | ||
| 13878 | |||
| 13879 | CVE_STATUS[CVE-2025-21662] = "fixed-version: Fixed from version 6.13" | ||
| 13880 | |||
| 13881 | CVE_STATUS[CVE-2025-21663] = "fixed-version: Fixed from version 6.13" | ||
| 13882 | |||
| 13883 | CVE_STATUS[CVE-2025-21664] = "fixed-version: Fixed from version 6.13" | ||
| 13884 | |||
| 13885 | CVE_STATUS[CVE-2025-21665] = "fixed-version: Fixed from version 6.13" | ||
| 13886 | |||
| 13887 | CVE_STATUS[CVE-2025-21666] = "fixed-version: Fixed from version 6.13" | ||
| 13888 | |||
| 13889 | CVE_STATUS[CVE-2025-21667] = "fixed-version: Fixed from version 6.13" | ||
| 13890 | |||
| 13891 | CVE_STATUS[CVE-2025-21668] = "fixed-version: Fixed from version 6.13" | ||
| 13892 | |||
| 13893 | CVE_STATUS[CVE-2025-21669] = "fixed-version: Fixed from version 6.13" | ||
| 13894 | |||
| 13895 | CVE_STATUS[CVE-2025-21670] = "fixed-version: Fixed from version 6.13" | ||
| 13896 | |||
| 13897 | CVE_STATUS[CVE-2025-21671] = "fixed-version: Fixed from version 6.12.11" | ||
| 13898 | |||
| 13899 | CVE_STATUS[CVE-2025-21672] = "fixed-version: Fixed from version 6.13" | ||
| 13900 | |||
| 13901 | CVE_STATUS[CVE-2025-21673] = "fixed-version: Fixed from version 6.13" | ||
| 13902 | |||
| 13903 | CVE_STATUS[CVE-2025-21674] = "fixed-version: Fixed from version 6.13" | ||
| 13904 | |||
| 13905 | CVE_STATUS[CVE-2025-21675] = "fixed-version: Fixed from version 6.13" | ||
| 13906 | |||
| 13907 | CVE_STATUS[CVE-2025-21676] = "fixed-version: Fixed from version 6.13" | ||
| 13908 | |||
| 13909 | CVE_STATUS[CVE-2025-21677] = "fixed-version: Fixed from version 6.13" | ||
| 13910 | |||
| 13911 | CVE_STATUS[CVE-2025-21678] = "fixed-version: Fixed from version 6.13" | ||
| 13912 | |||
| 13913 | CVE_STATUS[CVE-2025-21679] = "fixed-version: Fixed from version 6.12.11" | ||
| 13914 | |||
| 13915 | CVE_STATUS[CVE-2025-21680] = "fixed-version: Fixed from version 6.13" | ||
| 13916 | |||
| 13917 | CVE_STATUS[CVE-2025-21681] = "fixed-version: Fixed from version 6.13" | ||
| 13918 | |||
| 13919 | CVE_STATUS[CVE-2025-21682] = "fixed-version: Fixed from version 6.13" | ||
| 13920 | |||
| 13921 | CVE_STATUS[CVE-2025-21683] = "fixed-version: Fixed from version 6.13" | ||
| 13922 | |||
| 13923 | CVE_STATUS[CVE-2025-21684] = "fixed-version: Fixed from version 6.13" | ||
| 13924 | |||
| 13925 | CVE_STATUS[CVE-2025-21685] = "fixed-version: Fixed from version 6.13" | ||
| 13926 | |||
| 13927 | CVE_STATUS[CVE-2025-21687] = "fixed-version: Fixed from version 6.14" | ||
| 13928 | |||
| 13929 | CVE_STATUS[CVE-2025-21688] = "fixed-version: Fixed from version 6.14" | ||
| 13930 | |||
| 13931 | CVE_STATUS[CVE-2025-21689] = "fixed-version: Fixed from version 6.14" | ||
| 13932 | |||
| 13933 | CVE_STATUS[CVE-2025-21690] = "fixed-version: Fixed from version 6.14" | ||
| 13934 | |||
| 13935 | CVE_STATUS[CVE-2025-21691] = "fixed-version: Fixed from version 6.14" | ||
| 13936 | |||
| 13937 | CVE_STATUS[CVE-2025-21692] = "fixed-version: Fixed from version 6.14" | ||
| 13938 | |||
| 13939 | CVE_STATUS[CVE-2025-21693] = "fixed-version: Fixed from version 6.13" | ||
| 13940 | |||
| 13941 | CVE_STATUS[CVE-2025-21694] = "fixed-version: Fixed from version 6.13" | ||
| 13942 | |||
| 13943 | CVE_STATUS[CVE-2025-21695] = "fixed-version: Fixed from version 6.13" | ||
| 13944 | |||
| 13945 | CVE_STATUS[CVE-2025-21696] = "fixed-version: Fixed from version 6.13" | ||
| 13946 | |||
| 13947 | CVE_STATUS[CVE-2025-21697] = "fixed-version: Fixed from version 6.13" | ||
| 13948 | |||
| 13949 | CVE_STATUS[CVE-2025-21699] = "fixed-version: Fixed from version 6.14" | ||
| 13950 | |||
| 13951 | CVE_STATUS[CVE-2025-21700] = "fixed-version: Fixed from version 6.14" | ||
| 13952 | |||
| 13953 | CVE_STATUS[CVE-2025-21701] = "fixed-version: Fixed from version 6.14" | ||
| 13954 | |||
| 13955 | CVE_STATUS[CVE-2025-21702] = "fixed-version: Fixed from version 6.14" | ||
| 13956 | |||
| 13957 | CVE_STATUS[CVE-2025-21703] = "fixed-version: Fixed from version 6.14" | ||
| 13958 | |||
| 13959 | CVE_STATUS[CVE-2025-21704] = "fixed-version: Fixed from version 6.14" | ||
| 13960 | |||
| 13961 | CVE_STATUS[CVE-2025-21705] = "fixed-version: Fixed from version 6.14" | ||
| 13962 | |||
| 13963 | CVE_STATUS[CVE-2025-21706] = "fixed-version: Fixed from version 6.14" | ||
| 13964 | |||
| 13965 | CVE_STATUS[CVE-2025-21707] = "fixed-version: Fixed from version 6.14" | ||
| 13966 | |||
| 13967 | CVE_STATUS[CVE-2025-21708] = "fixed-version: Fixed from version 6.14" | ||
| 13968 | |||
| 13969 | CVE_STATUS[CVE-2025-21709] = "fixed-version: Fixed from version 6.14" | ||
| 13970 | |||
| 13971 | CVE_STATUS[CVE-2025-21710] = "fixed-version: Fixed from version 6.14" | ||
| 13972 | |||
| 13973 | CVE_STATUS[CVE-2025-21711] = "fixed-version: Fixed from version 6.14" | ||
| 13974 | |||
| 13975 | CVE_STATUS[CVE-2025-21712] = "fixed-version: Fixed from version 6.14" | ||
| 13976 | |||
| 13977 | CVE_STATUS[CVE-2025-21713] = "fixed-version: Fixed from version 6.14" | ||
| 13978 | |||
| 13979 | CVE_STATUS[CVE-2025-21714] = "fixed-version: Fixed from version 6.14" | ||
| 13980 | |||
| 13981 | CVE_STATUS[CVE-2025-21715] = "fixed-version: Fixed from version 6.14" | ||
| 13982 | |||
| 13983 | CVE_STATUS[CVE-2025-21716] = "fixed-version: Fixed from version 6.14" | ||
| 13984 | |||
| 13985 | CVE_STATUS[CVE-2025-21717] = "fixed-version: Fixed from version 6.14" | ||
| 13986 | |||
| 13987 | CVE_STATUS[CVE-2025-21718] = "fixed-version: Fixed from version 6.14" | ||
| 13988 | |||
| 13989 | CVE_STATUS[CVE-2025-21719] = "fixed-version: Fixed from version 6.14" | ||
| 13990 | |||
| 13991 | CVE_STATUS[CVE-2025-21720] = "fixed-version: Fixed from version 6.14" | ||
| 13992 | |||
| 13993 | CVE_STATUS[CVE-2025-21721] = "fixed-version: Fixed from version 6.14" | ||
| 13994 | |||
| 13995 | CVE_STATUS[CVE-2025-21722] = "fixed-version: Fixed from version 6.14" | ||
| 13996 | |||
| 13997 | CVE_STATUS[CVE-2025-21723] = "fixed-version: Fixed from version 6.14" | ||
| 13998 | |||
| 13999 | CVE_STATUS[CVE-2025-21724] = "fixed-version: Fixed from version 6.14" | ||
| 14000 | |||
| 14001 | CVE_STATUS[CVE-2025-21725] = "fixed-version: Fixed from version 6.14" | ||
| 14002 | |||
| 14003 | CVE_STATUS[CVE-2025-21726] = "fixed-version: Fixed from version 6.14" | ||
| 14004 | |||
| 14005 | CVE_STATUS[CVE-2025-21727] = "fixed-version: Fixed from version 6.14" | ||
| 14006 | |||
| 14007 | CVE_STATUS[CVE-2025-21728] = "fixed-version: Fixed from version 6.14" | ||
| 14008 | |||
| 14009 | CVE_STATUS[CVE-2025-21729] = "fixed-version: Fixed from version 6.14" | ||
| 14010 | |||
| 14011 | CVE_STATUS[CVE-2025-21730] = "fixed-version: Fixed from version 6.14" | ||
| 14012 | |||
| 14013 | CVE_STATUS[CVE-2025-21731] = "fixed-version: Fixed from version 6.14" | ||
| 14014 | |||
| 14015 | CVE_STATUS[CVE-2025-21732] = "fixed-version: Fixed from version 6.14" | ||
| 14016 | |||
| 14017 | CVE_STATUS[CVE-2025-21733] = "fixed-version: Fixed from version 6.14" | ||
| 14018 | |||
| 14019 | CVE_STATUS[CVE-2025-21734] = "fixed-version: Fixed from version 6.14" | ||
| 14020 | |||
| 14021 | CVE_STATUS[CVE-2025-21735] = "fixed-version: Fixed from version 6.14" | ||
| 14022 | |||
| 14023 | CVE_STATUS[CVE-2025-21736] = "fixed-version: Fixed from version 6.14" | ||
| 14024 | |||
| 14025 | CVE_STATUS[CVE-2025-21737] = "fixed-version: Fixed from version 6.14" | ||
| 14026 | |||
| 14027 | CVE_STATUS[CVE-2025-21738] = "fixed-version: Fixed from version 6.14" | ||
| 14028 | |||
| 14029 | CVE_STATUS[CVE-2025-21739] = "fixed-version: Fixed from version 6.14" | ||
| 14030 | |||
| 14031 | CVE_STATUS[CVE-2025-21741] = "fixed-version: Fixed from version 6.14" | ||
| 14032 | |||
| 14033 | CVE_STATUS[CVE-2025-21742] = "fixed-version: Fixed from version 6.14" | ||
| 14034 | |||
| 14035 | CVE_STATUS[CVE-2025-21743] = "fixed-version: Fixed from version 6.14" | ||
| 14036 | |||
| 14037 | CVE_STATUS[CVE-2025-21744] = "fixed-version: Fixed from version 6.14" | ||
| 14038 | |||
| 14039 | CVE_STATUS[CVE-2025-21745] = "fixed-version: Fixed from version 6.14" | ||
| 14040 | |||
| 14041 | CVE_STATUS[CVE-2025-21746] = "fixed-version: Fixed from version 6.14" | ||
| 14042 | |||
| 14043 | CVE_STATUS[CVE-2025-21747] = "fixed-version: Fixed from version 6.14" | ||
| 14044 | |||
| 14045 | CVE_STATUS[CVE-2025-21748] = "fixed-version: Fixed from version 6.14" | ||
| 14046 | |||
| 14047 | CVE_STATUS[CVE-2025-21749] = "fixed-version: Fixed from version 6.14" | ||
| 14048 | |||
| 14049 | CVE_STATUS[CVE-2025-21750] = "fixed-version: Fixed from version 6.14" | ||
| 14050 | |||
| 14051 | CVE_STATUS[CVE-2025-21751] = "fixed-version: Fixed from version 6.14" | ||
| 14052 | |||
| 14053 | CVE_STATUS[CVE-2025-21752] = "fixed-version: Fixed from version 6.14" | ||
| 14054 | |||
| 14055 | CVE_STATUS[CVE-2025-21753] = "fixed-version: Fixed from version 6.14" | ||
| 14056 | |||
| 14057 | CVE_STATUS[CVE-2025-21754] = "fixed-version: Fixed from version 6.14" | ||
| 14058 | |||
| 14059 | CVE_STATUS[CVE-2025-21756] = "fixed-version: Fixed from version 6.14" | ||
| 14060 | |||
| 14061 | CVE_STATUS[CVE-2025-21758] = "fixed-version: Fixed from version 6.14" | ||
| 14062 | |||
| 14063 | CVE_STATUS[CVE-2025-21759] = "fixed-version: Fixed from version 6.14" | ||
| 14064 | |||
| 14065 | CVE_STATUS[CVE-2025-21760] = "fixed-version: Fixed from version 6.14" | ||
| 14066 | |||
| 14067 | CVE_STATUS[CVE-2025-21761] = "fixed-version: Fixed from version 6.14" | ||
| 14068 | |||
| 14069 | CVE_STATUS[CVE-2025-21762] = "fixed-version: Fixed from version 6.14" | ||
| 14070 | |||
| 14071 | CVE_STATUS[CVE-2025-21763] = "fixed-version: Fixed from version 6.14" | ||
| 14072 | |||
| 14073 | CVE_STATUS[CVE-2025-21764] = "fixed-version: Fixed from version 6.14" | ||
| 14074 | |||
| 14075 | CVE_STATUS[CVE-2025-21765] = "fixed-version: Fixed from version 6.14" | ||
| 14076 | |||
| 14077 | CVE_STATUS[CVE-2025-21766] = "fixed-version: Fixed from version 6.14" | ||
| 14078 | |||
| 14079 | CVE_STATUS[CVE-2025-21767] = "fixed-version: Fixed from version 6.14" | ||
| 14080 | |||
| 14081 | CVE_STATUS[CVE-2025-21768] = "fixed-version: Fixed from version 6.14" | ||
| 14082 | |||
| 14083 | CVE_STATUS[CVE-2025-21769] = "fixed-version: Fixed from version 6.14" | ||
| 14084 | |||
| 14085 | CVE_STATUS[CVE-2025-21770] = "fixed-version: Fixed from version 6.14" | ||
| 14086 | |||
| 14087 | CVE_STATUS[CVE-2025-21771] = "fixed-version: Fixed from version 6.14" | ||
| 14088 | |||
| 14089 | CVE_STATUS[CVE-2025-21772] = "fixed-version: Fixed from version 6.14" | ||
| 14090 | |||
| 14091 | CVE_STATUS[CVE-2025-21773] = "fixed-version: Fixed from version 6.14" | ||
| 14092 | |||
| 14093 | CVE_STATUS[CVE-2025-21774] = "fixed-version: Fixed from version 6.14" | ||
| 14094 | |||
| 14095 | CVE_STATUS[CVE-2025-21775] = "fixed-version: Fixed from version 6.14" | ||
| 14096 | |||
| 14097 | CVE_STATUS[CVE-2025-21776] = "fixed-version: Fixed from version 6.14" | ||
| 14098 | |||
| 14099 | CVE_STATUS[CVE-2025-21777] = "fixed-version: Fixed from version 6.14" | ||
| 14100 | |||
| 14101 | CVE_STATUS[CVE-2025-21778] = "fixed-version: Fixed from version 6.14" | ||
| 14102 | |||
| 14103 | CVE_STATUS[CVE-2025-21779] = "fixed-version: Fixed from version 6.14" | ||
| 14104 | |||
| 14105 | CVE_STATUS[CVE-2025-21780] = "fixed-version: Fixed from version 6.14" | ||
| 14106 | |||
| 14107 | CVE_STATUS[CVE-2025-21781] = "fixed-version: Fixed from version 6.14" | ||
| 14108 | |||
| 14109 | CVE_STATUS[CVE-2025-21782] = "fixed-version: Fixed from version 6.14" | ||
| 14110 | |||
| 14111 | CVE_STATUS[CVE-2025-21783] = "fixed-version: Fixed from version 6.14" | ||
| 14112 | |||
| 14113 | CVE_STATUS[CVE-2025-21784] = "fixed-version: Fixed from version 6.14" | ||
| 14114 | |||
| 14115 | CVE_STATUS[CVE-2025-21785] = "fixed-version: Fixed from version 6.14" | ||
| 14116 | |||
| 14117 | CVE_STATUS[CVE-2025-21786] = "fixed-version: Fixed from version 6.14" | ||
| 14118 | |||
| 14119 | CVE_STATUS[CVE-2025-21787] = "fixed-version: Fixed from version 6.14" | ||
| 14120 | |||
| 14121 | CVE_STATUS[CVE-2025-21788] = "fixed-version: Fixed from version 6.14" | ||
| 14122 | |||
| 14123 | CVE_STATUS[CVE-2025-21789] = "fixed-version: Fixed from version 6.14" | ||
| 14124 | |||
| 14125 | CVE_STATUS[CVE-2025-21790] = "fixed-version: Fixed from version 6.14" | ||
| 14126 | |||
| 14127 | CVE_STATUS[CVE-2025-21791] = "fixed-version: Fixed from version 6.14" | ||
| 14128 | |||
| 14129 | CVE_STATUS[CVE-2025-21792] = "fixed-version: Fixed from version 6.14" | ||
| 14130 | |||
| 14131 | CVE_STATUS[CVE-2025-21793] = "fixed-version: Fixed from version 6.14" | ||
| 14132 | |||
| 14133 | CVE_STATUS[CVE-2025-21794] = "fixed-version: Fixed from version 6.13.4" | ||
| 14134 | |||
| 14135 | CVE_STATUS[CVE-2025-21795] = "fixed-version: Fixed from version 6.14" | ||
| 14136 | |||
| 14137 | CVE_STATUS[CVE-2025-21796] = "fixed-version: Fixed from version 6.14" | ||
| 14138 | |||
| 14139 | CVE_STATUS[CVE-2025-21797] = "fixed-version: Fixed from version 6.14" | ||
| 14140 | |||
| 14141 | CVE_STATUS[CVE-2025-21798] = "fixed-version: Fixed from version 6.14" | ||
| 14142 | |||
| 14143 | CVE_STATUS[CVE-2025-21799] = "fixed-version: Fixed from version 6.14" | ||
| 14144 | |||
| 14145 | CVE_STATUS[CVE-2025-21800] = "fixed-version: Fixed from version 6.14" | ||
| 14146 | |||
| 14147 | CVE_STATUS[CVE-2025-21801] = "fixed-version: Fixed from version 6.14" | ||
| 14148 | |||
| 14149 | CVE_STATUS[CVE-2025-21802] = "fixed-version: Fixed from version 6.14" | ||
| 14150 | |||
| 14151 | CVE_STATUS[CVE-2025-21803] = "fixed-version: Fixed from version 6.14" | ||
| 14152 | |||
| 14153 | CVE_STATUS[CVE-2025-21804] = "fixed-version: Fixed from version 6.14" | ||
| 14154 | |||
| 14155 | CVE_STATUS[CVE-2025-21805] = "fixed-version: Fixed from version 6.14" | ||
| 14156 | |||
| 14157 | CVE_STATUS[CVE-2025-21806] = "fixed-version: Fixed from version 6.14" | ||
| 14158 | |||
| 14159 | CVE_STATUS[CVE-2025-21807] = "fixed-version: Fixed from version 6.14" | ||
| 14160 | |||
| 14161 | CVE_STATUS[CVE-2025-21808] = "fixed-version: Fixed from version 6.14" | ||
| 14162 | |||
| 14163 | CVE_STATUS[CVE-2025-21809] = "fixed-version: Fixed from version 6.14" | ||
| 14164 | |||
| 14165 | CVE_STATUS[CVE-2025-21810] = "fixed-version: Fixed from version 6.14" | ||
| 14166 | |||
| 14167 | CVE_STATUS[CVE-2025-21811] = "fixed-version: Fixed from version 6.14" | ||
| 14168 | |||
| 14169 | CVE_STATUS[CVE-2025-21812] = "fixed-version: Fixed from version 6.14" | ||
| 14170 | |||
| 14171 | CVE_STATUS[CVE-2025-21813] = "fixed-version: Fixed from version 6.14" | ||
| 14172 | |||
| 14173 | CVE_STATUS[CVE-2025-21814] = "fixed-version: Fixed from version 6.14" | ||
| 14174 | |||
| 14175 | CVE_STATUS[CVE-2025-21815] = "fixed-version: Fixed from version 6.14" | ||
| 14176 | |||
| 14177 | CVE_STATUS[CVE-2025-21816] = "fixed-version: Fixed from version 6.14" | ||
| 14178 | |||
| 14179 | CVE_STATUS[CVE-2025-21817] = "fixed-version: Fixed from version 6.13.3" | ||
| 14180 | |||
| 14181 | CVE_STATUS[CVE-2025-21819] = "fixed-version: Fixed from version 6.14" | ||
| 14182 | |||
| 14183 | CVE_STATUS[CVE-2025-21820] = "fixed-version: Fixed from version 6.14" | ||
| 14184 | |||
| 14185 | CVE_STATUS[CVE-2025-21821] = "fixed-version: Fixed from version 6.14" | ||
| 14186 | |||
| 14187 | CVE_STATUS[CVE-2025-21822] = "fixed-version: Fixed from version 6.14" | ||
| 14188 | |||
| 14189 | CVE_STATUS[CVE-2025-21823] = "fixed-version: Fixed from version 6.14" | ||
| 14190 | |||
| 14191 | CVE_STATUS[CVE-2025-21824] = "fixed-version: Fixed from version 6.14" | ||
| 14192 | |||
| 14193 | CVE_STATUS[CVE-2025-21825] = "fixed-version: Fixed from version 6.14" | ||
| 14194 | |||
| 14195 | CVE_STATUS[CVE-2025-21826] = "fixed-version: Fixed from version 6.14" | ||
| 14196 | |||
| 14197 | CVE_STATUS[CVE-2025-21827] = "fixed-version: Fixed from version 6.14" | ||
| 14198 | |||
| 14199 | CVE_STATUS[CVE-2025-21828] = "fixed-version: Fixed from version 6.14" | ||
| 14200 | |||
| 14201 | CVE_STATUS[CVE-2025-21829] = "fixed-version: Fixed from version 6.14" | ||
| 14202 | |||
| 14203 | CVE_STATUS[CVE-2025-21830] = "fixed-version: Fixed from version 6.14" | ||
| 14204 | |||
| 14205 | CVE_STATUS[CVE-2025-21831] = "fixed-version: Fixed from version 6.14" | ||
| 14206 | |||
| 14207 | CVE_STATUS[CVE-2025-21832] = "fixed-version: Fixed from version 6.14" | ||
| 14208 | |||
| 14209 | CVE_STATUS[CVE-2025-21833] = "fixed-version: Fixed from version 6.14" | ||
| 14210 | |||
| 14211 | CVE_STATUS[CVE-2025-21834] = "fixed-version: Fixed from version 6.14" | ||
| 14212 | |||
| 14213 | CVE_STATUS[CVE-2025-21835] = "fixed-version: Fixed from version 6.14" | ||
| 14214 | |||
| 14215 | CVE_STATUS[CVE-2025-21836] = "fixed-version: Fixed from version 6.14" | ||
| 14216 | |||
| 14217 | CVE_STATUS[CVE-2025-21838] = "fixed-version: Fixed from version 6.14" | ||
| 14218 | |||
| 14219 | CVE_STATUS[CVE-2025-21839] = "fixed-version: Fixed from version 6.14" | ||
| 14220 | |||
| 14221 | CVE_STATUS[CVE-2025-21840] = "fixed-version: Fixed from version 6.14" | ||
| 14222 | |||
| 14223 | CVE_STATUS[CVE-2025-21841] = "fixed-version: Fixed from version 6.14" | ||
| 14224 | |||
| 14225 | CVE_STATUS[CVE-2025-21842] = "fixed-version: Fixed from version 6.14" | ||
| 14226 | |||
| 14227 | CVE_STATUS[CVE-2025-21843] = "fixed-version: Fixed from version 6.14" | ||
| 14228 | |||
| 14229 | CVE_STATUS[CVE-2025-21844] = "fixed-version: Fixed from version 6.14" | ||
| 14230 | |||
| 14231 | CVE_STATUS[CVE-2025-21845] = "fixed-version: Fixed from version 6.14" | ||
| 14232 | |||
| 14233 | CVE_STATUS[CVE-2025-21846] = "fixed-version: Fixed from version 6.14" | ||
| 14234 | |||
| 14235 | CVE_STATUS[CVE-2025-21847] = "fixed-version: Fixed from version 6.14" | ||
| 14236 | |||
| 14237 | CVE_STATUS[CVE-2025-21848] = "fixed-version: Fixed from version 6.14" | ||
| 14238 | |||
| 14239 | CVE_STATUS[CVE-2025-21849] = "fixed-version: Fixed from version 6.14" | ||
| 14240 | |||
| 14241 | CVE_STATUS[CVE-2025-21850] = "fixed-version: Fixed from version 6.14" | ||
| 14242 | |||
| 14243 | CVE_STATUS[CVE-2025-21851] = "fixed-version: Fixed from version 6.14" | ||
| 14244 | |||
| 14245 | CVE_STATUS[CVE-2025-21852] = "fixed-version: Fixed from version 6.14" | ||
| 14246 | |||
| 14247 | CVE_STATUS[CVE-2025-21853] = "fixed-version: Fixed from version 6.14" | ||
| 14248 | |||
| 14249 | CVE_STATUS[CVE-2025-21854] = "fixed-version: Fixed from version 6.14" | ||
| 14250 | |||
| 14251 | CVE_STATUS[CVE-2025-21855] = "fixed-version: Fixed from version 6.14" | ||
| 14252 | |||
| 14253 | CVE_STATUS[CVE-2025-21856] = "fixed-version: Fixed from version 6.14" | ||
| 14254 | |||
| 14255 | CVE_STATUS[CVE-2025-21857] = "fixed-version: Fixed from version 6.14" | ||
| 14256 | |||
| 14257 | CVE_STATUS[CVE-2025-21858] = "fixed-version: Fixed from version 6.14" | ||
| 14258 | |||
| 14259 | CVE_STATUS[CVE-2025-21859] = "fixed-version: Fixed from version 6.14" | ||
| 14260 | |||
| 14261 | CVE_STATUS[CVE-2025-21860] = "fixed-version: Fixed from version 6.14" | ||
| 14262 | |||
| 14263 | CVE_STATUS[CVE-2025-21861] = "fixed-version: Fixed from version 6.14" | ||
| 14264 | |||
| 14265 | CVE_STATUS[CVE-2025-21862] = "fixed-version: Fixed from version 6.14" | ||
| 14266 | |||
| 14267 | CVE_STATUS[CVE-2025-21863] = "fixed-version: Fixed from version 6.14" | ||
| 14268 | |||
| 14269 | CVE_STATUS[CVE-2025-21864] = "fixed-version: Fixed from version 6.14" | ||
| 14270 | |||
| 14271 | CVE_STATUS[CVE-2025-21865] = "fixed-version: Fixed from version 6.14" | ||
| 14272 | |||
| 14273 | CVE_STATUS[CVE-2025-21866] = "fixed-version: Fixed from version 6.14" | ||
| 14274 | |||
| 14275 | CVE_STATUS[CVE-2025-21867] = "fixed-version: Fixed from version 6.14" | ||
| 14276 | |||
| 14277 | CVE_STATUS[CVE-2025-21868] = "fixed-version: Fixed from version 6.14" | ||
| 14278 | |||
| 14279 | CVE_STATUS[CVE-2025-21869] = "fixed-version: Fixed from version 6.14" | ||
| 14280 | |||
| 14281 | CVE_STATUS[CVE-2025-21870] = "fixed-version: Fixed from version 6.14" | ||
| 14282 | |||
| 14283 | CVE_STATUS[CVE-2025-21871] = "fixed-version: Fixed from version 6.14" | ||
| 14284 | |||
| 14285 | CVE_STATUS[CVE-2025-21872] = "fixed-version: Fixed from version 6.14" | ||
| 14286 | |||
| 14287 | CVE_STATUS[CVE-2025-21873] = "fixed-version: Fixed from version 6.14" | ||
| 14288 | |||
| 14289 | CVE_STATUS[CVE-2025-21874] = "fixed-version: Fixed from version 6.14" | ||
| 14290 | |||
| 14291 | CVE_STATUS[CVE-2025-21875] = "fixed-version: Fixed from version 6.14" | ||
| 14292 | |||
| 14293 | CVE_STATUS[CVE-2025-21876] = "fixed-version: Fixed from version 6.14" | ||
| 14294 | |||
| 14295 | CVE_STATUS[CVE-2025-21877] = "fixed-version: Fixed from version 6.14" | ||
| 14296 | |||
| 14297 | CVE_STATUS[CVE-2025-21878] = "fixed-version: Fixed from version 6.14" | ||
| 14298 | |||
| 14299 | CVE_STATUS[CVE-2025-21879] = "fixed-version: Fixed from version 6.14" | ||
| 14300 | |||
| 14301 | CVE_STATUS[CVE-2025-21880] = "fixed-version: Fixed from version 6.14" | ||
| 14302 | |||
| 14303 | CVE_STATUS[CVE-2025-21881] = "fixed-version: Fixed from version 6.14" | ||
| 14304 | |||
| 14305 | CVE_STATUS[CVE-2025-21882] = "fixed-version: Fixed from version 6.14" | ||
| 14306 | |||
| 14307 | CVE_STATUS[CVE-2025-21883] = "fixed-version: Fixed from version 6.14" | ||
| 14308 | |||
| 14309 | CVE_STATUS[CVE-2025-21884] = "fixed-version: Fixed from version 6.14" | ||
| 14310 | |||
| 14311 | CVE_STATUS[CVE-2025-21885] = "fixed-version: Fixed from version 6.14" | ||
| 14312 | |||
| 14313 | CVE_STATUS[CVE-2025-21886] = "fixed-version: Fixed from version 6.13.6" | ||
| 14314 | |||
| 14315 | CVE_STATUS[CVE-2025-21887] = "fixed-version: Fixed from version 6.14" | ||
| 14316 | |||
| 14317 | CVE_STATUS[CVE-2025-21888] = "fixed-version: Fixed from version 6.14" | ||
| 14318 | |||
| 14319 | CVE_STATUS[CVE-2025-21889] = "fixed-version: Fixed from version 6.14" | ||
| 14320 | |||
| 14321 | CVE_STATUS[CVE-2025-21890] = "fixed-version: Fixed from version 6.14" | ||
| 14322 | |||
| 14323 | CVE_STATUS[CVE-2025-21891] = "fixed-version: Fixed from version 6.14" | ||
| 14324 | |||
| 14325 | CVE_STATUS[CVE-2025-21892] = "fixed-version: Fixed from version 6.14" | ||
| 14326 | |||
| 14327 | CVE_STATUS[CVE-2025-21893] = "fixed-version: Fixed from version 6.14" | ||
| 14328 | |||
| 14329 | CVE_STATUS[CVE-2025-21894] = "fixed-version: Fixed from version 6.14" | ||
| 14330 | |||
| 14331 | CVE_STATUS[CVE-2025-21895] = "fixed-version: Fixed from version 6.14" | ||
| 14332 | |||
| 14333 | CVE_STATUS[CVE-2025-21896] = "fixed-version: Fixed from version 6.14" | ||
| 14334 | |||
| 14335 | CVE_STATUS[CVE-2025-21897] = "fixed-version: Fixed from version 6.14" | ||
| 14336 | |||
| 14337 | CVE_STATUS[CVE-2025-21898] = "fixed-version: Fixed from version 6.14" | ||
| 14338 | |||
| 14339 | CVE_STATUS[CVE-2025-21899] = "fixed-version: Fixed from version 6.14" | ||
| 14340 | |||
| 14341 | CVE_STATUS[CVE-2025-21900] = "fixed-version: Fixed from version 6.14" | ||
| 14342 | |||
| 14343 | CVE_STATUS[CVE-2025-21901] = "fixed-version: Fixed from version 6.14" | ||
| 14344 | |||
| 14345 | CVE_STATUS[CVE-2025-21902] = "fixed-version: Fixed from version 6.14" | ||
| 14346 | |||
| 14347 | CVE_STATUS[CVE-2025-21903] = "fixed-version: Fixed from version 6.14" | ||
| 14348 | |||
| 14349 | CVE_STATUS[CVE-2025-21904] = "fixed-version: Fixed from version 6.14" | ||
| 14350 | |||
| 14351 | CVE_STATUS[CVE-2025-21905] = "fixed-version: Fixed from version 6.14" | ||
| 14352 | |||
| 14353 | CVE_STATUS[CVE-2025-21906] = "fixed-version: Fixed from version 6.14" | ||
| 14354 | |||
| 14355 | CVE_STATUS[CVE-2025-21907] = "fixed-version: Fixed from version 6.14" | ||
| 14356 | |||
| 14357 | CVE_STATUS[CVE-2025-21908] = "fixed-version: Fixed from version 6.14" | ||
| 14358 | |||
| 14359 | CVE_STATUS[CVE-2025-21909] = "fixed-version: Fixed from version 6.14" | ||
| 14360 | |||
| 14361 | CVE_STATUS[CVE-2025-21910] = "fixed-version: Fixed from version 6.14" | ||
| 14362 | |||
| 14363 | CVE_STATUS[CVE-2025-21911] = "fixed-version: Fixed from version 6.14" | ||
| 14364 | |||
| 14365 | CVE_STATUS[CVE-2025-21912] = "fixed-version: Fixed from version 6.14" | ||
| 14366 | |||
| 14367 | CVE_STATUS[CVE-2025-21913] = "fixed-version: Fixed from version 6.14" | ||
| 14368 | |||
| 14369 | CVE_STATUS[CVE-2025-21914] = "fixed-version: Fixed from version 6.14" | ||
| 14370 | |||
| 14371 | CVE_STATUS[CVE-2025-21915] = "fixed-version: Fixed from version 6.14" | ||
| 14372 | |||
| 14373 | CVE_STATUS[CVE-2025-21916] = "fixed-version: Fixed from version 6.14" | ||
| 14374 | |||
| 14375 | CVE_STATUS[CVE-2025-21917] = "fixed-version: Fixed from version 6.14" | ||
| 14376 | |||
| 14377 | CVE_STATUS[CVE-2025-21918] = "fixed-version: Fixed from version 6.14" | ||
| 14378 | |||
| 14379 | CVE_STATUS[CVE-2025-21919] = "fixed-version: Fixed from version 6.14" | ||
| 14380 | |||
| 14381 | CVE_STATUS[CVE-2025-21920] = "fixed-version: Fixed from version 6.14" | ||
| 14382 | |||
| 14383 | CVE_STATUS[CVE-2025-21921] = "fixed-version: Fixed from version 6.14" | ||
| 14384 | |||
| 14385 | CVE_STATUS[CVE-2025-21922] = "fixed-version: Fixed from version 6.14" | ||
| 14386 | |||
| 14387 | CVE_STATUS[CVE-2025-21923] = "fixed-version: Fixed from version 6.13.7" | ||
| 14388 | |||
| 14389 | CVE_STATUS[CVE-2025-21924] = "fixed-version: Fixed from version 6.14" | ||
| 14390 | |||
| 14391 | CVE_STATUS[CVE-2025-21925] = "fixed-version: Fixed from version 6.14" | ||
| 14392 | |||
| 14393 | CVE_STATUS[CVE-2025-21926] = "fixed-version: Fixed from version 6.14" | ||
| 14394 | |||
| 14395 | CVE_STATUS[CVE-2025-21927] = "fixed-version: Fixed from version 6.14" | ||
| 14396 | |||
| 14397 | CVE_STATUS[CVE-2025-21928] = "fixed-version: Fixed from version 6.14" | ||
| 14398 | |||
| 14399 | CVE_STATUS[CVE-2025-21929] = "fixed-version: Fixed from version 6.14" | ||
| 14400 | |||
| 14401 | CVE_STATUS[CVE-2025-21930] = "fixed-version: Fixed from version 6.14" | ||
| 14402 | |||
| 14403 | CVE_STATUS[CVE-2025-21931] = "fixed-version: Fixed from version 6.14" | ||
| 14404 | |||
| 14405 | CVE_STATUS[CVE-2025-21932] = "fixed-version: Fixed from version 6.14" | ||
| 14406 | |||
| 14407 | CVE_STATUS[CVE-2025-21933] = "fixed-version: Fixed from version 6.14" | ||
| 14408 | |||
| 14409 | CVE_STATUS[CVE-2025-21934] = "fixed-version: Fixed from version 6.14" | ||
| 14410 | |||
| 14411 | CVE_STATUS[CVE-2025-21935] = "fixed-version: Fixed from version 6.14" | ||
| 14412 | |||
| 14413 | CVE_STATUS[CVE-2025-21936] = "fixed-version: Fixed from version 6.14" | ||
| 14414 | |||
| 14415 | CVE_STATUS[CVE-2025-21937] = "fixed-version: Fixed from version 6.14" | ||
| 14416 | |||
| 14417 | CVE_STATUS[CVE-2025-21938] = "fixed-version: Fixed from version 6.14" | ||
| 14418 | |||
| 14419 | CVE_STATUS[CVE-2025-21939] = "fixed-version: Fixed from version 6.14" | ||
| 14420 | |||
| 14421 | CVE_STATUS[CVE-2025-21940] = "fixed-version: Fixed from version 6.14" | ||
| 14422 | |||
| 14423 | CVE_STATUS[CVE-2025-21941] = "fixed-version: Fixed from version 6.14" | ||
| 14424 | |||
| 14425 | CVE_STATUS[CVE-2025-21942] = "fixed-version: Fixed from version 6.13.7" | ||
| 14426 | |||
| 14427 | CVE_STATUS[CVE-2025-21943] = "fixed-version: Fixed from version 6.14" | ||
| 14428 | |||
| 14429 | CVE_STATUS[CVE-2025-21944] = "fixed-version: Fixed from version 6.14" | ||
| 14430 | |||
| 14431 | CVE_STATUS[CVE-2025-21945] = "fixed-version: Fixed from version 6.14" | ||
| 14432 | |||
| 14433 | CVE_STATUS[CVE-2025-21946] = "fixed-version: Fixed from version 6.14" | ||
| 14434 | |||
| 14435 | CVE_STATUS[CVE-2025-21947] = "fixed-version: Fixed from version 6.14" | ||
| 14436 | |||
| 14437 | CVE_STATUS[CVE-2025-21948] = "fixed-version: Fixed from version 6.14" | ||
| 14438 | |||
| 14439 | CVE_STATUS[CVE-2025-21949] = "fixed-version: Fixed from version 6.14" | ||
| 14440 | |||
| 14441 | CVE_STATUS[CVE-2025-21950] = "fixed-version: Fixed from version 6.14" | ||
| 14442 | |||
| 14443 | CVE_STATUS[CVE-2025-21951] = "fixed-version: Fixed from version 6.14" | ||
| 14444 | |||
| 14445 | CVE_STATUS[CVE-2025-21952] = "fixed-version: Fixed from version 6.14" | ||
| 14446 | |||
| 14447 | CVE_STATUS[CVE-2025-21953] = "fixed-version: Fixed from version 6.14" | ||
| 14448 | |||
| 14449 | CVE_STATUS[CVE-2025-21954] = "fixed-version: Fixed from version 6.14" | ||
| 14450 | |||
| 14451 | CVE_STATUS[CVE-2025-21955] = "fixed-version: Fixed from version 6.14" | ||
| 14452 | |||
| 14453 | CVE_STATUS[CVE-2025-21956] = "fixed-version: Fixed from version 6.14" | ||
| 14454 | |||
| 14455 | CVE_STATUS[CVE-2025-21957] = "fixed-version: Fixed from version 6.14" | ||
| 14456 | |||
| 14457 | CVE_STATUS[CVE-2025-21958] = "fixed-version: Fixed from version 6.14" | ||
| 14458 | |||
| 14459 | CVE_STATUS[CVE-2025-21959] = "fixed-version: Fixed from version 6.14" | ||
| 14460 | |||
| 14461 | CVE_STATUS[CVE-2025-21960] = "fixed-version: Fixed from version 6.14" | ||
| 14462 | |||
| 14463 | CVE_STATUS[CVE-2025-21961] = "fixed-version: Fixed from version 6.14" | ||
| 14464 | |||
| 14465 | CVE_STATUS[CVE-2025-21962] = "fixed-version: Fixed from version 6.14" | ||
| 14466 | |||
| 14467 | CVE_STATUS[CVE-2025-21963] = "fixed-version: Fixed from version 6.14" | ||
| 14468 | |||
| 14469 | CVE_STATUS[CVE-2025-21964] = "fixed-version: Fixed from version 6.14" | ||
| 14470 | |||
| 14471 | CVE_STATUS[CVE-2025-21965] = "fixed-version: Fixed from version 6.14" | ||
| 14472 | |||
| 14473 | CVE_STATUS[CVE-2025-21966] = "fixed-version: Fixed from version 6.14" | ||
| 14474 | |||
| 14475 | CVE_STATUS[CVE-2025-21967] = "fixed-version: Fixed from version 6.14" | ||
| 14476 | |||
| 14477 | CVE_STATUS[CVE-2025-21968] = "fixed-version: Fixed from version 6.14" | ||
| 14478 | |||
| 14479 | CVE_STATUS[CVE-2025-21969] = "fixed-version: Fixed from version 6.14" | ||
| 14480 | |||
| 14481 | CVE_STATUS[CVE-2025-21970] = "fixed-version: Fixed from version 6.14" | ||
| 14482 | |||
| 14483 | CVE_STATUS[CVE-2025-21971] = "fixed-version: Fixed from version 6.14" | ||
| 14484 | |||
| 14485 | CVE_STATUS[CVE-2025-21972] = "fixed-version: Fixed from version 6.14" | ||
| 14486 | |||
| 14487 | CVE_STATUS[CVE-2025-21973] = "fixed-version: Fixed from version 6.14" | ||
| 14488 | |||
| 14489 | CVE_STATUS[CVE-2025-21974] = "fixed-version: Fixed from version 6.14" | ||
| 14490 | |||
| 14491 | CVE_STATUS[CVE-2025-21975] = "fixed-version: Fixed from version 6.14" | ||
| 14492 | |||
| 14493 | CVE_STATUS[CVE-2025-21976] = "fixed-version: Fixed from version 6.14" | ||
| 14494 | |||
| 14495 | CVE_STATUS[CVE-2025-21977] = "fixed-version: Fixed from version 6.14" | ||
| 14496 | |||
| 14497 | CVE_STATUS[CVE-2025-21978] = "fixed-version: Fixed from version 6.14" | ||
| 14498 | |||
| 14499 | CVE_STATUS[CVE-2025-21979] = "fixed-version: Fixed from version 6.14" | ||
| 14500 | |||
| 14501 | CVE_STATUS[CVE-2025-21980] = "fixed-version: Fixed from version 6.14" | ||
| 14502 | |||
| 14503 | CVE_STATUS[CVE-2025-21981] = "fixed-version: Fixed from version 6.14" | ||
| 14504 | |||
| 14505 | CVE_STATUS[CVE-2025-21982] = "fixed-version: Fixed from version 6.14" | ||
| 14506 | |||
| 14507 | CVE_STATUS[CVE-2025-21983] = "fixed-version: Fixed from version 6.14" | ||
| 14508 | |||
| 14509 | CVE_STATUS[CVE-2025-21984] = "fixed-version: Fixed from version 6.14" | ||
| 14510 | |||
| 14511 | CVE_STATUS[CVE-2025-21985] = "fixed-version: Fixed from version 6.14" | ||
| 14512 | |||
| 14513 | CVE_STATUS[CVE-2025-21986] = "fixed-version: Fixed from version 6.14" | ||
| 14514 | |||
| 14515 | CVE_STATUS[CVE-2025-21987] = "fixed-version: Fixed from version 6.14" | ||
| 14516 | |||
| 14517 | CVE_STATUS[CVE-2025-21988] = "fixed-version: Fixed from version 6.14" | ||
| 14518 | |||
| 14519 | CVE_STATUS[CVE-2025-21989] = "fixed-version: Fixed from version 6.14" | ||
| 14520 | |||
| 14521 | CVE_STATUS[CVE-2025-21990] = "fixed-version: Fixed from version 6.14" | ||
| 14522 | |||
| 14523 | CVE_STATUS[CVE-2025-21991] = "fixed-version: Fixed from version 6.14" | ||
| 14524 | |||
| 14525 | CVE_STATUS[CVE-2025-21992] = "fixed-version: Fixed from version 6.14" | ||
| 14526 | |||
| 14527 | CVE_STATUS[CVE-2025-21993] = "fixed-version: Fixed from version 6.14" | ||
| 14528 | |||
| 14529 | CVE_STATUS[CVE-2025-21994] = "fixed-version: Fixed from version 6.14" | ||
| 14530 | |||
| 14531 | CVE_STATUS[CVE-2025-21995] = "fixed-version: Fixed from version 6.14" | ||
| 14532 | |||
| 14533 | CVE_STATUS[CVE-2025-21996] = "fixed-version: Fixed from version 6.14" | ||
| 14534 | |||
| 14535 | CVE_STATUS[CVE-2025-21997] = "fixed-version: Fixed from version 6.14" | ||
| 14536 | |||
| 14537 | CVE_STATUS[CVE-2025-21998] = "fixed-version: Fixed from version 6.14" | ||
| 14538 | |||
| 14539 | CVE_STATUS[CVE-2025-21999] = "fixed-version: Fixed from version 6.14" | ||
| 14540 | |||
| 14541 | CVE_STATUS[CVE-2025-22000] = "fixed-version: Fixed from version 6.14" | ||
| 14542 | |||
| 14543 | CVE_STATUS[CVE-2025-22001] = "fixed-version: Fixed from version 6.14" | ||
| 14544 | |||
| 14545 | CVE_STATUS[CVE-2025-22002] = "fixed-version: Fixed from version 6.14" | ||
| 14546 | |||
| 14547 | CVE_STATUS[CVE-2025-22003] = "fixed-version: Fixed from version 6.14" | ||
| 14548 | |||
| 14549 | CVE_STATUS[CVE-2025-22004] = "fixed-version: Fixed from version 6.14" | ||
| 14550 | |||
| 14551 | CVE_STATUS[CVE-2025-22005] = "fixed-version: Fixed from version 6.14" | ||
| 14552 | |||
| 14553 | CVE_STATUS[CVE-2025-22006] = "fixed-version: Fixed from version 6.13.9" | ||
| 14554 | |||
| 14555 | CVE_STATUS[CVE-2025-22007] = "fixed-version: Fixed from version 6.14" | ||
| 14556 | |||
| 14557 | CVE_STATUS[CVE-2025-22008] = "fixed-version: Fixed from version 6.14" | ||
| 14558 | |||
| 14559 | CVE_STATUS[CVE-2025-22009] = "fixed-version: Fixed from version 6.14" | ||
| 14560 | |||
| 14561 | CVE_STATUS[CVE-2025-22010] = "fixed-version: Fixed from version 6.14" | ||
| 14562 | |||
| 14563 | CVE_STATUS[CVE-2025-22011] = "fixed-version: Fixed from version 6.14" | ||
| 14564 | |||
| 14565 | CVE_STATUS[CVE-2025-22012] = "fixed-version: Fixed from version 6.14" | ||
| 14566 | |||
| 14567 | CVE_STATUS[CVE-2025-22013] = "fixed-version: Fixed from version 6.14" | ||
| 14568 | |||
| 14569 | CVE_STATUS[CVE-2025-22014] = "fixed-version: Fixed from version 6.14" | ||
| 14570 | |||
| 14571 | CVE_STATUS[CVE-2025-22015] = "fixed-version: Fixed from version 6.14" | ||
| 14572 | |||
| 14573 | CVE_STATUS[CVE-2025-22016] = "fixed-version: Fixed from version 6.14" | ||
| 14574 | |||
| 14575 | CVE_STATUS[CVE-2025-22017] = "fixed-version: Fixed from version 6.14" | ||
| 14576 | |||
| 14577 | CVE_STATUS[CVE-2025-22018] = "fixed-version: Fixed from version 6.15" | ||
| 14578 | |||
| 14579 | CVE_STATUS[CVE-2025-22019] = "fixed-version: Fixed from version 6.15" | ||
| 14580 | |||
| 14581 | CVE_STATUS[CVE-2025-22020] = "fixed-version: Fixed from version 6.15" | ||
| 14582 | |||
| 14583 | CVE_STATUS[CVE-2025-22021] = "fixed-version: Fixed from version 6.15" | ||
| 14584 | |||
| 14585 | CVE_STATUS[CVE-2025-22022] = "fixed-version: Fixed from version 6.15" | ||
| 14586 | |||
| 14587 | CVE_STATUS[CVE-2025-22023] = "fixed-version: Fixed from version 6.15" | ||
| 14588 | |||
| 14589 | CVE_STATUS[CVE-2025-22024] = "fixed-version: Fixed from version 6.15" | ||
| 14590 | |||
| 14591 | CVE_STATUS[CVE-2025-22025] = "fixed-version: Fixed from version 6.15" | ||
| 14592 | |||
| 14593 | CVE_STATUS[CVE-2025-22026] = "fixed-version: Fixed from version 6.15" | ||
| 14594 | |||
| 14595 | CVE_STATUS[CVE-2025-22027] = "fixed-version: Fixed from version 6.15" | ||
| 14596 | |||
| 14597 | CVE_STATUS[CVE-2025-22028] = "fixed-version: Fixed from version 6.15" | ||
| 14598 | |||
| 14599 | CVE_STATUS[CVE-2025-22030] = "fixed-version: Fixed from version 6.15" | ||
| 14600 | |||
| 14601 | CVE_STATUS[CVE-2025-22031] = "fixed-version: Fixed from version 6.15" | ||
| 14602 | |||
| 14603 | CVE_STATUS[CVE-2025-22032] = "fixed-version: Fixed from version 6.15" | ||
| 14604 | |||
| 14605 | CVE_STATUS[CVE-2025-22033] = "fixed-version: Fixed from version 6.15" | ||
| 14606 | |||
| 14607 | CVE_STATUS[CVE-2025-22034] = "fixed-version: Fixed from version 6.15" | ||
| 14608 | |||
| 14609 | CVE_STATUS[CVE-2025-22035] = "fixed-version: Fixed from version 6.15" | ||
| 14610 | |||
| 14611 | CVE_STATUS[CVE-2025-22036] = "fixed-version: Fixed from version 6.15" | ||
| 14612 | |||
| 14613 | CVE_STATUS[CVE-2025-22037] = "fixed-version: Fixed from version 6.15" | ||
| 14614 | |||
| 14615 | CVE_STATUS[CVE-2025-22038] = "fixed-version: Fixed from version 6.15" | ||
| 14616 | |||
| 14617 | CVE_STATUS[CVE-2025-22039] = "fixed-version: Fixed from version 6.15" | ||
| 14618 | |||
| 14619 | CVE_STATUS[CVE-2025-22040] = "fixed-version: Fixed from version 6.15" | ||
| 14620 | |||
| 14621 | CVE_STATUS[CVE-2025-22041] = "fixed-version: Fixed from version 6.15" | ||
| 14622 | |||
| 14623 | CVE_STATUS[CVE-2025-22042] = "fixed-version: Fixed from version 6.15" | ||
| 14624 | |||
| 14625 | CVE_STATUS[CVE-2025-22043] = "fixed-version: Fixed from version 6.15" | ||
| 14626 | |||
| 14627 | CVE_STATUS[CVE-2025-22044] = "fixed-version: Fixed from version 6.15" | ||
| 14628 | |||
| 14629 | CVE_STATUS[CVE-2025-22045] = "fixed-version: Fixed from version 6.15" | ||
| 14630 | |||
| 14631 | CVE_STATUS[CVE-2025-22046] = "fixed-version: Fixed from version 6.15" | ||
| 14632 | |||
| 14633 | CVE_STATUS[CVE-2025-22047] = "fixed-version: Fixed from version 6.15" | ||
| 14634 | |||
| 14635 | CVE_STATUS[CVE-2025-22048] = "fixed-version: Fixed from version 6.15" | ||
| 14636 | |||
| 14637 | CVE_STATUS[CVE-2025-22049] = "fixed-version: Fixed from version 6.15" | ||
| 14638 | |||
| 14639 | CVE_STATUS[CVE-2025-22050] = "fixed-version: Fixed from version 6.15" | ||
| 14640 | |||
| 14641 | CVE_STATUS[CVE-2025-22051] = "fixed-version: Fixed from version 6.15" | ||
| 14642 | |||
| 14643 | CVE_STATUS[CVE-2025-22052] = "fixed-version: Fixed from version 6.15" | ||
| 14644 | |||
| 14645 | CVE_STATUS[CVE-2025-22053] = "fixed-version: Fixed from version 6.15" | ||
| 14646 | |||
| 14647 | CVE_STATUS[CVE-2025-22054] = "fixed-version: Fixed from version 6.15" | ||
| 14648 | |||
| 14649 | CVE_STATUS[CVE-2025-22055] = "fixed-version: Fixed from version 6.15" | ||
| 14650 | |||
| 14651 | CVE_STATUS[CVE-2025-22056] = "fixed-version: Fixed from version 6.15" | ||
| 14652 | |||
| 14653 | CVE_STATUS[CVE-2025-22057] = "fixed-version: Fixed from version 6.15" | ||
| 14654 | |||
| 14655 | CVE_STATUS[CVE-2025-22058] = "fixed-version: Fixed from version 6.15" | ||
| 14656 | |||
| 14657 | CVE_STATUS[CVE-2025-22059] = "fixed-version: Fixed from version 6.15" | ||
| 14658 | |||
| 14659 | CVE_STATUS[CVE-2025-22060] = "fixed-version: Fixed from version 6.15" | ||
| 14660 | |||
| 14661 | CVE_STATUS[CVE-2025-22061] = "fixed-version: Fixed from version 6.15" | ||
| 14662 | |||
| 14663 | CVE_STATUS[CVE-2025-22062] = "fixed-version: Fixed from version 6.15" | ||
| 14664 | |||
| 14665 | CVE_STATUS[CVE-2025-22063] = "fixed-version: Fixed from version 6.15" | ||
| 14666 | |||
| 14667 | CVE_STATUS[CVE-2025-22064] = "fixed-version: Fixed from version 6.15" | ||
| 14668 | |||
| 14669 | CVE_STATUS[CVE-2025-22065] = "fixed-version: Fixed from version 6.15" | ||
| 14670 | |||
| 14671 | CVE_STATUS[CVE-2025-22066] = "fixed-version: Fixed from version 6.15" | ||
| 14672 | |||
| 14673 | CVE_STATUS[CVE-2025-22067] = "fixed-version: Fixed from version 6.15" | ||
| 14674 | |||
| 14675 | CVE_STATUS[CVE-2025-22068] = "fixed-version: Fixed from version 6.15" | ||
| 14676 | |||
| 14677 | CVE_STATUS[CVE-2025-22069] = "fixed-version: Fixed from version 6.15" | ||
| 14678 | |||
| 14679 | CVE_STATUS[CVE-2025-22070] = "fixed-version: Fixed from version 6.15" | ||
| 14680 | |||
| 14681 | CVE_STATUS[CVE-2025-22071] = "fixed-version: Fixed from version 6.15" | ||
| 14682 | |||
| 14683 | CVE_STATUS[CVE-2025-22072] = "fixed-version: Fixed from version 6.15" | ||
| 14684 | |||
| 14685 | CVE_STATUS[CVE-2025-22073] = "fixed-version: Fixed from version 6.15" | ||
| 14686 | |||
| 14687 | CVE_STATUS[CVE-2025-22074] = "fixed-version: Fixed from version 6.15" | ||
| 14688 | |||
| 14689 | CVE_STATUS[CVE-2025-22075] = "fixed-version: Fixed from version 6.15" | ||
| 14690 | |||
| 14691 | CVE_STATUS[CVE-2025-22076] = "fixed-version: Fixed from version 6.15" | ||
| 14692 | |||
| 14693 | CVE_STATUS[CVE-2025-22077] = "fixed-version: Fixed from version 6.15" | ||
| 14694 | |||
| 14695 | CVE_STATUS[CVE-2025-22078] = "fixed-version: Fixed from version 6.15" | ||
| 14696 | |||
| 14697 | CVE_STATUS[CVE-2025-22079] = "fixed-version: Fixed from version 6.15" | ||
| 14698 | |||
| 14699 | CVE_STATUS[CVE-2025-22080] = "fixed-version: Fixed from version 6.15" | ||
| 14700 | |||
| 14701 | CVE_STATUS[CVE-2025-22081] = "fixed-version: Fixed from version 6.15" | ||
| 14702 | |||
| 14703 | CVE_STATUS[CVE-2025-22082] = "fixed-version: Fixed from version 6.15" | ||
| 14704 | |||
| 14705 | CVE_STATUS[CVE-2025-22083] = "fixed-version: Fixed from version 6.15" | ||
| 14706 | |||
| 14707 | CVE_STATUS[CVE-2025-22084] = "fixed-version: Fixed from version 6.15" | ||
| 14708 | |||
| 14709 | CVE_STATUS[CVE-2025-22085] = "fixed-version: Fixed from version 6.15" | ||
| 14710 | |||
| 14711 | CVE_STATUS[CVE-2025-22086] = "fixed-version: Fixed from version 6.15" | ||
| 14712 | |||
| 14713 | CVE_STATUS[CVE-2025-22087] = "fixed-version: Fixed from version 6.15" | ||
| 14714 | |||
| 14715 | CVE_STATUS[CVE-2025-22088] = "fixed-version: Fixed from version 6.15" | ||
| 14716 | |||
| 14717 | CVE_STATUS[CVE-2025-22089] = "fixed-version: Fixed from version 6.15" | ||
| 14718 | |||
| 14719 | CVE_STATUS[CVE-2025-22090] = "fixed-version: Fixed from version 6.15" | ||
| 14720 | |||
| 14721 | CVE_STATUS[CVE-2025-22091] = "fixed-version: Fixed from version 6.15" | ||
| 14722 | |||
| 14723 | CVE_STATUS[CVE-2025-22092] = "fixed-version: Fixed from version 6.15" | ||
| 14724 | |||
| 14725 | CVE_STATUS[CVE-2025-22093] = "fixed-version: Fixed from version 6.15" | ||
| 14726 | |||
| 14727 | CVE_STATUS[CVE-2025-22094] = "fixed-version: Fixed from version 6.15" | ||
| 14728 | |||
| 14729 | CVE_STATUS[CVE-2025-22095] = "fixed-version: Fixed from version 6.15" | ||
| 14730 | |||
| 14731 | CVE_STATUS[CVE-2025-22096] = "fixed-version: Fixed from version 6.15" | ||
| 14732 | |||
| 14733 | CVE_STATUS[CVE-2025-22097] = "fixed-version: Fixed from version 6.15" | ||
| 14734 | |||
| 14735 | CVE_STATUS[CVE-2025-22098] = "fixed-version: Fixed from version 6.15" | ||
| 14736 | |||
| 14737 | CVE_STATUS[CVE-2025-22099] = "fixed-version: Fixed from version 6.15" | ||
| 14738 | |||
| 14739 | CVE_STATUS[CVE-2025-22100] = "fixed-version: Fixed from version 6.15" | ||
| 14740 | |||
| 14741 | CVE_STATUS[CVE-2025-22101] = "fixed-version: Fixed from version 6.15" | ||
| 14742 | |||
| 14743 | CVE_STATUS[CVE-2025-22102] = "fixed-version: Fixed from version 6.15" | ||
| 14744 | |||
| 14745 | CVE_STATUS[CVE-2025-22103] = "fixed-version: Fixed from version 6.15" | ||
| 14746 | |||
| 14747 | CVE_STATUS[CVE-2025-22104] = "fixed-version: Fixed from version 6.15" | ||
| 14748 | |||
| 14749 | CVE_STATUS[CVE-2025-22105] = "fixed-version: Fixed from version 6.15" | ||
| 14750 | |||
| 14751 | CVE_STATUS[CVE-2025-22106] = "fixed-version: Fixed from version 6.15" | ||
| 14752 | |||
| 14753 | CVE_STATUS[CVE-2025-22107] = "fixed-version: Fixed from version 6.15" | ||
| 14754 | |||
| 14755 | CVE_STATUS[CVE-2025-22108] = "fixed-version: Fixed from version 6.15" | ||
| 14756 | |||
| 14757 | CVE_STATUS[CVE-2025-22109] = "fixed-version: Fixed from version 6.15" | ||
| 14758 | |||
| 14759 | CVE_STATUS[CVE-2025-22110] = "fixed-version: Fixed from version 6.15" | ||
| 14760 | |||
| 14761 | CVE_STATUS[CVE-2025-22111] = "fixed-version: Fixed from version 6.15" | ||
| 14762 | |||
| 14763 | CVE_STATUS[CVE-2025-22112] = "fixed-version: Fixed from version 6.15" | ||
| 14764 | |||
| 14765 | CVE_STATUS[CVE-2025-22113] = "fixed-version: Fixed from version 6.15" | ||
| 14766 | |||
| 14767 | CVE_STATUS[CVE-2025-22114] = "fixed-version: Fixed from version 6.15" | ||
| 14768 | |||
| 14769 | CVE_STATUS[CVE-2025-22115] = "fixed-version: Fixed from version 6.15" | ||
| 14770 | |||
| 14771 | CVE_STATUS[CVE-2025-22116] = "fixed-version: Fixed from version 6.15" | ||
| 14772 | |||
| 14773 | CVE_STATUS[CVE-2025-22117] = "fixed-version: Fixed from version 6.15" | ||
| 14774 | |||
| 14775 | CVE_STATUS[CVE-2025-22118] = "fixed-version: Fixed from version 6.15" | ||
| 14776 | |||
| 14777 | CVE_STATUS[CVE-2025-22119] = "fixed-version: Fixed from version 6.15" | ||
| 14778 | |||
| 14779 | CVE_STATUS[CVE-2025-22120] = "fixed-version: Fixed from version 6.15" | ||
| 14780 | |||
| 14781 | CVE_STATUS[CVE-2025-22121] = "fixed-version: Fixed from version 6.15" | ||
| 14782 | |||
| 14783 | CVE_STATUS[CVE-2025-22122] = "fixed-version: Fixed from version 6.15" | ||
| 14784 | |||
| 14785 | CVE_STATUS[CVE-2025-22123] = "fixed-version: Fixed from version 6.15" | ||
| 14786 | |||
| 14787 | CVE_STATUS[CVE-2025-22124] = "fixed-version: Fixed from version 6.15" | ||
| 14788 | |||
| 14789 | CVE_STATUS[CVE-2025-22125] = "fixed-version: Fixed from version 6.15" | ||
| 14790 | |||
| 14791 | CVE_STATUS[CVE-2025-22126] = "fixed-version: Fixed from version 6.15" | ||
| 14792 | |||
| 14793 | CVE_STATUS[CVE-2025-22127] = "fixed-version: Fixed from version 6.15" | ||
| 14794 | |||
| 14795 | CVE_STATUS[CVE-2025-22128] = "fixed-version: Fixed from version 6.15" | ||
| 14796 | |||
| 14797 | CVE_STATUS[CVE-2025-23129] = "fixed-version: Fixed from version 6.15" | ||
| 14798 | |||
| 14799 | CVE_STATUS[CVE-2025-23130] = "fixed-version: Fixed from version 6.15" | ||
| 14800 | |||
| 14801 | CVE_STATUS[CVE-2025-23131] = "fixed-version: Fixed from version 6.15" | ||
| 14802 | |||
| 14803 | CVE_STATUS[CVE-2025-23132] = "fixed-version: Fixed from version 6.15" | ||
| 14804 | |||
| 14805 | CVE_STATUS[CVE-2025-23133] = "fixed-version: Fixed from version 6.15" | ||
| 14806 | |||
| 14807 | CVE_STATUS[CVE-2025-23134] = "fixed-version: Fixed from version 6.15" | ||
| 14808 | |||
| 14809 | CVE_STATUS[CVE-2025-23135] = "fixed-version: Fixed from version 6.15" | ||
| 14810 | |||
| 14811 | CVE_STATUS[CVE-2025-23136] = "fixed-version: Fixed from version 6.15" | ||
| 14812 | |||
| 14813 | CVE_STATUS[CVE-2025-23137] = "fixed-version: Fixed from version 6.15" | ||
| 14814 | |||
| 14815 | CVE_STATUS[CVE-2025-23138] = "fixed-version: Fixed from version 6.15" | ||
| 14816 | |||
| 14817 | CVE_STATUS[CVE-2025-23140] = "fixed-version: Fixed from version 6.15" | ||
| 14818 | |||
| 14819 | CVE_STATUS[CVE-2025-23141] = "fixed-version: Fixed from version 6.15" | ||
| 14820 | |||
| 14821 | CVE_STATUS[CVE-2025-23142] = "fixed-version: Fixed from version 6.15" | ||
| 14822 | |||
| 14823 | CVE_STATUS[CVE-2025-23143] = "fixed-version: Fixed from version 6.15" | ||
| 14824 | |||
| 14825 | CVE_STATUS[CVE-2025-23144] = "fixed-version: Fixed from version 6.15" | ||
| 14826 | |||
| 14827 | CVE_STATUS[CVE-2025-23145] = "fixed-version: Fixed from version 6.15" | ||
| 14828 | |||
| 14829 | CVE_STATUS[CVE-2025-23146] = "fixed-version: Fixed from version 6.15" | ||
| 14830 | |||
| 14831 | CVE_STATUS[CVE-2025-23147] = "fixed-version: Fixed from version 6.15" | ||
| 14832 | |||
| 14833 | CVE_STATUS[CVE-2025-23148] = "fixed-version: Fixed from version 6.15" | ||
| 14834 | |||
| 14835 | CVE_STATUS[CVE-2025-23149] = "fixed-version: Fixed from version 6.15" | ||
| 14836 | |||
| 14837 | CVE_STATUS[CVE-2025-23150] = "fixed-version: Fixed from version 6.15" | ||
| 14838 | |||
| 14839 | CVE_STATUS[CVE-2025-23151] = "fixed-version: Fixed from version 6.15" | ||
| 14840 | |||
| 14841 | CVE_STATUS[CVE-2025-23152] = "fixed-version: Fixed from version 6.15" | ||
| 14842 | |||
| 14843 | CVE_STATUS[CVE-2025-23153] = "fixed-version: Fixed from version 6.15" | ||
| 14844 | |||
| 14845 | CVE_STATUS[CVE-2025-23154] = "fixed-version: Fixed from version 6.15" | ||
| 14846 | |||
| 14847 | CVE_STATUS[CVE-2025-23155] = "fixed-version: Fixed from version 6.15" | ||
| 14848 | |||
| 14849 | CVE_STATUS[CVE-2025-23156] = "fixed-version: Fixed from version 6.15" | ||
| 14850 | |||
| 14851 | CVE_STATUS[CVE-2025-23157] = "fixed-version: Fixed from version 6.15" | ||
| 14852 | |||
| 14853 | CVE_STATUS[CVE-2025-23158] = "fixed-version: Fixed from version 6.15" | ||
| 14854 | |||
| 14855 | CVE_STATUS[CVE-2025-23159] = "fixed-version: Fixed from version 6.15" | ||
| 14856 | |||
| 14857 | CVE_STATUS[CVE-2025-23160] = "fixed-version: Fixed from version 6.15" | ||
| 14858 | |||
| 14859 | CVE_STATUS[CVE-2025-23161] = "fixed-version: Fixed from version 6.15" | ||
| 14860 | |||
| 14861 | CVE_STATUS[CVE-2025-23162] = "fixed-version: Fixed from version 6.15" | ||
| 14862 | |||
| 14863 | CVE_STATUS[CVE-2025-23163] = "fixed-version: Fixed from version 6.15" | ||
| 14864 | |||
| 14865 | CVE_STATUS[CVE-2025-37738] = "fixed-version: Fixed from version 6.15" | ||
| 14866 | |||
| 14867 | CVE_STATUS[CVE-2025-37739] = "fixed-version: Fixed from version 6.15" | ||
| 14868 | |||
| 14869 | CVE_STATUS[CVE-2025-37740] = "fixed-version: Fixed from version 6.15" | ||
| 14870 | |||
| 14871 | CVE_STATUS[CVE-2025-37741] = "fixed-version: Fixed from version 6.15" | ||
| 14872 | |||
| 14873 | CVE_STATUS[CVE-2025-37742] = "fixed-version: Fixed from version 6.15" | ||
| 14874 | |||
| 14875 | CVE_STATUS[CVE-2025-37743] = "fixed-version: Fixed from version 6.15" | ||
| 14876 | |||
| 14877 | CVE_STATUS[CVE-2025-37744] = "fixed-version: Fixed from version 6.15" | ||
| 14878 | |||
| 14879 | CVE_STATUS[CVE-2025-37745] = "fixed-version: Fixed from version 6.15" | ||
| 14880 | |||
| 14881 | CVE_STATUS[CVE-2025-37746] = "fixed-version: Fixed from version 6.15" | ||
| 14882 | |||
| 14883 | CVE_STATUS[CVE-2025-37747] = "fixed-version: Fixed from version 6.15" | ||
| 14884 | |||
| 14885 | CVE_STATUS[CVE-2025-37748] = "fixed-version: Fixed from version 6.15" | ||
| 14886 | |||
| 14887 | CVE_STATUS[CVE-2025-37749] = "fixed-version: Fixed from version 6.15" | ||
| 14888 | |||
| 14889 | CVE_STATUS[CVE-2025-37750] = "fixed-version: Fixed from version 6.15" | ||
| 14890 | |||
| 14891 | CVE_STATUS[CVE-2025-37751] = "fixed-version: Fixed from version 6.15" | ||
| 14892 | |||
| 14893 | CVE_STATUS[CVE-2025-37752] = "fixed-version: Fixed from version 6.15" | ||
| 14894 | |||
| 14895 | CVE_STATUS[CVE-2025-37754] = "fixed-version: Fixed from version 6.15" | ||
| 14896 | |||
| 14897 | CVE_STATUS[CVE-2025-37755] = "fixed-version: Fixed from version 6.15" | ||
| 14898 | |||
| 14899 | CVE_STATUS[CVE-2025-37756] = "fixed-version: Fixed from version 6.15" | ||
| 14900 | |||
| 14901 | CVE_STATUS[CVE-2025-37757] = "fixed-version: Fixed from version 6.15" | ||
| 14902 | |||
| 14903 | CVE_STATUS[CVE-2025-37758] = "fixed-version: Fixed from version 6.15" | ||
| 14904 | |||
| 14905 | CVE_STATUS[CVE-2025-37759] = "fixed-version: Fixed from version 6.15" | ||
| 14906 | |||
| 14907 | CVE_STATUS[CVE-2025-37760] = "fixed-version: Fixed from version 6.15" | ||
| 14908 | |||
| 14909 | CVE_STATUS[CVE-2025-37761] = "fixed-version: Fixed from version 6.15" | ||
| 14910 | |||
| 14911 | CVE_STATUS[CVE-2025-37762] = "fixed-version: Fixed from version 6.15" | ||
| 14912 | |||
| 14913 | CVE_STATUS[CVE-2025-37763] = "fixed-version: Fixed from version 6.15" | ||
| 14914 | |||
| 14915 | CVE_STATUS[CVE-2025-37764] = "fixed-version: Fixed from version 6.15" | ||
| 14916 | |||
| 14917 | CVE_STATUS[CVE-2025-37765] = "fixed-version: Fixed from version 6.15" | ||
| 14918 | |||
| 14919 | CVE_STATUS[CVE-2025-37766] = "fixed-version: Fixed from version 6.15" | ||
| 14920 | |||
| 14921 | CVE_STATUS[CVE-2025-37767] = "fixed-version: Fixed from version 6.15" | ||
| 14922 | |||
| 14923 | CVE_STATUS[CVE-2025-37768] = "fixed-version: Fixed from version 6.15" | ||
| 14924 | |||
| 14925 | CVE_STATUS[CVE-2025-37769] = "fixed-version: Fixed from version 6.15" | ||
| 14926 | |||
| 14927 | CVE_STATUS[CVE-2025-37770] = "fixed-version: Fixed from version 6.15" | ||
| 14928 | |||
| 14929 | CVE_STATUS[CVE-2025-37771] = "fixed-version: Fixed from version 6.15" | ||
| 14930 | |||
| 14931 | CVE_STATUS[CVE-2025-37772] = "fixed-version: Fixed from version 6.15" | ||
| 14932 | |||
| 14933 | CVE_STATUS[CVE-2025-37773] = "fixed-version: Fixed from version 6.15" | ||
| 14934 | |||
| 14935 | CVE_STATUS[CVE-2025-37774] = "fixed-version: Fixed from version 6.15" | ||
| 14936 | |||
| 14937 | CVE_STATUS[CVE-2025-37775] = "fixed-version: Fixed from version 6.15" | ||
| 14938 | |||
| 14939 | CVE_STATUS[CVE-2025-37776] = "fixed-version: Fixed from version 6.15" | ||
| 14940 | |||
| 14941 | CVE_STATUS[CVE-2025-37777] = "fixed-version: Fixed from version 6.15" | ||
| 14942 | |||
| 14943 | CVE_STATUS[CVE-2025-37778] = "fixed-version: Fixed from version 6.15" | ||
| 14944 | |||
| 14945 | CVE_STATUS[CVE-2025-37779] = "fixed-version: Fixed from version 6.15" | ||
| 14946 | |||
| 14947 | CVE_STATUS[CVE-2025-37780] = "fixed-version: Fixed from version 6.15" | ||
| 14948 | |||
| 14949 | CVE_STATUS[CVE-2025-37781] = "fixed-version: Fixed from version 6.15" | ||
| 14950 | |||
| 14951 | CVE_STATUS[CVE-2025-37783] = "fixed-version: Fixed from version 6.15" | ||
| 14952 | |||
| 14953 | CVE_STATUS[CVE-2025-37784] = "fixed-version: Fixed from version 6.15" | ||
| 14954 | |||
| 14955 | CVE_STATUS[CVE-2025-37785] = "fixed-version: Fixed from version 6.15" | ||
| 14956 | |||
| 14957 | CVE_STATUS[CVE-2025-37786] = "fixed-version: Fixed from version 6.15" | ||
| 14958 | |||
| 14959 | CVE_STATUS[CVE-2025-37787] = "fixed-version: Fixed from version 6.15" | ||
| 14960 | |||
| 14961 | CVE_STATUS[CVE-2025-37788] = "fixed-version: Fixed from version 6.15" | ||
| 14962 | |||
| 14963 | CVE_STATUS[CVE-2025-37789] = "fixed-version: Fixed from version 6.15" | ||
| 14964 | |||
| 14965 | CVE_STATUS[CVE-2025-37790] = "fixed-version: Fixed from version 6.15" | ||
| 14966 | |||
| 14967 | CVE_STATUS[CVE-2025-37791] = "fixed-version: Fixed from version 6.15" | ||
| 14968 | |||
| 14969 | CVE_STATUS[CVE-2025-37792] = "fixed-version: Fixed from version 6.15" | ||
| 14970 | |||
| 14971 | CVE_STATUS[CVE-2025-37793] = "fixed-version: Fixed from version 6.15" | ||
| 14972 | |||
| 14973 | CVE_STATUS[CVE-2025-37794] = "fixed-version: Fixed from version 6.15" | ||
| 14974 | |||
| 14975 | CVE_STATUS[CVE-2025-37796] = "fixed-version: Fixed from version 6.15" | ||
| 14976 | |||
| 14977 | CVE_STATUS[CVE-2025-37797] = "fixed-version: Fixed from version 6.15" | ||
| 14978 | |||
| 14979 | CVE_STATUS[CVE-2025-37798] = "fixed-version: Fixed from version 6.15" | ||
| 14980 | |||
| 14981 | CVE_STATUS[CVE-2025-37799] = "fixed-version: Fixed from version 6.15" | ||
| 14982 | |||
| 14983 | CVE_STATUS[CVE-2025-37800] = "fixed-version: Fixed from version 6.15" | ||
| 14984 | |||
| 14985 | CVE_STATUS[CVE-2025-37801] = "fixed-version: Fixed from version 6.15" | ||
| 14986 | |||
| 14987 | CVE_STATUS[CVE-2025-37802] = "fixed-version: Fixed from version 6.15" | ||
| 14988 | |||
| 14989 | CVE_STATUS[CVE-2025-37803] = "fixed-version: Fixed from version 6.15" | ||
| 14990 | |||
| 14991 | CVE_STATUS[CVE-2025-37805] = "fixed-version: Fixed from version 6.15" | ||
| 14992 | |||
| 14993 | CVE_STATUS[CVE-2025-37806] = "fixed-version: Fixed from version 6.15" | ||
| 14994 | |||
| 14995 | CVE_STATUS[CVE-2025-37807] = "fixed-version: Fixed from version 6.15" | ||
| 14996 | |||
| 14997 | CVE_STATUS[CVE-2025-37808] = "fixed-version: Fixed from version 6.15" | ||
| 14998 | |||
| 14999 | CVE_STATUS[CVE-2025-37809] = "fixed-version: Fixed from version 6.15" | ||
| 15000 | |||
| 15001 | CVE_STATUS[CVE-2025-37810] = "fixed-version: Fixed from version 6.15" | ||
| 15002 | |||
| 15003 | CVE_STATUS[CVE-2025-37811] = "fixed-version: Fixed from version 6.15" | ||
| 15004 | |||
| 15005 | CVE_STATUS[CVE-2025-37812] = "fixed-version: Fixed from version 6.15" | ||
| 15006 | |||
| 15007 | CVE_STATUS[CVE-2025-37813] = "fixed-version: Fixed from version 6.15" | ||
| 15008 | |||
| 15009 | CVE_STATUS[CVE-2025-37814] = "fixed-version: Fixed from version 6.15" | ||
| 15010 | |||
| 15011 | CVE_STATUS[CVE-2025-37815] = "fixed-version: Fixed from version 6.15" | ||
| 15012 | |||
| 15013 | CVE_STATUS[CVE-2025-37816] = "fixed-version: Fixed from version 6.15" | ||
| 15014 | |||
| 15015 | CVE_STATUS[CVE-2025-37817] = "fixed-version: Fixed from version 6.15" | ||
| 15016 | |||
| 15017 | CVE_STATUS[CVE-2025-37818] = "fixed-version: Fixed from version 6.15" | ||
| 15018 | |||
| 15019 | CVE_STATUS[CVE-2025-37819] = "fixed-version: Fixed from version 6.15" | ||
| 15020 | |||
| 15021 | CVE_STATUS[CVE-2025-37820] = "fixed-version: Fixed from version 6.15" | ||
| 15022 | |||
| 15023 | CVE_STATUS[CVE-2025-37821] = "fixed-version: Fixed from version 6.15" | ||
| 15024 | |||
| 15025 | CVE_STATUS[CVE-2025-37822] = "fixed-version: Fixed from version 6.15" | ||
| 15026 | |||
| 15027 | CVE_STATUS[CVE-2025-37823] = "fixed-version: Fixed from version 6.15" | ||
| 15028 | |||
| 15029 | CVE_STATUS[CVE-2025-37824] = "fixed-version: Fixed from version 6.15" | ||
| 15030 | |||
| 15031 | CVE_STATUS[CVE-2025-37825] = "fixed-version: Fixed from version 6.15" | ||
| 15032 | |||
| 15033 | CVE_STATUS[CVE-2025-37826] = "fixed-version: Fixed from version 6.15" | ||
| 15034 | |||
| 15035 | CVE_STATUS[CVE-2025-37827] = "fixed-version: Fixed from version 6.15" | ||
| 15036 | |||
| 15037 | CVE_STATUS[CVE-2025-37828] = "fixed-version: Fixed from version 6.15" | ||
| 15038 | |||
| 15039 | CVE_STATUS[CVE-2025-37829] = "fixed-version: Fixed from version 6.15" | ||
| 15040 | |||
| 15041 | CVE_STATUS[CVE-2025-37830] = "fixed-version: Fixed from version 6.15" | ||
| 15042 | |||
| 15043 | CVE_STATUS[CVE-2025-37831] = "fixed-version: Fixed from version 6.15" | ||
| 15044 | |||
| 15045 | CVE_STATUS[CVE-2025-37833] = "fixed-version: Fixed from version 6.15" | ||
| 15046 | |||
| 15047 | CVE_STATUS[CVE-2025-37834] = "fixed-version: Fixed from version 6.15" | ||
| 15048 | |||
| 15049 | CVE_STATUS[CVE-2025-37836] = "fixed-version: Fixed from version 6.15" | ||
| 15050 | |||
| 15051 | CVE_STATUS[CVE-2025-37837] = "fixed-version: Fixed from version 6.15" | ||
| 15052 | |||
| 15053 | CVE_STATUS[CVE-2025-37838] = "fixed-version: Fixed from version 6.15" | ||
| 15054 | |||
| 15055 | CVE_STATUS[CVE-2025-37839] = "fixed-version: Fixed from version 6.15" | ||
| 15056 | |||
| 15057 | CVE_STATUS[CVE-2025-37840] = "fixed-version: Fixed from version 6.15" | ||
| 15058 | |||
| 15059 | CVE_STATUS[CVE-2025-37841] = "fixed-version: Fixed from version 6.15" | ||
| 15060 | |||
| 15061 | CVE_STATUS[CVE-2025-37842] = "fixed-version: Fixed from version 6.15" | ||
| 15062 | |||
| 15063 | CVE_STATUS[CVE-2025-37843] = "fixed-version: Fixed from version 6.15" | ||
| 15064 | |||
| 15065 | CVE_STATUS[CVE-2025-37844] = "fixed-version: Fixed from version 6.15" | ||
| 15066 | |||
| 15067 | CVE_STATUS[CVE-2025-37845] = "fixed-version: Fixed from version 6.15" | ||
| 15068 | |||
| 15069 | CVE_STATUS[CVE-2025-37846] = "fixed-version: Fixed from version 6.15" | ||
| 15070 | |||
| 15071 | CVE_STATUS[CVE-2025-37847] = "fixed-version: Fixed from version 6.15" | ||
| 15072 | |||
| 15073 | CVE_STATUS[CVE-2025-37848] = "fixed-version: Fixed from version 6.15" | ||
| 15074 | |||
| 15075 | CVE_STATUS[CVE-2025-37849] = "fixed-version: Fixed from version 6.15" | ||
| 15076 | |||
| 15077 | CVE_STATUS[CVE-2025-37850] = "fixed-version: Fixed from version 6.15" | ||
| 15078 | |||
| 15079 | CVE_STATUS[CVE-2025-37851] = "fixed-version: Fixed from version 6.15" | ||
| 15080 | |||
| 15081 | CVE_STATUS[CVE-2025-37852] = "fixed-version: Fixed from version 6.15" | ||
| 15082 | |||
| 15083 | CVE_STATUS[CVE-2025-37853] = "fixed-version: Fixed from version 6.15" | ||
| 15084 | |||
| 15085 | CVE_STATUS[CVE-2025-37854] = "fixed-version: Fixed from version 6.15" | ||
| 15086 | |||
| 15087 | CVE_STATUS[CVE-2025-37855] = "fixed-version: Fixed from version 6.15" | ||
| 15088 | |||
| 15089 | CVE_STATUS[CVE-2025-37856] = "fixed-version: Fixed from version 6.15" | ||
| 15090 | |||
| 15091 | CVE_STATUS[CVE-2025-37857] = "fixed-version: Fixed from version 6.15" | ||
| 15092 | |||
| 15093 | CVE_STATUS[CVE-2025-37858] = "fixed-version: Fixed from version 6.15" | ||
| 15094 | |||
| 15095 | CVE_STATUS[CVE-2025-37859] = "fixed-version: Fixed from version 6.15" | ||
| 15096 | |||
| 15097 | CVE_STATUS[CVE-2025-37860] = "fixed-version: Fixed from version 6.15" | ||
| 15098 | |||
| 15099 | CVE_STATUS[CVE-2025-37861] = "fixed-version: Fixed from version 6.15" | ||
| 15100 | |||
| 15101 | CVE_STATUS[CVE-2025-37862] = "fixed-version: Fixed from version 6.15" | ||
| 15102 | |||
| 15103 | CVE_STATUS[CVE-2025-37863] = "fixed-version: Fixed from version 6.15" | ||
| 15104 | |||
| 15105 | CVE_STATUS[CVE-2025-37864] = "fixed-version: Fixed from version 6.15" | ||
| 15106 | |||
| 15107 | CVE_STATUS[CVE-2025-37865] = "fixed-version: Fixed from version 6.15" | ||
| 15108 | |||
| 15109 | CVE_STATUS[CVE-2025-37866] = "fixed-version: Fixed from version 6.15" | ||
| 15110 | |||
| 15111 | CVE_STATUS[CVE-2025-37867] = "fixed-version: Fixed from version 6.15" | ||
| 15112 | |||
| 15113 | CVE_STATUS[CVE-2025-37868] = "fixed-version: Fixed from version 6.15" | ||
| 15114 | |||
| 15115 | CVE_STATUS[CVE-2025-37869] = "fixed-version: Fixed from version 6.15" | ||
| 15116 | |||
| 15117 | CVE_STATUS[CVE-2025-37870] = "fixed-version: Fixed from version 6.15" | ||
| 15118 | |||
| 15119 | CVE_STATUS[CVE-2025-37871] = "fixed-version: Fixed from version 6.14.4" | ||
| 15120 | |||
| 15121 | CVE_STATUS[CVE-2025-37872] = "fixed-version: Fixed from version 6.15" | ||
| 15122 | |||
| 15123 | CVE_STATUS[CVE-2025-37873] = "fixed-version: Fixed from version 6.15" | ||
| 15124 | |||
| 15125 | CVE_STATUS[CVE-2025-37874] = "fixed-version: Fixed from version 6.15" | ||
| 15126 | |||
| 15127 | CVE_STATUS[CVE-2025-37875] = "fixed-version: Fixed from version 6.15" | ||
| 15128 | |||
| 15129 | CVE_STATUS[CVE-2025-37876] = "fixed-version: Fixed from version 6.15" | ||
| 15130 | |||
| 15131 | CVE_STATUS[CVE-2025-37877] = "fixed-version: Fixed from version 6.15" | ||
| 15132 | |||
| 15133 | CVE_STATUS[CVE-2025-37878] = "fixed-version: Fixed from version 6.15" | ||
| 15134 | |||
| 15135 | CVE_STATUS[CVE-2025-37879] = "fixed-version: Fixed from version 6.15" | ||
| 15136 | |||
| 15137 | CVE_STATUS[CVE-2025-37880] = "fixed-version: Fixed from version 6.15" | ||
| 15138 | |||
| 15139 | CVE_STATUS[CVE-2025-37881] = "fixed-version: Fixed from version 6.15" | ||
| 15140 | |||
| 15141 | CVE_STATUS[CVE-2025-37882] = "fixed-version: Fixed from version 6.15" | ||
| 15142 | |||
| 15143 | CVE_STATUS[CVE-2025-37883] = "fixed-version: Fixed from version 6.15" | ||
| 15144 | |||
| 15145 | CVE_STATUS[CVE-2025-37884] = "fixed-version: Fixed from version 6.15" | ||
| 15146 | |||
| 15147 | CVE_STATUS[CVE-2025-37885] = "fixed-version: Fixed from version 6.15" | ||
| 15148 | |||
| 15149 | CVE_STATUS[CVE-2025-37886] = "fixed-version: Fixed from version 6.15" | ||
| 15150 | |||
| 15151 | CVE_STATUS[CVE-2025-37887] = "fixed-version: Fixed from version 6.15" | ||
| 15152 | |||
| 15153 | CVE_STATUS[CVE-2025-37888] = "fixed-version: Fixed from version 6.15" | ||
| 15154 | |||
| 15155 | CVE_STATUS[CVE-2025-37889] = "fixed-version: Fixed from version 6.14" | ||
| 15156 | |||
| 15157 | CVE_STATUS[CVE-2025-37890] = "fixed-version: Fixed from version 6.15" | ||
| 15158 | |||
| 15159 | CVE_STATUS[CVE-2025-37891] = "fixed-version: Fixed from version 6.15" | ||
| 15160 | |||
| 15161 | CVE_STATUS[CVE-2025-37892] = "fixed-version: Fixed from version 6.15" | ||
| 15162 | |||
| 15163 | CVE_STATUS[CVE-2025-37893] = "fixed-version: Fixed from version 6.15" | ||
| 15164 | |||
| 15165 | CVE_STATUS[CVE-2025-37894] = "fixed-version: Fixed from version 6.15" | ||
| 15166 | |||
| 15167 | CVE_STATUS[CVE-2025-37895] = "fixed-version: Fixed from version 6.15" | ||
| 15168 | |||
| 15169 | CVE_STATUS[CVE-2025-37896] = "fixed-version: Fixed from version 6.15" | ||
| 15170 | |||
| 15171 | CVE_STATUS[CVE-2025-37897] = "fixed-version: Fixed from version 6.15" | ||
| 15172 | |||
| 15173 | CVE_STATUS[CVE-2025-37898] = "fixed-version: Fixed from version 6.15" | ||
| 15174 | |||
| 15175 | CVE_STATUS[CVE-2025-37899] = "fixed-version: Fixed from version 6.15" | ||
| 15176 | |||
| 15177 | CVE_STATUS[CVE-2025-37900] = "fixed-version: Fixed from version 6.15" | ||
| 15178 | |||
| 15179 | CVE_STATUS[CVE-2025-37901] = "fixed-version: Fixed from version 6.15" | ||
| 15180 | |||
| 15181 | CVE_STATUS[CVE-2025-37903] = "fixed-version: Fixed from version 6.15" | ||
| 15182 | |||
| 15183 | CVE_STATUS[CVE-2025-37904] = "fixed-version: Fixed from version 6.15" | ||
| 15184 | |||
| 15185 | CVE_STATUS[CVE-2025-37905] = "fixed-version: Fixed from version 6.15" | ||
| 15186 | |||
| 15187 | CVE_STATUS[CVE-2025-37906] = "fixed-version: Fixed from version 6.15" | ||
| 15188 | |||
| 15189 | CVE_STATUS[CVE-2025-37907] = "fixed-version: Fixed from version 6.15" | ||
| 15190 | |||
| 15191 | CVE_STATUS[CVE-2025-37908] = "fixed-version: Fixed from version 6.15" | ||
| 15192 | |||
| 15193 | CVE_STATUS[CVE-2025-37909] = "fixed-version: Fixed from version 6.15" | ||
| 15194 | |||
| 15195 | CVE_STATUS[CVE-2025-37910] = "fixed-version: Fixed from version 6.15" | ||
| 15196 | |||
| 15197 | CVE_STATUS[CVE-2025-37911] = "fixed-version: Fixed from version 6.15" | ||
| 15198 | |||
| 15199 | CVE_STATUS[CVE-2025-37912] = "fixed-version: Fixed from version 6.15" | ||
| 15200 | |||
| 15201 | CVE_STATUS[CVE-2025-37913] = "fixed-version: Fixed from version 6.15" | ||
| 15202 | |||
| 15203 | CVE_STATUS[CVE-2025-37914] = "fixed-version: Fixed from version 6.15" | ||
| 15204 | |||
| 15205 | CVE_STATUS[CVE-2025-37915] = "fixed-version: Fixed from version 6.15" | ||
| 15206 | |||
| 15207 | CVE_STATUS[CVE-2025-37916] = "fixed-version: Fixed from version 6.15" | ||
| 15208 | |||
| 15209 | CVE_STATUS[CVE-2025-37917] = "fixed-version: Fixed from version 6.15" | ||
| 15210 | |||
| 15211 | CVE_STATUS[CVE-2025-37918] = "fixed-version: Fixed from version 6.15" | ||
| 15212 | |||
| 15213 | CVE_STATUS[CVE-2025-37919] = "fixed-version: Fixed from version 6.15" | ||
| 15214 | |||
| 15215 | CVE_STATUS[CVE-2025-37920] = "fixed-version: Fixed from version 6.15" | ||
| 15216 | |||
| 15217 | CVE_STATUS[CVE-2025-37921] = "fixed-version: Fixed from version 6.15" | ||
| 15218 | |||
| 15219 | CVE_STATUS[CVE-2025-37922] = "fixed-version: Fixed from version 6.15" | ||
| 15220 | |||
| 15221 | CVE_STATUS[CVE-2025-37923] = "fixed-version: Fixed from version 6.15" | ||
| 15222 | |||
| 15223 | CVE_STATUS[CVE-2025-37924] = "fixed-version: Fixed from version 6.15" | ||
| 15224 | |||
| 15225 | CVE_STATUS[CVE-2025-37925] = "fixed-version: Fixed from version 6.15" | ||
| 15226 | |||
| 15227 | CVE_STATUS[CVE-2025-37926] = "fixed-version: Fixed from version 6.15" | ||
| 15228 | |||
| 15229 | CVE_STATUS[CVE-2025-37927] = "fixed-version: Fixed from version 6.15" | ||
| 15230 | |||
| 15231 | CVE_STATUS[CVE-2025-37928] = "fixed-version: Fixed from version 6.15" | ||
| 15232 | |||
| 15233 | CVE_STATUS[CVE-2025-37929] = "fixed-version: Fixed from version 6.14.6" | ||
| 15234 | |||
| 15235 | CVE_STATUS[CVE-2025-37930] = "fixed-version: Fixed from version 6.15" | ||
| 15236 | |||
| 15237 | CVE_STATUS[CVE-2025-37931] = "fixed-version: Fixed from version 6.15" | ||
| 15238 | |||
| 15239 | CVE_STATUS[CVE-2025-37932] = "fixed-version: Fixed from version 6.15" | ||
| 15240 | |||
| 15241 | CVE_STATUS[CVE-2025-37933] = "fixed-version: Fixed from version 6.15" | ||
| 15242 | |||
| 15243 | CVE_STATUS[CVE-2025-37934] = "fixed-version: Fixed from version 6.15" | ||
| 15244 | |||
| 15245 | CVE_STATUS[CVE-2025-37935] = "fixed-version: Fixed from version 6.15" | ||
| 15246 | |||
| 15247 | CVE_STATUS[CVE-2025-37936] = "fixed-version: Fixed from version 6.15" | ||
| 15248 | |||
| 15249 | CVE_STATUS[CVE-2025-37937] = "fixed-version: Fixed from version 6.15" | ||
| 15250 | |||
| 15251 | CVE_STATUS[CVE-2025-37938] = "fixed-version: Fixed from version 6.15" | ||
| 15252 | |||
| 15253 | CVE_STATUS[CVE-2025-37939] = "fixed-version: Fixed from version 6.15" | ||
| 15254 | |||
| 15255 | CVE_STATUS[CVE-2025-37940] = "fixed-version: Fixed from version 6.15" | ||
| 15256 | |||
| 15257 | CVE_STATUS[CVE-2025-37941] = "fixed-version: Fixed from version 6.15" | ||
| 15258 | |||
| 15259 | CVE_STATUS[CVE-2025-37942] = "fixed-version: Fixed from version 6.15" | ||
| 15260 | |||
| 15261 | CVE_STATUS[CVE-2025-37943] = "fixed-version: Fixed from version 6.15" | ||
| 15262 | |||
| 15263 | CVE_STATUS[CVE-2025-37944] = "fixed-version: Fixed from version 6.15" | ||
| 15264 | |||
| 15265 | CVE_STATUS[CVE-2025-37945] = "fixed-version: Fixed from version 6.15" | ||
| 15266 | |||
| 15267 | CVE_STATUS[CVE-2025-37946] = "fixed-version: Fixed from version 6.15" | ||
| 15268 | |||
| 15269 | CVE_STATUS[CVE-2025-37947] = "fixed-version: Fixed from version 6.15" | ||
| 15270 | |||
| 15271 | CVE_STATUS[CVE-2025-37948] = "fixed-version: Fixed from version 6.15" | ||
| 15272 | |||
| 15273 | CVE_STATUS[CVE-2025-37949] = "fixed-version: Fixed from version 6.15" | ||
| 15274 | |||
| 15275 | CVE_STATUS[CVE-2025-37950] = "fixed-version: Fixed from version 6.15" | ||
| 15276 | |||
| 15277 | CVE_STATUS[CVE-2025-37951] = "fixed-version: Fixed from version 6.15" | ||
| 15278 | |||
| 15279 | CVE_STATUS[CVE-2025-37952] = "fixed-version: Fixed from version 6.15" | ||
| 15280 | |||
| 15281 | CVE_STATUS[CVE-2025-37953] = "fixed-version: Fixed from version 6.14.7" | ||
| 15282 | |||
| 15283 | CVE_STATUS[CVE-2025-37954] = "fixed-version: Fixed from version 6.15" | ||
| 15284 | |||
| 15285 | CVE_STATUS[CVE-2025-37955] = "fixed-version: Fixed from version 6.15" | ||
| 15286 | |||
| 15287 | CVE_STATUS[CVE-2025-37956] = "fixed-version: Fixed from version 6.15" | ||
| 15288 | |||
| 15289 | CVE_STATUS[CVE-2025-37957] = "fixed-version: Fixed from version 6.15" | ||
| 15290 | |||
| 15291 | CVE_STATUS[CVE-2025-37958] = "fixed-version: Fixed from version 6.15" | ||
| 15292 | |||
| 15293 | CVE_STATUS[CVE-2025-37959] = "fixed-version: Fixed from version 6.15" | ||
| 15294 | |||
| 15295 | CVE_STATUS[CVE-2025-37960] = "fixed-version: Fixed from version 6.15" | ||
| 15296 | |||
| 15297 | CVE_STATUS[CVE-2025-37961] = "fixed-version: Fixed from version 6.15" | ||
| 15298 | |||
| 15299 | CVE_STATUS[CVE-2025-37962] = "fixed-version: Fixed from version 6.14.7" | ||
| 15300 | |||
| 15301 | CVE_STATUS[CVE-2025-37963] = "fixed-version: Fixed from version 6.15" | ||
| 15302 | |||
| 15303 | CVE_STATUS[CVE-2025-37964] = "fixed-version: Fixed from version 6.15" | ||
| 15304 | |||
| 15305 | CVE_STATUS[CVE-2025-37965] = "fixed-version: Fixed from version 6.14.7" | ||
| 15306 | |||
| 15307 | CVE_STATUS[CVE-2025-37966] = "fixed-version: Fixed from version 6.15" | ||
| 15308 | |||
| 15309 | CVE_STATUS[CVE-2025-37967] = "fixed-version: Fixed from version 6.15" | ||
| 15310 | |||
| 15311 | CVE_STATUS[CVE-2025-37968] = "fixed-version: Fixed from version 6.15" | ||
| 15312 | |||
| 15313 | CVE_STATUS[CVE-2025-37969] = "fixed-version: Fixed from version 6.15" | ||
| 15314 | |||
| 15315 | CVE_STATUS[CVE-2025-37970] = "fixed-version: Fixed from version 6.15" | ||
| 15316 | |||
| 15317 | CVE_STATUS[CVE-2025-37971] = "fixed-version: Fixed from version 6.15" | ||
| 15318 | |||
| 15319 | CVE_STATUS[CVE-2025-37972] = "fixed-version: Fixed from version 6.15" | ||
| 15320 | |||
| 15321 | CVE_STATUS[CVE-2025-37973] = "fixed-version: Fixed from version 6.15" | ||
| 15322 | |||
| 15323 | CVE_STATUS[CVE-2025-37974] = "fixed-version: Fixed from version 6.15" | ||
| 15324 | |||
| 15325 | CVE_STATUS[CVE-2025-37975] = "fixed-version: Fixed from version 6.15" | ||
| 15326 | |||
| 15327 | CVE_STATUS[CVE-2025-37977] = "fixed-version: Fixed from version 6.15" | ||
| 15328 | |||
| 15329 | CVE_STATUS[CVE-2025-37978] = "fixed-version: Fixed from version 6.15" | ||
| 15330 | |||
| 15331 | CVE_STATUS[CVE-2025-37979] = "fixed-version: Fixed from version 6.15" | ||
| 15332 | |||
| 15333 | CVE_STATUS[CVE-2025-37980] = "fixed-version: Fixed from version 6.15" | ||
| 15334 | |||
| 15335 | CVE_STATUS[CVE-2025-37981] = "fixed-version: Fixed from version 6.15" | ||
| 15336 | |||
| 15337 | CVE_STATUS[CVE-2025-37982] = "fixed-version: Fixed from version 6.15" | ||
| 15338 | |||
| 15339 | CVE_STATUS[CVE-2025-37983] = "fixed-version: Fixed from version 6.15" | ||
| 15340 | |||
| 15341 | CVE_STATUS[CVE-2025-37984] = "fixed-version: Fixed from version 6.15" | ||
| 15342 | |||
| 15343 | CVE_STATUS[CVE-2025-37985] = "fixed-version: Fixed from version 6.15" | ||
| 15344 | |||
| 15345 | CVE_STATUS[CVE-2025-37986] = "fixed-version: Fixed from version 6.15" | ||
| 15346 | |||
| 15347 | CVE_STATUS[CVE-2025-37987] = "fixed-version: Fixed from version 6.15" | ||
| 15348 | |||
| 15349 | CVE_STATUS[CVE-2025-37988] = "fixed-version: Fixed from version 6.15" | ||
| 15350 | |||
| 15351 | CVE_STATUS[CVE-2025-37989] = "fixed-version: Fixed from version 6.15" | ||
| 15352 | |||
| 15353 | CVE_STATUS[CVE-2025-37990] = "fixed-version: Fixed from version 6.15" | ||
| 15354 | |||
| 15355 | CVE_STATUS[CVE-2025-37991] = "fixed-version: Fixed from version 6.15" | ||
| 15356 | |||
| 15357 | CVE_STATUS[CVE-2025-37992] = "fixed-version: Fixed from version 6.15" | ||
| 15358 | |||
| 15359 | CVE_STATUS[CVE-2025-37993] = "fixed-version: Fixed from version 6.15" | ||
| 15360 | |||
| 15361 | CVE_STATUS[CVE-2025-37994] = "fixed-version: Fixed from version 6.15" | ||
| 15362 | |||
| 15363 | CVE_STATUS[CVE-2025-37995] = "fixed-version: Fixed from version 6.15" | ||
| 15364 | |||
| 15365 | CVE_STATUS[CVE-2025-37996] = "fixed-version: Fixed from version 6.15" | ||
| 15366 | |||
| 15367 | CVE_STATUS[CVE-2025-37997] = "fixed-version: Fixed from version 6.15" | ||
| 15368 | |||
| 15369 | CVE_STATUS[CVE-2025-37998] = "fixed-version: Fixed from version 6.15" | ||
| 15370 | |||
| 15371 | CVE_STATUS[CVE-2025-37999] = "fixed-version: Fixed from version 6.15" | ||
| 15372 | |||
| 15373 | CVE_STATUS[CVE-2025-38000] = "fixed-version: Fixed from version 6.15" | ||
| 15374 | |||
| 15375 | CVE_STATUS[CVE-2025-38001] = "fixed-version: Fixed from version 6.16" | ||
| 15376 | |||
| 15377 | CVE_STATUS[CVE-2025-38002] = "fixed-version: Fixed from version 6.15" | ||
| 15378 | |||
| 15379 | CVE_STATUS[CVE-2025-38003] = "fixed-version: Fixed from version 6.15" | ||
| 15380 | |||
| 15381 | CVE_STATUS[CVE-2025-38004] = "fixed-version: Fixed from version 6.15" | ||
| 15382 | |||
| 15383 | CVE_STATUS[CVE-2025-38005] = "fixed-version: Fixed from version 6.15" | ||
| 15384 | |||
| 15385 | CVE_STATUS[CVE-2025-38006] = "fixed-version: Fixed from version 6.15" | ||
| 15386 | |||
| 15387 | CVE_STATUS[CVE-2025-38007] = "fixed-version: Fixed from version 6.15" | ||
| 15388 | |||
| 15389 | CVE_STATUS[CVE-2025-38008] = "fixed-version: Fixed from version 6.15" | ||
| 15390 | |||
| 15391 | CVE_STATUS[CVE-2025-38009] = "fixed-version: Fixed from version 6.15" | ||
| 15392 | |||
| 15393 | CVE_STATUS[CVE-2025-38010] = "fixed-version: Fixed from version 6.15" | ||
| 15394 | |||
| 15395 | CVE_STATUS[CVE-2025-38011] = "fixed-version: Fixed from version 6.15" | ||
| 15396 | |||
| 15397 | CVE_STATUS[CVE-2025-38012] = "fixed-version: Fixed from version 6.15" | ||
| 15398 | |||
| 15399 | CVE_STATUS[CVE-2025-38013] = "fixed-version: Fixed from version 6.15" | ||
| 15400 | |||
| 15401 | CVE_STATUS[CVE-2025-38014] = "fixed-version: Fixed from version 6.15" | ||
| 15402 | |||
| 15403 | CVE_STATUS[CVE-2025-38015] = "fixed-version: Fixed from version 6.15" | ||
| 15404 | |||
| 15405 | CVE_STATUS[CVE-2025-38016] = "fixed-version: Fixed from version 6.15" | ||
| 15406 | |||
| 15407 | CVE_STATUS[CVE-2025-38017] = "fixed-version: Fixed from version 6.14.8" | ||
| 15408 | |||
| 15409 | CVE_STATUS[CVE-2025-38018] = "fixed-version: Fixed from version 6.15" | ||
| 15410 | |||
| 15411 | CVE_STATUS[CVE-2025-38019] = "fixed-version: Fixed from version 6.15" | ||
| 15412 | |||
| 15413 | CVE_STATUS[CVE-2025-38020] = "fixed-version: Fixed from version 6.15" | ||
| 15414 | |||
| 15415 | CVE_STATUS[CVE-2025-38021] = "fixed-version: Fixed from version 6.15" | ||
| 15416 | |||
| 15417 | CVE_STATUS[CVE-2025-38022] = "fixed-version: Fixed from version 6.15" | ||
| 15418 | |||
| 15419 | CVE_STATUS[CVE-2025-38023] = "fixed-version: Fixed from version 6.15" | ||
| 15420 | |||
| 15421 | CVE_STATUS[CVE-2025-38024] = "fixed-version: Fixed from version 6.15" | ||
| 15422 | |||
| 15423 | CVE_STATUS[CVE-2025-38025] = "fixed-version: Fixed from version 6.15" | ||
| 15424 | |||
| 15425 | CVE_STATUS[CVE-2025-38027] = "fixed-version: Fixed from version 6.15" | ||
| 15426 | |||
| 15427 | CVE_STATUS[CVE-2025-38028] = "fixed-version: Fixed from version 6.15" | ||
| 15428 | |||
| 15429 | CVE_STATUS[CVE-2025-38029] = "fixed-version: Fixed from version 6.15" | ||
| 15430 | |||
| 15431 | CVE_STATUS[CVE-2025-38031] = "fixed-version: Fixed from version 6.15" | ||
| 15432 | |||
| 15433 | CVE_STATUS[CVE-2025-38032] = "fixed-version: Fixed from version 6.15" | ||
| 15434 | |||
| 15435 | CVE_STATUS[CVE-2025-38033] = "fixed-version: Fixed from version 6.15" | ||
| 15436 | |||
| 15437 | CVE_STATUS[CVE-2025-38034] = "fixed-version: Fixed from version 6.15" | ||
| 15438 | |||
| 15439 | CVE_STATUS[CVE-2025-38035] = "fixed-version: Fixed from version 6.15" | ||
| 15440 | |||
| 15441 | CVE_STATUS[CVE-2025-38036] = "fixed-version: Fixed from version 6.15" | ||
| 15442 | |||
| 15443 | CVE_STATUS[CVE-2025-38037] = "fixed-version: Fixed from version 6.15" | ||
| 15444 | |||
| 15445 | CVE_STATUS[CVE-2025-38038] = "fixed-version: Fixed from version 6.15" | ||
| 15446 | |||
| 15447 | CVE_STATUS[CVE-2025-38039] = "fixed-version: Fixed from version 6.15" | ||
| 15448 | |||
| 15449 | CVE_STATUS[CVE-2025-38040] = "fixed-version: Fixed from version 6.15" | ||
| 15450 | |||
| 15451 | CVE_STATUS[CVE-2025-38041] = "fixed-version: Fixed from version 6.15" | ||
| 15452 | |||
| 15453 | CVE_STATUS[CVE-2025-38042] = "fixed-version: Fixed from version 6.15" | ||
| 15454 | |||
| 15455 | CVE_STATUS[CVE-2025-38043] = "fixed-version: Fixed from version 6.15" | ||
| 15456 | |||
| 15457 | CVE_STATUS[CVE-2025-38044] = "fixed-version: Fixed from version 6.15" | ||
| 15458 | |||
| 15459 | CVE_STATUS[CVE-2025-38045] = "fixed-version: Fixed from version 6.15" | ||
| 15460 | |||
| 15461 | CVE_STATUS[CVE-2025-38047] = "fixed-version: Fixed from version 6.15" | ||
| 15462 | |||
| 15463 | CVE_STATUS[CVE-2025-38048] = "fixed-version: Fixed from version 6.15" | ||
| 15464 | |||
| 15465 | CVE_STATUS[CVE-2025-38049] = "fixed-version: Fixed from version 6.15" | ||
| 15466 | |||
| 15467 | CVE_STATUS[CVE-2025-38050] = "fixed-version: Fixed from version 6.15" | ||
| 15468 | |||
| 15469 | CVE_STATUS[CVE-2025-38051] = "fixed-version: Fixed from version 6.15" | ||
| 15470 | |||
| 15471 | CVE_STATUS[CVE-2025-38052] = "fixed-version: Fixed from version 6.15" | ||
| 15472 | |||
| 15473 | CVE_STATUS[CVE-2025-38053] = "fixed-version: Fixed from version 6.15" | ||
| 15474 | |||
| 15475 | CVE_STATUS[CVE-2025-38054] = "fixed-version: Fixed from version 6.15" | ||
| 15476 | |||
| 15477 | CVE_STATUS[CVE-2025-38055] = "fixed-version: Fixed from version 6.15" | ||
| 15478 | |||
| 15479 | CVE_STATUS[CVE-2025-38056] = "fixed-version: Fixed from version 6.15" | ||
| 15480 | |||
| 15481 | CVE_STATUS[CVE-2025-38057] = "fixed-version: Fixed from version 6.15" | ||
| 15482 | |||
| 15483 | CVE_STATUS[CVE-2025-38058] = "fixed-version: Fixed from version 6.15" | ||
| 15484 | |||
| 15485 | CVE_STATUS[CVE-2025-38059] = "fixed-version: Fixed from version 6.15" | ||
| 15486 | |||
| 15487 | CVE_STATUS[CVE-2025-38060] = "fixed-version: Fixed from version 6.15" | ||
| 15488 | |||
| 15489 | CVE_STATUS[CVE-2025-38061] = "fixed-version: Fixed from version 6.15" | ||
| 15490 | |||
| 15491 | CVE_STATUS[CVE-2025-38062] = "fixed-version: Fixed from version 6.15" | ||
| 15492 | |||
| 15493 | CVE_STATUS[CVE-2025-38063] = "fixed-version: Fixed from version 6.15" | ||
| 15494 | |||
| 15495 | CVE_STATUS[CVE-2025-38064] = "fixed-version: Fixed from version 6.15" | ||
| 15496 | |||
| 15497 | CVE_STATUS[CVE-2025-38065] = "fixed-version: Fixed from version 6.15" | ||
| 15498 | |||
| 15499 | CVE_STATUS[CVE-2025-38066] = "fixed-version: Fixed from version 6.15" | ||
| 15500 | |||
| 15501 | CVE_STATUS[CVE-2025-38067] = "fixed-version: Fixed from version 6.15" | ||
| 15502 | |||
| 15503 | CVE_STATUS[CVE-2025-38068] = "fixed-version: Fixed from version 6.15" | ||
| 15504 | |||
| 15505 | CVE_STATUS[CVE-2025-38069] = "fixed-version: Fixed from version 6.15" | ||
| 15506 | |||
| 15507 | CVE_STATUS[CVE-2025-38070] = "fixed-version: Fixed from version 6.15" | ||
| 15508 | |||
| 15509 | CVE_STATUS[CVE-2025-38071] = "fixed-version: Fixed from version 6.15" | ||
| 15510 | |||
| 15511 | CVE_STATUS[CVE-2025-38072] = "fixed-version: Fixed from version 6.15" | ||
| 15512 | |||
| 15513 | CVE_STATUS[CVE-2025-38073] = "fixed-version: Fixed from version 6.15" | ||
| 15514 | |||
| 15515 | CVE_STATUS[CVE-2025-38074] = "fixed-version: Fixed from version 6.15" | ||
| 15516 | |||
| 15517 | CVE_STATUS[CVE-2025-38075] = "fixed-version: Fixed from version 6.15" | ||
| 15518 | |||
| 15519 | CVE_STATUS[CVE-2025-38076] = "fixed-version: Fixed from version 6.15" | ||
| 15520 | |||
| 15521 | CVE_STATUS[CVE-2025-38077] = "fixed-version: Fixed from version 6.15" | ||
| 15522 | |||
| 15523 | CVE_STATUS[CVE-2025-38078] = "fixed-version: Fixed from version 6.15" | ||
| 15524 | |||
| 15525 | CVE_STATUS[CVE-2025-38079] = "fixed-version: Fixed from version 6.15" | ||
| 15526 | |||
| 15527 | CVE_STATUS[CVE-2025-38080] = "fixed-version: Fixed from version 6.15" | ||
| 15528 | |||
| 15529 | CVE_STATUS[CVE-2025-38081] = "fixed-version: Fixed from version 6.15" | ||
| 15530 | |||
| 15531 | CVE_STATUS[CVE-2025-38082] = "fixed-version: Fixed from version 6.15" | ||
| 15532 | |||
| 15533 | CVE_STATUS[CVE-2025-38083] = "fixed-version: Fixed from version 6.16" | ||
| 15534 | |||
| 15535 | CVE_STATUS[CVE-2025-38084] = "fixed-version: Fixed from version 6.16" | ||
| 15536 | |||
| 15537 | CVE_STATUS[CVE-2025-38085] = "fixed-version: Fixed from version 6.16" | ||
| 15538 | |||
| 15539 | CVE_STATUS[CVE-2025-38086] = "fixed-version: Fixed from version 6.16" | ||
| 15540 | |||
| 15541 | CVE_STATUS[CVE-2025-38087] = "fixed-version: Fixed from version 6.16" | ||
| 15542 | |||
| 15543 | CVE_STATUS[CVE-2025-38088] = "fixed-version: Fixed from version 6.16" | ||
| 15544 | |||
| 15545 | CVE_STATUS[CVE-2025-38089] = "fixed-version: Fixed from version 6.16" | ||
| 15546 | |||
| 15547 | CVE_STATUS[CVE-2025-38090] = "fixed-version: Fixed from version 6.16" | ||
| 15548 | |||
| 15549 | CVE_STATUS[CVE-2025-38091] = "fixed-version: Fixed from version 6.15" | ||
| 15550 | |||
| 15551 | CVE_STATUS[CVE-2025-38092] = "fixed-version: Fixed from version 6.14.10" | ||
| 15552 | |||
| 15553 | CVE_STATUS[CVE-2025-38093] = "fixed-version: Fixed from version 6.16" | ||
| 15554 | |||
| 15555 | CVE_STATUS[CVE-2025-38094] = "fixed-version: Fixed from version 6.15" | ||
| 15556 | |||
| 15557 | CVE_STATUS[CVE-2025-38095] = "fixed-version: Fixed from version 6.15" | ||
| 15558 | |||
| 15559 | CVE_STATUS[CVE-2025-38096] = "fixed-version: Fixed from version 6.15" | ||
| 15560 | |||
| 15561 | CVE_STATUS[CVE-2025-38097] = "fixed-version: Fixed from version 6.15" | ||
| 15562 | |||
| 15563 | CVE_STATUS[CVE-2025-38098] = "fixed-version: Fixed from version 6.15" | ||
| 15564 | |||
| 15565 | CVE_STATUS[CVE-2025-38099] = "fixed-version: Fixed from version 6.15" | ||
| 15566 | |||
| 15567 | CVE_STATUS[CVE-2025-38100] = "fixed-version: Fixed from version 6.16" | ||
| 15568 | |||
| 15569 | CVE_STATUS[CVE-2025-38101] = "fixed-version: Fixed from version 6.16" | ||
| 15570 | |||
| 15571 | CVE_STATUS[CVE-2025-38102] = "fixed-version: Fixed from version 6.16" | ||
| 15572 | |||
| 15573 | CVE_STATUS[CVE-2025-38103] = "fixed-version: Fixed from version 6.16" | ||
| 15574 | |||
| 15575 | CVE_STATUS[CVE-2025-38104] = "fixed-version: Fixed from version 6.15" | ||
| 15576 | |||
| 15577 | CVE_STATUS[CVE-2025-38105] = "fixed-version: Fixed from version 6.16" | ||
| 15578 | |||
| 15579 | CVE_STATUS[CVE-2025-38106] = "fixed-version: Fixed from version 6.16" | ||
| 15580 | |||
| 15581 | CVE_STATUS[CVE-2025-38107] = "fixed-version: Fixed from version 6.16" | ||
| 15582 | |||
| 15583 | CVE_STATUS[CVE-2025-38108] = "fixed-version: Fixed from version 6.16" | ||
| 15584 | |||
| 15585 | CVE_STATUS[CVE-2025-38109] = "fixed-version: Fixed from version 6.16" | ||
| 15586 | |||
| 15587 | CVE_STATUS[CVE-2025-38110] = "fixed-version: Fixed from version 6.16" | ||
| 15588 | |||
| 15589 | CVE_STATUS[CVE-2025-38111] = "fixed-version: Fixed from version 6.16" | ||
| 15590 | |||
| 15591 | CVE_STATUS[CVE-2025-38112] = "fixed-version: Fixed from version 6.16" | ||
| 15592 | |||
| 15593 | CVE_STATUS[CVE-2025-38113] = "fixed-version: Fixed from version 6.16" | ||
| 15594 | |||
| 15595 | CVE_STATUS[CVE-2025-38114] = "fixed-version: Fixed from version 6.16" | ||
| 15596 | |||
| 15597 | CVE_STATUS[CVE-2025-38115] = "fixed-version: Fixed from version 6.16" | ||
| 15598 | |||
| 15599 | CVE_STATUS[CVE-2025-38116] = "fixed-version: Fixed from version 6.16" | ||
| 15600 | |||
| 15601 | CVE_STATUS[CVE-2025-38117] = "fixed-version: Fixed from version 6.16" | ||
| 15602 | |||
| 15603 | CVE_STATUS[CVE-2025-38118] = "fixed-version: Fixed from version 6.16" | ||
| 15604 | |||
| 15605 | CVE_STATUS[CVE-2025-38119] = "fixed-version: Fixed from version 6.16" | ||
| 15606 | |||
| 15607 | CVE_STATUS[CVE-2025-38120] = "fixed-version: Fixed from version 6.16" | ||
| 15608 | |||
| 15609 | CVE_STATUS[CVE-2025-38121] = "fixed-version: Fixed from version 6.16" | ||
| 15610 | |||
| 15611 | CVE_STATUS[CVE-2025-38122] = "fixed-version: Fixed from version 6.16" | ||
| 15612 | |||
| 15613 | CVE_STATUS[CVE-2025-38123] = "fixed-version: Fixed from version 6.16" | ||
| 15614 | |||
| 15615 | CVE_STATUS[CVE-2025-38124] = "fixed-version: Fixed from version 6.16" | ||
| 15616 | |||
| 15617 | CVE_STATUS[CVE-2025-38125] = "fixed-version: Fixed from version 6.16" | ||
| 15618 | |||
| 15619 | CVE_STATUS[CVE-2025-38126] = "fixed-version: Fixed from version 6.16" | ||
| 15620 | |||
| 15621 | CVE_STATUS[CVE-2025-38127] = "fixed-version: Fixed from version 6.16" | ||
| 15622 | |||
| 15623 | CVE_STATUS[CVE-2025-38128] = "fixed-version: Fixed from version 6.16" | ||
| 15624 | |||
| 15625 | CVE_STATUS[CVE-2025-38129] = "fixed-version: Fixed from version 6.16" | ||
| 15626 | |||
| 15627 | CVE_STATUS[CVE-2025-38130] = "fixed-version: Fixed from version 6.16" | ||
| 15628 | |||
| 15629 | CVE_STATUS[CVE-2025-38131] = "fixed-version: Fixed from version 6.16" | ||
| 15630 | |||
| 15631 | CVE_STATUS[CVE-2025-38132] = "fixed-version: Fixed from version 6.16" | ||
| 15632 | |||
| 15633 | CVE_STATUS[CVE-2025-38133] = "fixed-version: Fixed from version 6.16" | ||
| 15634 | |||
| 15635 | CVE_STATUS[CVE-2025-38134] = "fixed-version: Fixed from version 6.16" | ||
| 15636 | |||
| 15637 | CVE_STATUS[CVE-2025-38135] = "fixed-version: Fixed from version 6.16" | ||
| 15638 | |||
| 15639 | CVE_STATUS[CVE-2025-38136] = "fixed-version: Fixed from version 6.16" | ||
| 15640 | |||
| 15641 | CVE_STATUS[CVE-2025-38137] = "fixed-version: Fixed from version 6.16" | ||
| 15642 | |||
| 15643 | CVE_STATUS[CVE-2025-38138] = "fixed-version: Fixed from version 6.16" | ||
| 15644 | |||
| 15645 | CVE_STATUS[CVE-2025-38139] = "fixed-version: Fixed from version 6.16" | ||
| 15646 | |||
| 15647 | CVE_STATUS[CVE-2025-38140] = "fixed-version: Fixed from version 6.16" | ||
| 15648 | |||
| 15649 | CVE_STATUS[CVE-2025-38141] = "fixed-version: Fixed from version 6.16" | ||
| 15650 | |||
| 15651 | CVE_STATUS[CVE-2025-38142] = "fixed-version: Fixed from version 6.16" | ||
| 15652 | |||
| 15653 | CVE_STATUS[CVE-2025-38143] = "fixed-version: Fixed from version 6.16" | ||
| 15654 | |||
| 15655 | CVE_STATUS[CVE-2025-38144] = "fixed-version: Fixed from version 6.16" | ||
| 15656 | |||
| 15657 | CVE_STATUS[CVE-2025-38145] = "fixed-version: Fixed from version 6.16" | ||
| 15658 | |||
| 15659 | CVE_STATUS[CVE-2025-38146] = "fixed-version: Fixed from version 6.16" | ||
| 15660 | |||
| 15661 | CVE_STATUS[CVE-2025-38147] = "fixed-version: Fixed from version 6.16" | ||
| 15662 | |||
| 15663 | CVE_STATUS[CVE-2025-38148] = "fixed-version: Fixed from version 6.16" | ||
| 15664 | |||
| 15665 | CVE_STATUS[CVE-2025-38149] = "fixed-version: Fixed from version 6.16" | ||
| 15666 | |||
| 15667 | CVE_STATUS[CVE-2025-38150] = "fixed-version: Fixed from version 6.16" | ||
| 15668 | |||
| 15669 | CVE_STATUS[CVE-2025-38151] = "fixed-version: Fixed from version 6.16" | ||
| 15670 | |||
| 15671 | CVE_STATUS[CVE-2025-38152] = "fixed-version: Fixed from version 6.15" | ||
| 15672 | |||
| 15673 | CVE_STATUS[CVE-2025-38153] = "fixed-version: Fixed from version 6.16" | ||
| 15674 | |||
| 15675 | CVE_STATUS[CVE-2025-38154] = "fixed-version: Fixed from version 6.16" | ||
| 15676 | |||
| 15677 | CVE_STATUS[CVE-2025-38155] = "fixed-version: Fixed from version 6.16" | ||
| 15678 | |||
| 15679 | CVE_STATUS[CVE-2025-38156] = "fixed-version: Fixed from version 6.16" | ||
| 15680 | |||
| 15681 | CVE_STATUS[CVE-2025-38157] = "fixed-version: Fixed from version 6.16" | ||
| 15682 | |||
| 15683 | CVE_STATUS[CVE-2025-38158] = "fixed-version: Fixed from version 6.16" | ||
| 15684 | |||
| 15685 | CVE_STATUS[CVE-2025-38159] = "fixed-version: Fixed from version 6.16" | ||
| 15686 | |||
| 15687 | CVE_STATUS[CVE-2025-38160] = "fixed-version: Fixed from version 6.16" | ||
| 15688 | |||
| 15689 | CVE_STATUS[CVE-2025-38161] = "fixed-version: Fixed from version 6.16" | ||
| 15690 | |||
| 15691 | CVE_STATUS[CVE-2025-38162] = "fixed-version: Fixed from version 6.16" | ||
| 15692 | |||
| 15693 | CVE_STATUS[CVE-2025-38163] = "fixed-version: Fixed from version 6.16" | ||
| 15694 | |||
| 15695 | CVE_STATUS[CVE-2025-38164] = "fixed-version: Fixed from version 6.16" | ||
| 15696 | |||
| 15697 | CVE_STATUS[CVE-2025-38165] = "fixed-version: Fixed from version 6.16" | ||
| 15698 | |||
| 15699 | CVE_STATUS[CVE-2025-38166] = "fixed-version: Fixed from version 6.16" | ||
| 15700 | |||
| 15701 | CVE_STATUS[CVE-2025-38167] = "fixed-version: Fixed from version 6.16" | ||
| 15702 | |||
| 15703 | CVE_STATUS[CVE-2025-38168] = "fixed-version: Fixed from version 6.16" | ||
| 15704 | |||
| 15705 | CVE_STATUS[CVE-2025-38169] = "fixed-version: Fixed from version 6.16" | ||
| 15706 | |||
| 15707 | CVE_STATUS[CVE-2025-38170] = "fixed-version: Fixed from version 6.16" | ||
| 15708 | |||
| 15709 | CVE_STATUS[CVE-2025-38171] = "fixed-version: Fixed from version 6.16" | ||
| 15710 | |||
| 15711 | CVE_STATUS[CVE-2025-38172] = "fixed-version: Fixed from version 6.16" | ||
| 15712 | |||
| 15713 | CVE_STATUS[CVE-2025-38173] = "fixed-version: Fixed from version 6.16" | ||
| 15714 | |||
| 15715 | CVE_STATUS[CVE-2025-38174] = "fixed-version: Fixed from version 6.16" | ||
| 15716 | |||
| 15717 | CVE_STATUS[CVE-2025-38175] = "fixed-version: Fixed from version 6.16" | ||
| 15718 | |||
| 15719 | CVE_STATUS[CVE-2025-38176] = "fixed-version: Fixed from version 6.16" | ||
| 15720 | |||
| 15721 | CVE_STATUS[CVE-2025-38177] = "fixed-version: Fixed from version 6.15" | ||
| 15722 | |||
| 15723 | CVE_STATUS[CVE-2025-38179] = "fixed-version: Fixed from version 6.16" | ||
| 15724 | |||
| 15725 | CVE_STATUS[CVE-2025-38180] = "fixed-version: Fixed from version 6.16" | ||
| 15726 | |||
| 15727 | CVE_STATUS[CVE-2025-38181] = "fixed-version: Fixed from version 6.16" | ||
| 15728 | |||
| 15729 | CVE_STATUS[CVE-2025-38182] = "fixed-version: Fixed from version 6.16" | ||
| 15730 | |||
| 15731 | CVE_STATUS[CVE-2025-38183] = "fixed-version: Fixed from version 6.16" | ||
| 15732 | |||
| 15733 | CVE_STATUS[CVE-2025-38184] = "fixed-version: Fixed from version 6.16" | ||
| 15734 | |||
| 15735 | CVE_STATUS[CVE-2025-38185] = "fixed-version: Fixed from version 6.16" | ||
| 15736 | |||
| 15737 | CVE_STATUS[CVE-2025-38186] = "fixed-version: Fixed from version 6.16" | ||
| 15738 | |||
| 15739 | CVE_STATUS[CVE-2025-38187] = "fixed-version: Fixed from version 6.16" | ||
| 15740 | |||
| 15741 | CVE_STATUS[CVE-2025-38188] = "fixed-version: Fixed from version 6.16" | ||
| 15742 | |||
| 15743 | CVE_STATUS[CVE-2025-38189] = "fixed-version: Fixed from version 6.16" | ||
| 15744 | |||
| 15745 | CVE_STATUS[CVE-2025-38190] = "fixed-version: Fixed from version 6.16" | ||
| 15746 | |||
| 15747 | CVE_STATUS[CVE-2025-38191] = "fixed-version: Fixed from version 6.16" | ||
| 15748 | |||
| 15749 | CVE_STATUS[CVE-2025-38192] = "fixed-version: Fixed from version 6.16" | ||
| 15750 | |||
| 15751 | CVE_STATUS[CVE-2025-38193] = "fixed-version: Fixed from version 6.16" | ||
| 15752 | |||
| 15753 | CVE_STATUS[CVE-2025-38194] = "fixed-version: Fixed from version 6.16" | ||
| 15754 | |||
| 15755 | CVE_STATUS[CVE-2025-38195] = "fixed-version: Fixed from version 6.16" | ||
| 15756 | |||
| 15757 | CVE_STATUS[CVE-2025-38196] = "fixed-version: Fixed from version 6.16" | ||
| 15758 | |||
| 15759 | CVE_STATUS[CVE-2025-38197] = "fixed-version: Fixed from version 6.16" | ||
| 15760 | |||
| 15761 | CVE_STATUS[CVE-2025-38198] = "fixed-version: Fixed from version 6.16" | ||
| 15762 | |||
| 15763 | CVE_STATUS[CVE-2025-38199] = "fixed-version: Fixed from version 6.16" | ||
| 15764 | |||
| 15765 | CVE_STATUS[CVE-2025-38200] = "fixed-version: Fixed from version 6.16" | ||
| 15766 | |||
| 15767 | CVE_STATUS[CVE-2025-38201] = "fixed-version: Fixed from version 6.16" | ||
| 15768 | |||
| 15769 | CVE_STATUS[CVE-2025-38202] = "fixed-version: Fixed from version 6.16" | ||
| 15770 | |||
| 15771 | CVE_STATUS[CVE-2025-38203] = "fixed-version: Fixed from version 6.16" | ||
| 15772 | |||
| 15773 | CVE_STATUS[CVE-2025-38204] = "fixed-version: Fixed from version 6.16" | ||
| 15774 | |||
| 15775 | CVE_STATUS[CVE-2025-38205] = "fixed-version: Fixed from version 6.16" | ||
| 15776 | |||
| 15777 | CVE_STATUS[CVE-2025-38206] = "fixed-version: Fixed from version 6.16" | ||
| 15778 | |||
| 15779 | CVE_STATUS[CVE-2025-38207] = "fixed-version: Fixed from version 6.16" | ||
| 15780 | |||
| 15781 | CVE_STATUS[CVE-2025-38208] = "fixed-version: Fixed from version 6.16" | ||
| 15782 | |||
| 15783 | CVE_STATUS[CVE-2025-38209] = "fixed-version: Fixed from version 6.16" | ||
| 15784 | |||
| 15785 | CVE_STATUS[CVE-2025-38210] = "fixed-version: Fixed from version 6.16" | ||
| 15786 | |||
| 15787 | CVE_STATUS[CVE-2025-38211] = "fixed-version: Fixed from version 6.16" | ||
| 15788 | |||
| 15789 | CVE_STATUS[CVE-2025-38212] = "fixed-version: Fixed from version 6.16" | ||
| 15790 | |||
| 15791 | CVE_STATUS[CVE-2025-38214] = "fixed-version: Fixed from version 6.16" | ||
| 15792 | |||
| 15793 | CVE_STATUS[CVE-2025-38215] = "fixed-version: Fixed from version 6.16" | ||
| 15794 | |||
| 15795 | CVE_STATUS[CVE-2025-38216] = "fixed-version: Fixed from version 6.16" | ||
| 15796 | |||
| 15797 | CVE_STATUS[CVE-2025-38217] = "fixed-version: Fixed from version 6.16" | ||
| 15798 | |||
| 15799 | CVE_STATUS[CVE-2025-38218] = "fixed-version: Fixed from version 6.16" | ||
| 15800 | |||
| 15801 | CVE_STATUS[CVE-2025-38219] = "fixed-version: Fixed from version 6.16" | ||
| 15802 | |||
| 15803 | CVE_STATUS[CVE-2025-38220] = "fixed-version: Fixed from version 6.16" | ||
| 15804 | |||
| 15805 | CVE_STATUS[CVE-2025-38221] = "fixed-version: Fixed from version 6.16" | ||
| 15806 | |||
| 15807 | CVE_STATUS[CVE-2025-38222] = "fixed-version: Fixed from version 6.16" | ||
| 15808 | |||
| 15809 | CVE_STATUS[CVE-2025-38223] = "fixed-version: Fixed from version 6.16" | ||
| 15810 | |||
| 15811 | CVE_STATUS[CVE-2025-38224] = "fixed-version: Fixed from version 6.16" | ||
| 15812 | |||
| 15813 | CVE_STATUS[CVE-2025-38225] = "fixed-version: Fixed from version 6.16" | ||
| 15814 | |||
| 15815 | CVE_STATUS[CVE-2025-38226] = "fixed-version: Fixed from version 6.16" | ||
| 15816 | |||
| 15817 | CVE_STATUS[CVE-2025-38227] = "fixed-version: Fixed from version 6.16" | ||
| 15818 | |||
| 15819 | CVE_STATUS[CVE-2025-38228] = "fixed-version: Fixed from version 6.16" | ||
| 15820 | |||
| 15821 | CVE_STATUS[CVE-2025-38229] = "fixed-version: Fixed from version 6.16" | ||
| 15822 | |||
| 15823 | CVE_STATUS[CVE-2025-38230] = "fixed-version: Fixed from version 6.16" | ||
| 15824 | |||
| 15825 | CVE_STATUS[CVE-2025-38231] = "fixed-version: Fixed from version 6.16" | ||
| 15826 | |||
| 15827 | CVE_STATUS[CVE-2025-38232] = "fixed-version: Fixed from version 6.16" | ||
| 15828 | |||
| 15829 | CVE_STATUS[CVE-2025-38233] = "fixed-version: Fixed from version 6.16" | ||
| 15830 | |||
| 15831 | CVE_STATUS[CVE-2025-38234] = "fixed-version: Fixed from version 6.16" | ||
| 15832 | |||
| 15833 | CVE_STATUS[CVE-2025-38235] = "fixed-version: Fixed from version 6.16" | ||
| 15834 | |||
| 15835 | CVE_STATUS[CVE-2025-38236] = "fixed-version: Fixed from version 6.16" | ||
| 15836 | |||
| 15837 | CVE_STATUS[CVE-2025-38237] = "fixed-version: Fixed from version 6.16" | ||
| 15838 | |||
| 15839 | CVE_STATUS[CVE-2025-38238] = "fixed-version: Fixed from version 6.16" | ||
| 15840 | |||
| 15841 | CVE_STATUS[CVE-2025-38239] = "fixed-version: Fixed from version 6.16" | ||
| 15842 | |||
| 15843 | CVE_STATUS[CVE-2025-38240] = "fixed-version: Fixed from version 6.15" | ||
| 15844 | |||
| 15845 | CVE_STATUS[CVE-2025-38241] = "fixed-version: Fixed from version 6.16" | ||
| 15846 | |||
| 15847 | CVE_STATUS[CVE-2025-38242] = "fixed-version: Fixed from version 6.16" | ||
| 15848 | |||
| 15849 | CVE_STATUS[CVE-2025-38243] = "fixed-version: Fixed from version 6.16" | ||
| 15850 | |||
| 15851 | CVE_STATUS[CVE-2025-38244] = "fixed-version: Fixed from version 6.16" | ||
| 15852 | |||
| 15853 | CVE_STATUS[CVE-2025-38245] = "fixed-version: Fixed from version 6.16" | ||
| 15854 | |||
| 15855 | CVE_STATUS[CVE-2025-38246] = "fixed-version: Fixed from version 6.16" | ||
| 15856 | |||
| 15857 | CVE_STATUS[CVE-2025-38247] = "fixed-version: Fixed from version 6.16" | ||
| 15858 | |||
| 15859 | CVE_STATUS[CVE-2025-38248] = "fixed-version: Fixed from version 6.16" | ||
| 15860 | |||
| 15861 | CVE_STATUS[CVE-2025-38249] = "fixed-version: Fixed from version 6.16" | ||
| 15862 | |||
| 15863 | CVE_STATUS[CVE-2025-38250] = "fixed-version: Fixed from version 6.16" | ||
| 15864 | |||
| 15865 | CVE_STATUS[CVE-2025-38251] = "fixed-version: Fixed from version 6.16" | ||
| 15866 | |||
| 15867 | CVE_STATUS[CVE-2025-38252] = "fixed-version: Fixed from version 6.16" | ||
| 15868 | |||
| 15869 | CVE_STATUS[CVE-2025-38253] = "fixed-version: Fixed from version 6.16" | ||
| 15870 | |||
| 15871 | CVE_STATUS[CVE-2025-38254] = "fixed-version: Fixed from version 6.16" | ||
| 15872 | |||
| 15873 | CVE_STATUS[CVE-2025-38255] = "fixed-version: Fixed from version 6.16" | ||
| 15874 | |||
| 15875 | CVE_STATUS[CVE-2025-38256] = "fixed-version: Fixed from version 6.16" | ||
| 15876 | |||
| 15877 | CVE_STATUS[CVE-2025-38257] = "fixed-version: Fixed from version 6.16" | ||
| 15878 | |||
| 15879 | CVE_STATUS[CVE-2025-38258] = "fixed-version: Fixed from version 6.16" | ||
| 15880 | |||
| 15881 | CVE_STATUS[CVE-2025-38259] = "fixed-version: Fixed from version 6.16" | ||
| 15882 | |||
| 15883 | CVE_STATUS[CVE-2025-38260] = "fixed-version: Fixed from version 6.16" | ||
| 15884 | |||
| 15885 | CVE_STATUS[CVE-2025-38261] = "fixed-version: Fixed from version 6.16" | ||
| 15886 | |||
| 15887 | CVE_STATUS[CVE-2025-38262] = "fixed-version: Fixed from version 6.16" | ||
| 15888 | |||
| 15889 | CVE_STATUS[CVE-2025-38263] = "fixed-version: Fixed from version 6.16" | ||
| 15890 | |||
| 15891 | CVE_STATUS[CVE-2025-38264] = "fixed-version: Fixed from version 6.16" | ||
| 15892 | |||
| 15893 | CVE_STATUS[CVE-2025-38265] = "fixed-version: Fixed from version 6.16" | ||
| 15894 | |||
| 15895 | CVE_STATUS[CVE-2025-38266] = "fixed-version: Fixed from version 6.16" | ||
| 15896 | |||
| 15897 | CVE_STATUS[CVE-2025-38267] = "fixed-version: Fixed from version 6.16" | ||
| 15898 | |||
| 15899 | CVE_STATUS[CVE-2025-38268] = "fixed-version: Fixed from version 6.16" | ||
| 15900 | |||
| 15901 | CVE_STATUS[CVE-2025-38269] = "fixed-version: Fixed from version 6.16" | ||
| 15902 | |||
| 15903 | CVE_STATUS[CVE-2025-38270] = "fixed-version: Fixed from version 6.16" | ||
| 15904 | |||
| 15905 | CVE_STATUS[CVE-2025-38271] = "fixed-version: Fixed from version 6.16" | ||
| 15906 | |||
| 15907 | CVE_STATUS[CVE-2025-38272] = "fixed-version: Fixed from version 6.16" | ||
| 15908 | |||
| 15909 | CVE_STATUS[CVE-2025-38273] = "fixed-version: Fixed from version 6.16" | ||
| 15910 | |||
| 15911 | CVE_STATUS[CVE-2025-38274] = "fixed-version: Fixed from version 6.16" | ||
| 15912 | |||
| 15913 | CVE_STATUS[CVE-2025-38275] = "fixed-version: Fixed from version 6.16" | ||
| 15914 | |||
| 15915 | CVE_STATUS[CVE-2025-38276] = "fixed-version: Fixed from version 6.16" | ||
| 15916 | |||
| 15917 | CVE_STATUS[CVE-2025-38277] = "fixed-version: Fixed from version 6.16" | ||
| 15918 | |||
| 15919 | CVE_STATUS[CVE-2025-38278] = "fixed-version: Fixed from version 6.16" | ||
| 15920 | |||
| 15921 | CVE_STATUS[CVE-2025-38279] = "fixed-version: Fixed from version 6.16" | ||
| 15922 | |||
| 15923 | CVE_STATUS[CVE-2025-38280] = "fixed-version: Fixed from version 6.16" | ||
| 15924 | |||
| 15925 | CVE_STATUS[CVE-2025-38281] = "fixed-version: Fixed from version 6.16" | ||
| 15926 | |||
| 15927 | CVE_STATUS[CVE-2025-38282] = "fixed-version: Fixed from version 6.16" | ||
| 15928 | |||
| 15929 | CVE_STATUS[CVE-2025-38283] = "fixed-version: Fixed from version 6.16" | ||
| 15930 | |||
| 15931 | CVE_STATUS[CVE-2025-38284] = "fixed-version: Fixed from version 6.16" | ||
| 15932 | |||
| 15933 | CVE_STATUS[CVE-2025-38285] = "fixed-version: Fixed from version 6.16" | ||
| 15934 | |||
| 15935 | CVE_STATUS[CVE-2025-38286] = "fixed-version: Fixed from version 6.16" | ||
| 15936 | |||
| 15937 | CVE_STATUS[CVE-2025-38287] = "fixed-version: Fixed from version 6.16" | ||
| 15938 | |||
| 15939 | CVE_STATUS[CVE-2025-38288] = "fixed-version: Fixed from version 6.16" | ||
| 15940 | |||
| 15941 | CVE_STATUS[CVE-2025-38289] = "fixed-version: Fixed from version 6.16" | ||
| 15942 | |||
| 15943 | CVE_STATUS[CVE-2025-38290] = "fixed-version: Fixed from version 6.16" | ||
| 15944 | |||
| 15945 | CVE_STATUS[CVE-2025-38291] = "fixed-version: Fixed from version 6.16" | ||
| 15946 | |||
| 15947 | CVE_STATUS[CVE-2025-38292] = "fixed-version: Fixed from version 6.16" | ||
| 15948 | |||
| 15949 | CVE_STATUS[CVE-2025-38293] = "fixed-version: Fixed from version 6.16" | ||
| 15950 | |||
| 15951 | CVE_STATUS[CVE-2025-38294] = "fixed-version: Fixed from version 6.16" | ||
| 15952 | |||
| 15953 | CVE_STATUS[CVE-2025-38295] = "fixed-version: Fixed from version 6.16" | ||
| 15954 | |||
| 15955 | CVE_STATUS[CVE-2025-38296] = "fixed-version: Fixed from version 6.16" | ||
| 15956 | |||
| 15957 | CVE_STATUS[CVE-2025-38297] = "fixed-version: Fixed from version 6.16" | ||
| 15958 | |||
| 15959 | CVE_STATUS[CVE-2025-38298] = "fixed-version: Fixed from version 6.16" | ||
| 15960 | |||
| 15961 | CVE_STATUS[CVE-2025-38299] = "fixed-version: Fixed from version 6.16" | ||
| 15962 | |||
| 15963 | CVE_STATUS[CVE-2025-38300] = "fixed-version: Fixed from version 6.16" | ||
| 15964 | |||
| 15965 | CVE_STATUS[CVE-2025-38301] = "fixed-version: Fixed from version 6.16" | ||
| 15966 | |||
| 15967 | CVE_STATUS[CVE-2025-38302] = "fixed-version: Fixed from version 6.16" | ||
| 15968 | |||
| 15969 | CVE_STATUS[CVE-2025-38303] = "fixed-version: Fixed from version 6.16" | ||
| 15970 | |||
| 15971 | CVE_STATUS[CVE-2025-38304] = "fixed-version: Fixed from version 6.16" | ||
| 15972 | |||
| 15973 | CVE_STATUS[CVE-2025-38305] = "fixed-version: Fixed from version 6.16" | ||
| 15974 | |||
| 15975 | CVE_STATUS[CVE-2025-38306] = "fixed-version: Fixed from version 6.16" | ||
| 15976 | |||
| 15977 | CVE_STATUS[CVE-2025-38307] = "fixed-version: Fixed from version 6.16" | ||
| 15978 | |||
| 15979 | CVE_STATUS[CVE-2025-38308] = "fixed-version: Fixed from version 6.16" | ||
| 15980 | |||
| 15981 | CVE_STATUS[CVE-2025-38309] = "fixed-version: Fixed from version 6.16" | ||
| 15982 | |||
| 15983 | CVE_STATUS[CVE-2025-38310] = "fixed-version: Fixed from version 6.16" | ||
| 15984 | |||
| 15985 | CVE_STATUS[CVE-2025-38311] = "fixed-version: Fixed from version 6.16" | ||
| 15986 | |||
| 15987 | CVE_STATUS[CVE-2025-38312] = "fixed-version: Fixed from version 6.16" | ||
| 15988 | |||
| 15989 | CVE_STATUS[CVE-2025-38313] = "fixed-version: Fixed from version 6.16" | ||
| 15990 | |||
| 15991 | CVE_STATUS[CVE-2025-38314] = "fixed-version: Fixed from version 6.16" | ||
| 15992 | |||
| 15993 | CVE_STATUS[CVE-2025-38315] = "fixed-version: Fixed from version 6.16" | ||
| 15994 | |||
| 15995 | CVE_STATUS[CVE-2025-38316] = "fixed-version: Fixed from version 6.16" | ||
| 15996 | |||
| 15997 | CVE_STATUS[CVE-2025-38317] = "fixed-version: Fixed from version 6.16" | ||
| 15998 | |||
| 15999 | CVE_STATUS[CVE-2025-38318] = "fixed-version: Fixed from version 6.16" | ||
| 16000 | |||
| 16001 | CVE_STATUS[CVE-2025-38319] = "fixed-version: Fixed from version 6.16" | ||
| 16002 | |||
| 16003 | CVE_STATUS[CVE-2025-38320] = "fixed-version: Fixed from version 6.16" | ||
| 16004 | |||
| 16005 | CVE_STATUS[CVE-2025-38321] = "fixed-version: Fixed from version 6.16" | ||
| 16006 | |||
| 16007 | CVE_STATUS[CVE-2025-38322] = "fixed-version: Fixed from version 6.16" | ||
| 16008 | |||
| 16009 | CVE_STATUS[CVE-2025-38323] = "fixed-version: Fixed from version 6.16" | ||
| 16010 | |||
| 16011 | CVE_STATUS[CVE-2025-38324] = "fixed-version: Fixed from version 6.16" | ||
| 16012 | |||
| 16013 | CVE_STATUS[CVE-2025-38325] = "fixed-version: Fixed from version 6.16" | ||
| 16014 | |||
| 16015 | CVE_STATUS[CVE-2025-38326] = "fixed-version: Fixed from version 6.16" | ||
| 16016 | |||
| 16017 | CVE_STATUS[CVE-2025-38327] = "fixed-version: Fixed from version 6.16" | ||
| 16018 | |||
| 16019 | CVE_STATUS[CVE-2025-38328] = "fixed-version: Fixed from version 6.16" | ||
| 16020 | |||
| 16021 | CVE_STATUS[CVE-2025-38329] = "fixed-version: Fixed from version 6.16" | ||
| 16022 | |||
| 16023 | CVE_STATUS[CVE-2025-38330] = "fixed-version: Fixed from version 6.16" | ||
| 16024 | |||
| 16025 | CVE_STATUS[CVE-2025-38331] = "fixed-version: Fixed from version 6.16" | ||
| 16026 | |||
| 16027 | CVE_STATUS[CVE-2025-38332] = "fixed-version: Fixed from version 6.16" | ||
| 16028 | |||
| 16029 | CVE_STATUS[CVE-2025-38333] = "fixed-version: Fixed from version 6.16" | ||
| 16030 | |||
| 16031 | CVE_STATUS[CVE-2025-38334] = "fixed-version: Fixed from version 6.16" | ||
| 16032 | |||
| 16033 | CVE_STATUS[CVE-2025-38335] = "fixed-version: Fixed from version 6.16" | ||
| 16034 | |||
| 16035 | CVE_STATUS[CVE-2025-38336] = "fixed-version: Fixed from version 6.16" | ||
| 16036 | |||
| 16037 | CVE_STATUS[CVE-2025-38337] = "fixed-version: Fixed from version 6.16" | ||
| 16038 | |||
| 16039 | CVE_STATUS[CVE-2025-38338] = "fixed-version: Fixed from version 6.16" | ||
| 16040 | |||
| 16041 | CVE_STATUS[CVE-2025-38339] = "fixed-version: Fixed from version 6.16" | ||
| 16042 | |||
| 16043 | CVE_STATUS[CVE-2025-38340] = "fixed-version: Fixed from version 6.16" | ||
| 16044 | |||
| 16045 | CVE_STATUS[CVE-2025-38341] = "fixed-version: Fixed from version 6.16" | ||
| 16046 | |||
| 16047 | CVE_STATUS[CVE-2025-38342] = "fixed-version: Fixed from version 6.16" | ||
| 16048 | |||
| 16049 | CVE_STATUS[CVE-2025-38343] = "fixed-version: Fixed from version 6.16" | ||
| 16050 | |||
| 16051 | CVE_STATUS[CVE-2025-38344] = "fixed-version: Fixed from version 6.16" | ||
| 16052 | |||
| 16053 | CVE_STATUS[CVE-2025-38345] = "fixed-version: Fixed from version 6.16" | ||
| 16054 | |||
| 16055 | CVE_STATUS[CVE-2025-38346] = "fixed-version: Fixed from version 6.16" | ||
| 16056 | |||
| 16057 | CVE_STATUS[CVE-2025-38347] = "fixed-version: Fixed from version 6.16" | ||
| 16058 | |||
| 16059 | CVE_STATUS[CVE-2025-38348] = "fixed-version: Fixed from version 6.16" | ||
| 16060 | |||
| 16061 | CVE_STATUS[CVE-2025-38349] = "fixed-version: Fixed from version 6.16" | ||
| 16062 | |||
| 16063 | CVE_STATUS[CVE-2025-38350] = "fixed-version: Fixed from version 6.16" | ||
| 16064 | |||
| 16065 | CVE_STATUS[CVE-2025-38351] = "fixed-version: Fixed from version 6.16" | ||
| 16066 | |||
| 16067 | CVE_STATUS[CVE-2025-38352] = "fixed-version: Fixed from version 6.16" | ||
| 16068 | |||
| 16069 | CVE_STATUS[CVE-2025-38353] = "fixed-version: Fixed from version 6.16" | ||
| 16070 | |||
| 16071 | CVE_STATUS[CVE-2025-38354] = "fixed-version: Fixed from version 6.16" | ||
| 16072 | |||
| 16073 | CVE_STATUS[CVE-2025-38355] = "fixed-version: Fixed from version 6.16" | ||
| 16074 | |||
| 16075 | CVE_STATUS[CVE-2025-38356] = "fixed-version: Fixed from version 6.16" | ||
| 16076 | |||
| 16077 | CVE_STATUS[CVE-2025-38357] = "fixed-version: Fixed from version 6.16" | ||
| 16078 | |||
| 16079 | CVE_STATUS[CVE-2025-38358] = "fixed-version: Fixed from version 6.16" | ||
| 16080 | |||
| 16081 | CVE_STATUS[CVE-2025-38359] = "fixed-version: Fixed from version 6.16" | ||
| 16082 | |||
| 16083 | CVE_STATUS[CVE-2025-38360] = "fixed-version: Fixed from version 6.16" | ||
| 16084 | |||
| 16085 | CVE_STATUS[CVE-2025-38361] = "fixed-version: Fixed from version 6.16" | ||
| 16086 | |||
| 16087 | CVE_STATUS[CVE-2025-38362] = "fixed-version: Fixed from version 6.16" | ||
| 16088 | |||
| 16089 | CVE_STATUS[CVE-2025-38363] = "fixed-version: Fixed from version 6.16" | ||
| 16090 | |||
| 16091 | CVE_STATUS[CVE-2025-38364] = "fixed-version: Fixed from version 6.16" | ||
| 16092 | |||
| 16093 | CVE_STATUS[CVE-2025-38365] = "fixed-version: Fixed from version 6.16" | ||
| 16094 | |||
| 16095 | CVE_STATUS[CVE-2025-38366] = "fixed-version: Fixed from version 6.16" | ||
| 16096 | |||
| 16097 | CVE_STATUS[CVE-2025-38367] = "fixed-version: Fixed from version 6.16" | ||
| 16098 | |||
| 16099 | CVE_STATUS[CVE-2025-38368] = "fixed-version: Fixed from version 6.16" | ||
| 16100 | |||
| 16101 | CVE_STATUS[CVE-2025-38369] = "fixed-version: Fixed from version 6.16" | ||
| 16102 | |||
| 16103 | CVE_STATUS[CVE-2025-38370] = "fixed-version: Fixed from version 6.16" | ||
| 16104 | |||
| 16105 | CVE_STATUS[CVE-2025-38371] = "fixed-version: Fixed from version 6.16" | ||
| 16106 | |||
| 16107 | CVE_STATUS[CVE-2025-38372] = "fixed-version: Fixed from version 6.16" | ||
| 16108 | |||
| 16109 | CVE_STATUS[CVE-2025-38373] = "fixed-version: Fixed from version 6.16" | ||
| 16110 | |||
| 16111 | CVE_STATUS[CVE-2025-38374] = "fixed-version: Fixed from version 6.16" | ||
| 16112 | |||
| 16113 | CVE_STATUS[CVE-2025-38375] = "fixed-version: Fixed from version 6.16" | ||
| 16114 | |||
| 16115 | CVE_STATUS[CVE-2025-38376] = "fixed-version: Fixed from version 6.16" | ||
| 16116 | |||
| 16117 | CVE_STATUS[CVE-2025-38377] = "fixed-version: Fixed from version 6.16" | ||
| 16118 | |||
| 16119 | CVE_STATUS[CVE-2025-38378] = "fixed-version: Fixed from version 6.16" | ||
| 16120 | |||
| 16121 | CVE_STATUS[CVE-2025-38379] = "fixed-version: Fixed from version 6.15.6" | ||
| 16122 | |||
| 16123 | CVE_STATUS[CVE-2025-38381] = "fixed-version: Fixed from version 6.16" | ||
| 16124 | |||
| 16125 | CVE_STATUS[CVE-2025-38382] = "fixed-version: Fixed from version 6.16" | ||
| 16126 | |||
| 16127 | CVE_STATUS[CVE-2025-38383] = "fixed-version: Fixed from version 6.16" | ||
| 16128 | |||
| 16129 | CVE_STATUS[CVE-2025-38384] = "fixed-version: Fixed from version 6.16" | ||
| 16130 | |||
| 16131 | CVE_STATUS[CVE-2025-38385] = "fixed-version: Fixed from version 6.16" | ||
| 16132 | |||
| 16133 | CVE_STATUS[CVE-2025-38386] = "fixed-version: Fixed from version 6.16" | ||
| 16134 | |||
| 16135 | CVE_STATUS[CVE-2025-38387] = "fixed-version: Fixed from version 6.16" | ||
| 16136 | |||
| 16137 | CVE_STATUS[CVE-2025-38388] = "fixed-version: Fixed from version 6.16" | ||
| 16138 | |||
| 16139 | CVE_STATUS[CVE-2025-38389] = "fixed-version: Fixed from version 6.16" | ||
| 16140 | |||
| 16141 | CVE_STATUS[CVE-2025-38390] = "fixed-version: Fixed from version 6.16" | ||
| 16142 | |||
| 16143 | CVE_STATUS[CVE-2025-38391] = "fixed-version: Fixed from version 6.16" | ||
| 16144 | |||
| 16145 | CVE_STATUS[CVE-2025-38392] = "fixed-version: Fixed from version 6.16" | ||
| 16146 | |||
| 16147 | CVE_STATUS[CVE-2025-38393] = "fixed-version: Fixed from version 6.16" | ||
| 16148 | |||
| 16149 | CVE_STATUS[CVE-2025-38394] = "fixed-version: Fixed from version 6.16" | ||
| 16150 | |||
| 16151 | CVE_STATUS[CVE-2025-38395] = "fixed-version: Fixed from version 6.16" | ||
| 16152 | |||
| 16153 | CVE_STATUS[CVE-2025-38396] = "fixed-version: Fixed from version 6.16" | ||
| 16154 | |||
| 16155 | CVE_STATUS[CVE-2025-38397] = "fixed-version: Fixed from version 6.16" | ||
| 16156 | |||
| 16157 | CVE_STATUS[CVE-2025-38398] = "fixed-version: Fixed from version 6.16" | ||
| 16158 | |||
| 16159 | CVE_STATUS[CVE-2025-38399] = "fixed-version: Fixed from version 6.16" | ||
| 16160 | |||
| 16161 | CVE_STATUS[CVE-2025-38400] = "fixed-version: Fixed from version 6.16" | ||
| 16162 | |||
| 16163 | CVE_STATUS[CVE-2025-38401] = "fixed-version: Fixed from version 6.16" | ||
| 16164 | |||
| 16165 | CVE_STATUS[CVE-2025-38402] = "fixed-version: Fixed from version 6.16" | ||
| 16166 | |||
| 16167 | CVE_STATUS[CVE-2025-38403] = "fixed-version: Fixed from version 6.16" | ||
| 16168 | |||
| 16169 | CVE_STATUS[CVE-2025-38404] = "fixed-version: Fixed from version 6.15.6" | ||
| 16170 | |||
| 16171 | CVE_STATUS[CVE-2025-38405] = "fixed-version: Fixed from version 6.16" | ||
| 16172 | |||
| 16173 | CVE_STATUS[CVE-2025-38406] = "fixed-version: Fixed from version 6.16" | ||
| 16174 | |||
| 16175 | CVE_STATUS[CVE-2025-38407] = "fixed-version: Fixed from version 6.16" | ||
| 16176 | |||
| 16177 | CVE_STATUS[CVE-2025-38408] = "fixed-version: Fixed from version 6.16" | ||
| 16178 | |||
| 16179 | CVE_STATUS[CVE-2025-38409] = "fixed-version: Fixed from version 6.16" | ||
| 16180 | |||
| 16181 | CVE_STATUS[CVE-2025-38410] = "fixed-version: Fixed from version 6.16" | ||
| 16182 | |||
| 16183 | CVE_STATUS[CVE-2025-38411] = "fixed-version: Fixed from version 6.15.6" | ||
| 16184 | |||
| 16185 | CVE_STATUS[CVE-2025-38412] = "fixed-version: Fixed from version 6.16" | ||
| 16186 | |||
| 16187 | CVE_STATUS[CVE-2025-38413] = "fixed-version: Fixed from version 6.16" | ||
| 16188 | |||
| 16189 | CVE_STATUS[CVE-2025-38414] = "fixed-version: Fixed from version 6.16" | ||
| 16190 | |||
| 16191 | CVE_STATUS[CVE-2025-38415] = "fixed-version: Fixed from version 6.16" | ||
| 16192 | |||
| 16193 | CVE_STATUS[CVE-2025-38416] = "fixed-version: Fixed from version 6.16" | ||
| 16194 | |||
| 16195 | CVE_STATUS[CVE-2025-38417] = "fixed-version: Fixed from version 6.16" | ||
| 16196 | |||
| 16197 | CVE_STATUS[CVE-2025-38418] = "fixed-version: Fixed from version 6.16" | ||
| 16198 | |||
| 16199 | CVE_STATUS[CVE-2025-38419] = "fixed-version: Fixed from version 6.16" | ||
| 16200 | |||
| 16201 | CVE_STATUS[CVE-2025-38420] = "fixed-version: Fixed from version 6.16" | ||
| 16202 | |||
| 16203 | CVE_STATUS[CVE-2025-38421] = "fixed-version: Fixed from version 6.16" | ||
| 16204 | |||
| 16205 | CVE_STATUS[CVE-2025-38422] = "fixed-version: Fixed from version 6.16" | ||
| 16206 | |||
| 16207 | CVE_STATUS[CVE-2025-38423] = "fixed-version: Fixed from version 6.16" | ||
| 16208 | |||
| 16209 | CVE_STATUS[CVE-2025-38424] = "fixed-version: Fixed from version 6.16" | ||
| 16210 | |||
| 16211 | CVE_STATUS[CVE-2025-38425] = "fixed-version: Fixed from version 6.16" | ||
| 16212 | |||
| 16213 | CVE_STATUS[CVE-2025-38426] = "fixed-version: Fixed from version 6.16" | ||
| 16214 | |||
| 16215 | CVE_STATUS[CVE-2025-38427] = "fixed-version: Fixed from version 6.16" | ||
| 16216 | |||
| 16217 | CVE_STATUS[CVE-2025-38428] = "fixed-version: Fixed from version 6.16" | ||
| 16218 | |||
| 16219 | CVE_STATUS[CVE-2025-38429] = "fixed-version: Fixed from version 6.16" | ||
| 16220 | |||
| 16221 | CVE_STATUS[CVE-2025-38430] = "fixed-version: Fixed from version 6.16" | ||
| 16222 | |||
| 16223 | CVE_STATUS[CVE-2025-38431] = "fixed-version: Fixed from version 6.16" | ||
| 16224 | |||
| 16225 | CVE_STATUS[CVE-2025-38432] = "fixed-version: Fixed from version 6.16" | ||
| 16226 | |||
| 16227 | CVE_STATUS[CVE-2025-38433] = "fixed-version: Fixed from version 6.16" | ||
| 16228 | |||
| 16229 | CVE_STATUS[CVE-2025-38434] = "fixed-version: Fixed from version 6.16" | ||
| 16230 | |||
| 16231 | CVE_STATUS[CVE-2025-38435] = "fixed-version: Fixed from version 6.16" | ||
| 16232 | |||
| 16233 | CVE_STATUS[CVE-2025-38436] = "fixed-version: Fixed from version 6.16" | ||
| 16234 | |||
| 16235 | CVE_STATUS[CVE-2025-38437] = "fixed-version: Fixed from version 6.16" | ||
| 16236 | |||
| 16237 | CVE_STATUS[CVE-2025-38438] = "fixed-version: Fixed from version 6.16" | ||
| 16238 | |||
| 16239 | CVE_STATUS[CVE-2025-38439] = "fixed-version: Fixed from version 6.16" | ||
| 16240 | |||
| 16241 | CVE_STATUS[CVE-2025-38440] = "fixed-version: Fixed from version 6.16" | ||
| 16242 | |||
| 16243 | CVE_STATUS[CVE-2025-38441] = "fixed-version: Fixed from version 6.16" | ||
| 16244 | |||
| 16245 | CVE_STATUS[CVE-2025-38442] = "fixed-version: Fixed from version 6.16" | ||
| 16246 | |||
| 16247 | CVE_STATUS[CVE-2025-38443] = "fixed-version: Fixed from version 6.16" | ||
| 16248 | |||
| 16249 | CVE_STATUS[CVE-2025-38444] = "fixed-version: Fixed from version 6.16" | ||
| 16250 | |||
| 16251 | CVE_STATUS[CVE-2025-38445] = "fixed-version: Fixed from version 6.16" | ||
| 16252 | |||
| 16253 | CVE_STATUS[CVE-2025-38446] = "fixed-version: Fixed from version 6.16" | ||
| 16254 | |||
| 16255 | CVE_STATUS[CVE-2025-38447] = "fixed-version: Fixed from version 6.16" | ||
| 16256 | |||
| 16257 | CVE_STATUS[CVE-2025-38448] = "fixed-version: Fixed from version 6.16" | ||
| 16258 | |||
| 16259 | CVE_STATUS[CVE-2025-38449] = "fixed-version: Fixed from version 6.16" | ||
| 16260 | |||
| 16261 | CVE_STATUS[CVE-2025-38450] = "fixed-version: Fixed from version 6.16" | ||
| 16262 | |||
| 16263 | CVE_STATUS[CVE-2025-38451] = "fixed-version: Fixed from version 6.16" | ||
| 16264 | |||
| 16265 | CVE_STATUS[CVE-2025-38452] = "fixed-version: Fixed from version 6.16" | ||
| 16266 | |||
| 16267 | CVE_STATUS[CVE-2025-38453] = "fixed-version: Fixed from version 6.16" | ||
| 16268 | |||
| 16269 | CVE_STATUS[CVE-2025-38454] = "fixed-version: Fixed from version 6.16" | ||
| 16270 | |||
| 16271 | CVE_STATUS[CVE-2025-38455] = "fixed-version: Fixed from version 6.16" | ||
| 16272 | |||
| 16273 | CVE_STATUS[CVE-2025-38456] = "fixed-version: Fixed from version 6.16" | ||
| 16274 | |||
| 16275 | CVE_STATUS[CVE-2025-38457] = "fixed-version: Fixed from version 6.16" | ||
| 16276 | |||
| 16277 | CVE_STATUS[CVE-2025-38458] = "fixed-version: Fixed from version 6.16" | ||
| 16278 | |||
| 16279 | CVE_STATUS[CVE-2025-38459] = "fixed-version: Fixed from version 6.16" | ||
| 16280 | |||
| 16281 | CVE_STATUS[CVE-2025-38460] = "fixed-version: Fixed from version 6.16" | ||
| 16282 | |||
| 16283 | CVE_STATUS[CVE-2025-38461] = "fixed-version: Fixed from version 6.16" | ||
| 16284 | |||
| 16285 | CVE_STATUS[CVE-2025-38462] = "fixed-version: Fixed from version 6.16" | ||
| 16286 | |||
| 16287 | CVE_STATUS[CVE-2025-38463] = "fixed-version: Fixed from version 6.16" | ||
| 16288 | |||
| 16289 | CVE_STATUS[CVE-2025-38464] = "fixed-version: Fixed from version 6.16" | ||
| 16290 | |||
| 16291 | CVE_STATUS[CVE-2025-38465] = "fixed-version: Fixed from version 6.16" | ||
| 16292 | |||
| 16293 | CVE_STATUS[CVE-2025-38466] = "fixed-version: Fixed from version 6.16" | ||
| 16294 | |||
| 16295 | CVE_STATUS[CVE-2025-38467] = "fixed-version: Fixed from version 6.16" | ||
| 16296 | |||
| 16297 | CVE_STATUS[CVE-2025-38468] = "fixed-version: Fixed from version 6.16" | ||
| 16298 | |||
| 16299 | CVE_STATUS[CVE-2025-38469] = "fixed-version: Fixed from version 6.16" | ||
| 16300 | |||
| 16301 | CVE_STATUS[CVE-2025-38470] = "fixed-version: Fixed from version 6.16" | ||
| 16302 | |||
| 16303 | CVE_STATUS[CVE-2025-38471] = "fixed-version: Fixed from version 6.16" | ||
| 16304 | |||
| 16305 | CVE_STATUS[CVE-2025-38472] = "fixed-version: Fixed from version 6.16" | ||
| 16306 | |||
| 16307 | CVE_STATUS[CVE-2025-38473] = "fixed-version: Fixed from version 6.16" | ||
| 16308 | |||
| 16309 | CVE_STATUS[CVE-2025-38474] = "fixed-version: Fixed from version 6.16" | ||
| 16310 | |||
| 16311 | CVE_STATUS[CVE-2025-38475] = "fixed-version: Fixed from version 6.16" | ||
| 16312 | |||
| 16313 | CVE_STATUS[CVE-2025-38476] = "fixed-version: Fixed from version 6.16" | ||
| 16314 | |||
| 16315 | CVE_STATUS[CVE-2025-38477] = "fixed-version: Fixed from version 6.16" | ||
| 16316 | |||
| 16317 | CVE_STATUS[CVE-2025-38478] = "fixed-version: Fixed from version 6.16" | ||
| 16318 | |||
| 16319 | CVE_STATUS[CVE-2025-38479] = "fixed-version: Fixed from version 6.15" | ||
| 16320 | |||
| 16321 | CVE_STATUS[CVE-2025-38480] = "fixed-version: Fixed from version 6.16" | ||
| 16322 | |||
| 16323 | CVE_STATUS[CVE-2025-38481] = "fixed-version: Fixed from version 6.16" | ||
| 16324 | |||
| 16325 | CVE_STATUS[CVE-2025-38482] = "fixed-version: Fixed from version 6.16" | ||
| 16326 | |||
| 16327 | CVE_STATUS[CVE-2025-38483] = "fixed-version: Fixed from version 6.16" | ||
| 16328 | |||
| 16329 | CVE_STATUS[CVE-2025-38484] = "fixed-version: Fixed from version 6.16" | ||
| 16330 | |||
| 16331 | CVE_STATUS[CVE-2025-38485] = "fixed-version: Fixed from version 6.16" | ||
| 16332 | |||
| 16333 | CVE_STATUS[CVE-2025-38486] = "fixed-version: Fixed from version 6.16" | ||
| 16334 | |||
| 16335 | CVE_STATUS[CVE-2025-38487] = "fixed-version: Fixed from version 6.16" | ||
| 16336 | |||
| 16337 | CVE_STATUS[CVE-2025-38488] = "fixed-version: Fixed from version 6.16" | ||
| 16338 | |||
| 16339 | CVE_STATUS[CVE-2025-38489] = "fixed-version: Fixed from version 6.16" | ||
| 16340 | |||
| 16341 | CVE_STATUS[CVE-2025-38490] = "fixed-version: Fixed from version 6.16" | ||
| 16342 | |||
| 16343 | CVE_STATUS[CVE-2025-38491] = "fixed-version: Fixed from version 6.16" | ||
| 16344 | |||
| 16345 | CVE_STATUS[CVE-2025-38492] = "fixed-version: Fixed from version 6.16" | ||
| 16346 | |||
| 16347 | CVE_STATUS[CVE-2025-38493] = "fixed-version: Fixed from version 6.16" | ||
| 16348 | |||
| 16349 | CVE_STATUS[CVE-2025-38494] = "fixed-version: Fixed from version 6.16" | ||
| 16350 | |||
| 16351 | CVE_STATUS[CVE-2025-38495] = "fixed-version: Fixed from version 6.16" | ||
| 16352 | |||
| 16353 | CVE_STATUS[CVE-2025-38496] = "fixed-version: Fixed from version 6.16" | ||
| 16354 | |||
| 16355 | CVE_STATUS[CVE-2025-38497] = "fixed-version: Fixed from version 6.16" | ||
| 16356 | |||
| 16357 | CVE_STATUS[CVE-2025-38498] = "fixed-version: Fixed from version 6.16" | ||
| 16358 | |||
| 16359 | CVE_STATUS[CVE-2025-38499] = "fixed-version: Fixed from version 6.16" | ||
| 16360 | |||
| 16361 | CVE_STATUS[CVE-2025-38500] = "fixed-version: Fixed from version 6.16" | ||
| 16362 | |||
| 16363 | CVE_STATUS[CVE-2025-38501] = "fixed-version: Fixed from version 6.17" | ||
| 16364 | |||
| 16365 | CVE_STATUS[CVE-2025-38502] = "fixed-version: Fixed from version 6.17" | ||
| 16366 | |||
| 16367 | CVE_STATUS[CVE-2025-38503] = "fixed-version: Fixed from version 6.16" | ||
| 16368 | |||
| 16369 | CVE_STATUS[CVE-2025-38504] = "fixed-version: Fixed from version 6.16" | ||
| 16370 | |||
| 16371 | CVE_STATUS[CVE-2025-38505] = "fixed-version: Fixed from version 6.16" | ||
| 16372 | |||
| 16373 | CVE_STATUS[CVE-2025-38506] = "fixed-version: Fixed from version 6.16" | ||
| 16374 | |||
| 16375 | CVE_STATUS[CVE-2025-38507] = "fixed-version: Fixed from version 6.16" | ||
| 16376 | |||
| 16377 | CVE_STATUS[CVE-2025-38508] = "fixed-version: Fixed from version 6.16" | ||
| 16378 | |||
| 16379 | CVE_STATUS[CVE-2025-38509] = "fixed-version: Fixed from version 6.16" | ||
| 16380 | |||
| 16381 | CVE_STATUS[CVE-2025-38510] = "fixed-version: Fixed from version 6.16" | ||
| 16382 | |||
| 16383 | CVE_STATUS[CVE-2025-38511] = "fixed-version: Fixed from version 6.16" | ||
| 16384 | |||
| 16385 | CVE_STATUS[CVE-2025-38512] = "fixed-version: Fixed from version 6.16" | ||
| 16386 | |||
| 16387 | CVE_STATUS[CVE-2025-38513] = "fixed-version: Fixed from version 6.16" | ||
| 16388 | |||
| 16389 | CVE_STATUS[CVE-2025-38514] = "fixed-version: Fixed from version 6.16" | ||
| 16390 | |||
| 16391 | CVE_STATUS[CVE-2025-38515] = "fixed-version: Fixed from version 6.16" | ||
| 16392 | |||
| 16393 | CVE_STATUS[CVE-2025-38516] = "fixed-version: Fixed from version 6.16" | ||
| 16394 | |||
| 16395 | CVE_STATUS[CVE-2025-38517] = "fixed-version: Fixed from version 6.16" | ||
| 16396 | |||
| 16397 | CVE_STATUS[CVE-2025-38518] = "fixed-version: Fixed from version 6.16" | ||
| 16398 | |||
| 16399 | CVE_STATUS[CVE-2025-38519] = "fixed-version: Fixed from version 6.16" | ||
| 16400 | |||
| 16401 | CVE_STATUS[CVE-2025-38520] = "fixed-version: Fixed from version 6.16" | ||
| 16402 | |||
| 16403 | CVE_STATUS[CVE-2025-38521] = "fixed-version: Fixed from version 6.16" | ||
| 16404 | |||
| 16405 | CVE_STATUS[CVE-2025-38522] = "fixed-version: Fixed from version 6.16" | ||
| 16406 | |||
| 16407 | CVE_STATUS[CVE-2025-38523] = "fixed-version: Fixed from version 6.16" | ||
| 16408 | |||
| 16409 | CVE_STATUS[CVE-2025-38524] = "fixed-version: Fixed from version 6.16" | ||
| 16410 | |||
| 16411 | CVE_STATUS[CVE-2025-38525] = "fixed-version: Fixed from version 6.16" | ||
| 16412 | |||
| 16413 | CVE_STATUS[CVE-2025-38526] = "fixed-version: Fixed from version 6.16" | ||
| 16414 | |||
| 16415 | CVE_STATUS[CVE-2025-38527] = "fixed-version: Fixed from version 6.16" | ||
| 16416 | |||
| 16417 | CVE_STATUS[CVE-2025-38528] = "fixed-version: Fixed from version 6.16" | ||
| 16418 | |||
| 16419 | CVE_STATUS[CVE-2025-38529] = "fixed-version: Fixed from version 6.16" | ||
| 16420 | |||
| 16421 | CVE_STATUS[CVE-2025-38530] = "fixed-version: Fixed from version 6.16" | ||
| 16422 | |||
| 16423 | CVE_STATUS[CVE-2025-38531] = "fixed-version: Fixed from version 6.16" | ||
| 16424 | |||
| 16425 | CVE_STATUS[CVE-2025-38532] = "fixed-version: Fixed from version 6.16" | ||
| 16426 | |||
| 16427 | CVE_STATUS[CVE-2025-38533] = "fixed-version: Fixed from version 6.16" | ||
| 16428 | |||
| 16429 | CVE_STATUS[CVE-2025-38534] = "fixed-version: Fixed from version 6.16" | ||
| 16430 | |||
| 16431 | CVE_STATUS[CVE-2025-38535] = "fixed-version: Fixed from version 6.16" | ||
| 16432 | |||
| 16433 | CVE_STATUS[CVE-2025-38536] = "fixed-version: Fixed from version 6.16" | ||
| 16434 | |||
| 16435 | CVE_STATUS[CVE-2025-38537] = "fixed-version: Fixed from version 6.16" | ||
| 16436 | |||
| 16437 | CVE_STATUS[CVE-2025-38538] = "fixed-version: Fixed from version 6.16" | ||
| 16438 | |||
| 16439 | CVE_STATUS[CVE-2025-38539] = "fixed-version: Fixed from version 6.16" | ||
| 16440 | |||
| 16441 | CVE_STATUS[CVE-2025-38540] = "fixed-version: Fixed from version 6.16" | ||
| 16442 | |||
| 16443 | CVE_STATUS[CVE-2025-38541] = "fixed-version: Fixed from version 6.16" | ||
| 16444 | |||
| 16445 | CVE_STATUS[CVE-2025-38542] = "fixed-version: Fixed from version 6.16" | ||
| 16446 | |||
| 16447 | CVE_STATUS[CVE-2025-38543] = "fixed-version: Fixed from version 6.16" | ||
| 16448 | |||
| 16449 | CVE_STATUS[CVE-2025-38544] = "fixed-version: Fixed from version 6.16" | ||
| 16450 | |||
| 16451 | CVE_STATUS[CVE-2025-38545] = "fixed-version: Fixed from version 6.16" | ||
| 16452 | |||
| 16453 | CVE_STATUS[CVE-2025-38546] = "fixed-version: Fixed from version 6.16" | ||
| 16454 | |||
| 16455 | CVE_STATUS[CVE-2025-38547] = "fixed-version: Fixed from version 6.16" | ||
| 16456 | |||
| 16457 | CVE_STATUS[CVE-2025-38548] = "fixed-version: Fixed from version 6.16" | ||
| 16458 | |||
| 16459 | CVE_STATUS[CVE-2025-38549] = "fixed-version: Fixed from version 6.16" | ||
| 16460 | |||
| 16461 | CVE_STATUS[CVE-2025-38550] = "fixed-version: Fixed from version 6.16" | ||
| 16462 | |||
| 16463 | CVE_STATUS[CVE-2025-38551] = "fixed-version: Fixed from version 6.16" | ||
| 16464 | |||
| 16465 | CVE_STATUS[CVE-2025-38552] = "fixed-version: Fixed from version 6.16" | ||
| 16466 | |||
| 16467 | CVE_STATUS[CVE-2025-38553] = "fixed-version: Fixed from version 6.17" | ||
| 16468 | |||
| 16469 | CVE_STATUS[CVE-2025-38554] = "fixed-version: Fixed from version 6.17" | ||
| 16470 | |||
| 16471 | CVE_STATUS[CVE-2025-38555] = "fixed-version: Fixed from version 6.17" | ||
| 16472 | |||
| 16473 | CVE_STATUS[CVE-2025-38556] = "fixed-version: Fixed from version 6.17" | ||
| 16474 | |||
| 16475 | CVE_STATUS[CVE-2025-38557] = "fixed-version: Fixed from version 6.17" | ||
| 16476 | |||
| 16477 | CVE_STATUS[CVE-2025-38558] = "fixed-version: Fixed from version 6.17" | ||
| 16478 | |||
| 16479 | CVE_STATUS[CVE-2025-38559] = "fixed-version: Fixed from version 6.17" | ||
| 16480 | |||
| 16481 | CVE_STATUS[CVE-2025-38560] = "fixed-version: Fixed from version 6.17" | ||
| 16482 | |||
| 16483 | CVE_STATUS[CVE-2025-38561] = "fixed-version: Fixed from version 6.17" | ||
| 16484 | |||
| 16485 | CVE_STATUS[CVE-2025-38562] = "fixed-version: Fixed from version 6.17" | ||
| 16486 | |||
| 16487 | CVE_STATUS[CVE-2025-38563] = "fixed-version: Fixed from version 6.17" | ||
| 16488 | |||
| 16489 | CVE_STATUS[CVE-2025-38564] = "fixed-version: Fixed from version 6.17" | ||
| 16490 | |||
| 16491 | CVE_STATUS[CVE-2025-38565] = "fixed-version: Fixed from version 6.17" | ||
| 16492 | |||
| 16493 | CVE_STATUS[CVE-2025-38566] = "fixed-version: Fixed from version 6.17" | ||
| 16494 | |||
| 16495 | CVE_STATUS[CVE-2025-38567] = "fixed-version: Fixed from version 6.17" | ||
| 16496 | |||
| 16497 | CVE_STATUS[CVE-2025-38568] = "fixed-version: Fixed from version 6.17" | ||
| 16498 | |||
| 16499 | CVE_STATUS[CVE-2025-38569] = "fixed-version: Fixed from version 6.17" | ||
| 16500 | |||
| 16501 | CVE_STATUS[CVE-2025-38570] = "fixed-version: Fixed from version 6.17" | ||
| 16502 | |||
| 16503 | CVE_STATUS[CVE-2025-38571] = "fixed-version: Fixed from version 6.17" | ||
| 16504 | |||
| 16505 | CVE_STATUS[CVE-2025-38572] = "fixed-version: Fixed from version 6.17" | ||
| 16506 | |||
| 16507 | CVE_STATUS[CVE-2025-38573] = "fixed-version: Fixed from version 6.17" | ||
| 16508 | |||
| 16509 | CVE_STATUS[CVE-2025-38574] = "fixed-version: Fixed from version 6.17" | ||
| 16510 | |||
| 16511 | CVE_STATUS[CVE-2025-38575] = "fixed-version: Fixed from version 6.15" | ||
| 16512 | |||
| 16513 | CVE_STATUS[CVE-2025-38576] = "fixed-version: Fixed from version 6.17" | ||
| 16514 | |||
| 16515 | CVE_STATUS[CVE-2025-38577] = "fixed-version: Fixed from version 6.17" | ||
| 16516 | |||
| 16517 | CVE_STATUS[CVE-2025-38578] = "fixed-version: Fixed from version 6.17" | ||
| 16518 | |||
| 16519 | CVE_STATUS[CVE-2025-38579] = "fixed-version: Fixed from version 6.17" | ||
| 16520 | |||
| 16521 | CVE_STATUS[CVE-2025-38580] = "fixed-version: Fixed from version 6.17" | ||
| 16522 | |||
| 16523 | CVE_STATUS[CVE-2025-38581] = "fixed-version: Fixed from version 6.17" | ||
| 16524 | |||
| 16525 | CVE_STATUS[CVE-2025-38582] = "fixed-version: Fixed from version 6.17" | ||
| 16526 | |||
| 16527 | CVE_STATUS[CVE-2025-38583] = "fixed-version: Fixed from version 6.17" | ||
| 16528 | |||
| 16529 | CVE_STATUS[CVE-2025-38584] = "fixed-version: Fixed from version 6.17" | ||
| 16530 | |||
| 16531 | CVE_STATUS[CVE-2025-38585] = "fixed-version: Fixed from version 6.17" | ||
| 16532 | |||
| 16533 | CVE_STATUS[CVE-2025-38586] = "fixed-version: Fixed from version 6.17" | ||
| 16534 | |||
| 16535 | CVE_STATUS[CVE-2025-38587] = "fixed-version: Fixed from version 6.17" | ||
| 16536 | |||
| 16537 | CVE_STATUS[CVE-2025-38588] = "fixed-version: Fixed from version 6.17" | ||
| 16538 | |||
| 16539 | CVE_STATUS[CVE-2025-38589] = "fixed-version: Fixed from version 6.17" | ||
| 16540 | |||
| 16541 | CVE_STATUS[CVE-2025-38590] = "fixed-version: Fixed from version 6.17" | ||
| 16542 | |||
| 16543 | CVE_STATUS[CVE-2025-38591] = "fixed-version: Fixed from version 6.17" | ||
| 16544 | |||
| 16545 | CVE_STATUS[CVE-2025-38592] = "fixed-version: Fixed from version 6.17" | ||
| 16546 | |||
| 16547 | CVE_STATUS[CVE-2025-38593] = "fixed-version: Fixed from version 6.17" | ||
| 16548 | |||
| 16549 | CVE_STATUS[CVE-2025-38594] = "fixed-version: Fixed from version 6.17" | ||
| 16550 | |||
| 16551 | CVE_STATUS[CVE-2025-38595] = "fixed-version: Fixed from version 6.17" | ||
| 16552 | |||
| 16553 | CVE_STATUS[CVE-2025-38596] = "fixed-version: Fixed from version 6.17" | ||
| 16554 | |||
| 16555 | CVE_STATUS[CVE-2025-38597] = "fixed-version: Fixed from version 6.17" | ||
| 16556 | |||
| 16557 | CVE_STATUS[CVE-2025-38598] = "fixed-version: Fixed from version 6.17" | ||
| 16558 | |||
| 16559 | CVE_STATUS[CVE-2025-38599] = "fixed-version: Fixed from version 6.17" | ||
| 16560 | |||
| 16561 | CVE_STATUS[CVE-2025-38600] = "fixed-version: Fixed from version 6.17" | ||
| 16562 | |||
| 16563 | CVE_STATUS[CVE-2025-38601] = "fixed-version: Fixed from version 6.17" | ||
| 16564 | |||
| 16565 | CVE_STATUS[CVE-2025-38602] = "fixed-version: Fixed from version 6.17" | ||
| 16566 | |||
| 16567 | CVE_STATUS[CVE-2025-38604] = "fixed-version: Fixed from version 6.17" | ||
| 16568 | |||
| 16569 | CVE_STATUS[CVE-2025-38605] = "fixed-version: Fixed from version 6.17" | ||
| 16570 | |||
| 16571 | CVE_STATUS[CVE-2025-38606] = "fixed-version: Fixed from version 6.17" | ||
| 16572 | |||
| 16573 | CVE_STATUS[CVE-2025-38607] = "fixed-version: Fixed from version 6.17" | ||
| 16574 | |||
| 16575 | CVE_STATUS[CVE-2025-38608] = "fixed-version: Fixed from version 6.17" | ||
| 16576 | |||
| 16577 | CVE_STATUS[CVE-2025-38609] = "fixed-version: Fixed from version 6.17" | ||
| 16578 | |||
| 16579 | CVE_STATUS[CVE-2025-38610] = "fixed-version: Fixed from version 6.17" | ||
| 16580 | |||
| 16581 | CVE_STATUS[CVE-2025-38612] = "fixed-version: Fixed from version 6.17" | ||
| 16582 | |||
| 16583 | CVE_STATUS[CVE-2025-38613] = "fixed-version: Fixed from version 6.17" | ||
| 16584 | |||
| 16585 | CVE_STATUS[CVE-2025-38614] = "fixed-version: Fixed from version 6.17" | ||
| 16586 | |||
| 16587 | CVE_STATUS[CVE-2025-38615] = "fixed-version: Fixed from version 6.17" | ||
| 16588 | |||
| 16589 | CVE_STATUS[CVE-2025-38616] = "fixed-version: Fixed from version 6.17" | ||
| 16590 | |||
| 16591 | CVE_STATUS[CVE-2025-38617] = "fixed-version: Fixed from version 6.17" | ||
| 16592 | |||
| 16593 | CVE_STATUS[CVE-2025-38618] = "fixed-version: Fixed from version 6.17" | ||
| 16594 | |||
| 16595 | CVE_STATUS[CVE-2025-38619] = "fixed-version: Fixed from version 6.17" | ||
| 16596 | |||
| 16597 | CVE_STATUS[CVE-2025-38620] = "fixed-version: Fixed from version 6.17" | ||
| 16598 | |||
| 16599 | CVE_STATUS[CVE-2025-38621] = "fixed-version: Fixed from version 6.17" | ||
| 16600 | |||
| 16601 | CVE_STATUS[CVE-2025-38622] = "fixed-version: Fixed from version 6.17" | ||
| 16602 | |||
| 16603 | CVE_STATUS[CVE-2025-38623] = "fixed-version: Fixed from version 6.17" | ||
| 16604 | |||
| 16605 | CVE_STATUS[CVE-2025-38624] = "fixed-version: Fixed from version 6.17" | ||
| 16606 | |||
| 16607 | CVE_STATUS[CVE-2025-38625] = "fixed-version: Fixed from version 6.17" | ||
| 16608 | |||
| 16609 | CVE_STATUS[CVE-2025-38626] = "fixed-version: Fixed from version 6.17" | ||
| 16610 | |||
| 16611 | CVE_STATUS[CVE-2025-38627] = "fixed-version: Fixed from version 6.17" | ||
| 16612 | |||
| 16613 | CVE_STATUS[CVE-2025-38628] = "fixed-version: Fixed from version 6.17" | ||
| 16614 | |||
| 16615 | CVE_STATUS[CVE-2025-38629] = "fixed-version: Fixed from version 6.17" | ||
| 16616 | |||
| 16617 | CVE_STATUS[CVE-2025-38630] = "fixed-version: Fixed from version 6.17" | ||
| 16618 | |||
| 16619 | CVE_STATUS[CVE-2025-38631] = "fixed-version: Fixed from version 6.17" | ||
| 16620 | |||
| 16621 | CVE_STATUS[CVE-2025-38632] = "fixed-version: Fixed from version 6.17" | ||
| 16622 | |||
| 16623 | CVE_STATUS[CVE-2025-38633] = "fixed-version: Fixed from version 6.17" | ||
| 16624 | |||
| 16625 | CVE_STATUS[CVE-2025-38634] = "fixed-version: Fixed from version 6.17" | ||
| 16626 | |||
| 16627 | CVE_STATUS[CVE-2025-38635] = "fixed-version: Fixed from version 6.17" | ||
| 16628 | |||
| 16629 | CVE_STATUS[CVE-2025-38636] = "fixed-version: Fixed from version 6.17" | ||
| 16630 | |||
| 16631 | CVE_STATUS[CVE-2025-38637] = "fixed-version: Fixed from version 6.15" | ||
| 16632 | |||
| 16633 | CVE_STATUS[CVE-2025-38638] = "fixed-version: Fixed from version 6.17" | ||
| 16634 | |||
| 16635 | CVE_STATUS[CVE-2025-38639] = "fixed-version: Fixed from version 6.17" | ||
| 16636 | |||
| 16637 | CVE_STATUS[CVE-2025-38640] = "fixed-version: Fixed from version 6.17" | ||
| 16638 | |||
| 16639 | CVE_STATUS[CVE-2025-38641] = "fixed-version: Fixed from version 6.17" | ||
| 16640 | |||
| 16641 | CVE_STATUS[CVE-2025-38642] = "fixed-version: Fixed from version 6.17" | ||
| 16642 | |||
| 16643 | CVE_STATUS[CVE-2025-38643] = "fixed-version: Fixed from version 6.17" | ||
| 16644 | |||
| 16645 | CVE_STATUS[CVE-2025-38644] = "fixed-version: Fixed from version 6.17" | ||
| 16646 | |||
| 16647 | CVE_STATUS[CVE-2025-38645] = "fixed-version: Fixed from version 6.17" | ||
| 16648 | |||
| 16649 | CVE_STATUS[CVE-2025-38646] = "fixed-version: Fixed from version 6.17" | ||
| 16650 | |||
| 16651 | CVE_STATUS[CVE-2025-38647] = "fixed-version: Fixed from version 6.17" | ||
| 16652 | |||
| 16653 | CVE_STATUS[CVE-2025-38648] = "fixed-version: Fixed from version 6.17" | ||
| 16654 | |||
| 16655 | CVE_STATUS[CVE-2025-38649] = "fixed-version: Fixed from version 6.17" | ||
| 16656 | |||
| 16657 | CVE_STATUS[CVE-2025-38650] = "fixed-version: Fixed from version 6.17" | ||
| 16658 | |||
| 16659 | CVE_STATUS[CVE-2025-38651] = "fixed-version: Fixed from version 6.17" | ||
| 16660 | |||
| 16661 | CVE_STATUS[CVE-2025-38652] = "fixed-version: Fixed from version 6.17" | ||
| 16662 | |||
| 16663 | CVE_STATUS[CVE-2025-38653] = "fixed-version: Fixed from version 6.17" | ||
| 16664 | |||
| 16665 | CVE_STATUS[CVE-2025-38654] = "fixed-version: Fixed from version 6.17" | ||
| 16666 | |||
| 16667 | CVE_STATUS[CVE-2025-38655] = "fixed-version: Fixed from version 6.17" | ||
| 16668 | |||
| 16669 | # CVE-2025-38656 has no known resolution | ||
| 16670 | |||
| 16671 | CVE_STATUS[CVE-2025-38657] = "fixed-version: Fixed from version 6.17" | ||
| 16672 | |||
| 16673 | CVE_STATUS[CVE-2025-38658] = "fixed-version: Fixed from version 6.17" | ||
| 16674 | |||
| 16675 | CVE_STATUS[CVE-2025-38659] = "fixed-version: Fixed from version 6.17" | ||
| 16676 | |||
| 16677 | CVE_STATUS[CVE-2025-38660] = "fixed-version: Fixed from version 6.17" | ||
| 16678 | |||
| 16679 | CVE_STATUS[CVE-2025-38661] = "fixed-version: Fixed from version 6.16" | ||
| 16680 | |||
| 16681 | CVE_STATUS[CVE-2025-38662] = "fixed-version: Fixed from version 6.16" | ||
| 16682 | |||
| 16683 | CVE_STATUS[CVE-2025-38663] = "fixed-version: Fixed from version 6.16" | ||
| 16684 | |||
| 16685 | CVE_STATUS[CVE-2025-38664] = "fixed-version: Fixed from version 6.16" | ||
| 16686 | |||
| 16687 | CVE_STATUS[CVE-2025-38665] = "fixed-version: Fixed from version 6.16" | ||
| 16688 | |||
| 16689 | CVE_STATUS[CVE-2025-38666] = "fixed-version: Fixed from version 6.16" | ||
| 16690 | |||
| 16691 | CVE_STATUS[CVE-2025-38667] = "fixed-version: Fixed from version 6.16" | ||
| 16692 | |||
| 16693 | CVE_STATUS[CVE-2025-38668] = "fixed-version: Fixed from version 6.16" | ||
| 16694 | |||
| 16695 | CVE_STATUS[CVE-2025-38669] = "fixed-version: Fixed from version 6.16" | ||
| 16696 | |||
| 16697 | CVE_STATUS[CVE-2025-38670] = "fixed-version: Fixed from version 6.16" | ||
| 16698 | |||
| 16699 | CVE_STATUS[CVE-2025-38671] = "fixed-version: Fixed from version 6.16" | ||
| 16700 | |||
| 16701 | CVE_STATUS[CVE-2025-38672] = "fixed-version: Fixed from version 6.16" | ||
| 16702 | |||
| 16703 | CVE_STATUS[CVE-2025-38673] = "fixed-version: Fixed from version 6.16" | ||
| 16704 | |||
| 16705 | CVE_STATUS[CVE-2025-38674] = "fixed-version: Fixed from version 6.16" | ||
| 16706 | |||
| 16707 | CVE_STATUS[CVE-2025-38675] = "fixed-version: Fixed from version 6.16" | ||
| 16708 | |||
| 16709 | CVE_STATUS[CVE-2025-38676] = "fixed-version: Fixed from version 6.17" | ||
| 16710 | |||
| 16711 | CVE_STATUS[CVE-2025-38677] = "fixed-version: Fixed from version 6.17" | ||
| 16712 | |||
| 16713 | CVE_STATUS[CVE-2025-38678] = "fixed-version: Fixed from version 6.17" | ||
| 16714 | |||
| 16715 | CVE_STATUS[CVE-2025-38679] = "fixed-version: Fixed from version 6.17" | ||
| 16716 | |||
| 16717 | CVE_STATUS[CVE-2025-38680] = "fixed-version: Fixed from version 6.17" | ||
| 16718 | |||
| 16719 | CVE_STATUS[CVE-2025-38681] = "fixed-version: Fixed from version 6.17" | ||
| 16720 | |||
| 16721 | CVE_STATUS[CVE-2025-38682] = "fixed-version: Fixed from version 6.17" | ||
| 16722 | |||
| 16723 | CVE_STATUS[CVE-2025-38683] = "fixed-version: Fixed from version 6.17" | ||
| 16724 | |||
| 16725 | CVE_STATUS[CVE-2025-38684] = "fixed-version: Fixed from version 6.17" | ||
| 16726 | |||
| 16727 | CVE_STATUS[CVE-2025-38685] = "fixed-version: Fixed from version 6.17" | ||
| 16728 | |||
| 16729 | CVE_STATUS[CVE-2025-38686] = "fixed-version: Fixed from version 6.17" | ||
| 16730 | |||
| 16731 | CVE_STATUS[CVE-2025-38687] = "fixed-version: Fixed from version 6.17" | ||
| 16732 | |||
| 16733 | CVE_STATUS[CVE-2025-38688] = "fixed-version: Fixed from version 6.17" | ||
| 16734 | |||
| 16735 | CVE_STATUS[CVE-2025-38689] = "fixed-version: Fixed from version 6.17" | ||
| 16736 | |||
| 16737 | CVE_STATUS[CVE-2025-38690] = "fixed-version: Fixed from version 6.17" | ||
| 16738 | |||
| 16739 | CVE_STATUS[CVE-2025-38691] = "fixed-version: Fixed from version 6.17" | ||
| 16740 | |||
| 16741 | CVE_STATUS[CVE-2025-38692] = "fixed-version: Fixed from version 6.17" | ||
| 16742 | |||
| 16743 | CVE_STATUS[CVE-2025-38693] = "fixed-version: Fixed from version 6.17" | ||
| 16744 | |||
| 16745 | CVE_STATUS[CVE-2025-38694] = "fixed-version: Fixed from version 6.17" | ||
| 16746 | |||
| 16747 | CVE_STATUS[CVE-2025-38695] = "fixed-version: Fixed from version 6.17" | ||
| 16748 | |||
| 16749 | CVE_STATUS[CVE-2025-38696] = "fixed-version: Fixed from version 6.17" | ||
| 16750 | |||
| 16751 | CVE_STATUS[CVE-2025-38697] = "fixed-version: Fixed from version 6.17" | ||
| 16752 | |||
| 16753 | CVE_STATUS[CVE-2025-38698] = "fixed-version: Fixed from version 6.17" | ||
| 16754 | |||
| 16755 | CVE_STATUS[CVE-2025-38699] = "fixed-version: Fixed from version 6.17" | ||
| 16756 | |||
| 16757 | CVE_STATUS[CVE-2025-38700] = "fixed-version: Fixed from version 6.17" | ||
| 16758 | |||
| 16759 | CVE_STATUS[CVE-2025-38701] = "fixed-version: Fixed from version 6.17" | ||
| 16760 | |||
| 16761 | CVE_STATUS[CVE-2025-38702] = "fixed-version: Fixed from version 6.17" | ||
| 16762 | |||
| 16763 | CVE_STATUS[CVE-2025-38703] = "fixed-version: Fixed from version 6.17" | ||
| 16764 | |||
| 16765 | CVE_STATUS[CVE-2025-38704] = "fixed-version: Fixed from version 6.17" | ||
| 16766 | |||
| 16767 | CVE_STATUS[CVE-2025-38705] = "fixed-version: Fixed from version 6.17" | ||
| 16768 | |||
| 16769 | CVE_STATUS[CVE-2025-38706] = "fixed-version: Fixed from version 6.17" | ||
| 16770 | |||
| 16771 | CVE_STATUS[CVE-2025-38707] = "fixed-version: Fixed from version 6.17" | ||
| 16772 | |||
| 16773 | CVE_STATUS[CVE-2025-38708] = "fixed-version: Fixed from version 6.17" | ||
| 16774 | |||
| 16775 | CVE_STATUS[CVE-2025-38709] = "fixed-version: Fixed from version 6.17" | ||
| 16776 | |||
| 16777 | CVE_STATUS[CVE-2025-38710] = "fixed-version: Fixed from version 6.17" | ||
| 16778 | |||
| 16779 | CVE_STATUS[CVE-2025-38711] = "fixed-version: Fixed from version 6.17" | ||
| 16780 | |||
| 16781 | CVE_STATUS[CVE-2025-38712] = "fixed-version: Fixed from version 6.17" | ||
| 16782 | |||
| 16783 | CVE_STATUS[CVE-2025-38713] = "fixed-version: Fixed from version 6.17" | ||
| 16784 | |||
| 16785 | CVE_STATUS[CVE-2025-38714] = "fixed-version: Fixed from version 6.17" | ||
| 16786 | |||
| 16787 | CVE_STATUS[CVE-2025-38715] = "fixed-version: Fixed from version 6.17" | ||
| 16788 | |||
| 16789 | CVE_STATUS[CVE-2025-38716] = "fixed-version: Fixed from version 6.17" | ||
| 16790 | |||
| 16791 | CVE_STATUS[CVE-2025-38717] = "fixed-version: Fixed from version 6.17" | ||
| 16792 | |||
| 16793 | CVE_STATUS[CVE-2025-38718] = "fixed-version: Fixed from version 6.17" | ||
| 16794 | |||
| 16795 | CVE_STATUS[CVE-2025-38719] = "fixed-version: Fixed from version 6.17" | ||
| 16796 | |||
| 16797 | CVE_STATUS[CVE-2025-38720] = "fixed-version: Fixed from version 6.17" | ||
| 16798 | |||
| 16799 | CVE_STATUS[CVE-2025-38721] = "fixed-version: Fixed from version 6.17" | ||
| 16800 | |||
| 16801 | CVE_STATUS[CVE-2025-38722] = "fixed-version: Fixed from version 6.17" | ||
| 16802 | |||
| 16803 | CVE_STATUS[CVE-2025-38723] = "fixed-version: Fixed from version 6.17" | ||
| 16804 | |||
| 16805 | CVE_STATUS[CVE-2025-38724] = "fixed-version: Fixed from version 6.17" | ||
| 16806 | |||
| 16807 | CVE_STATUS[CVE-2025-38725] = "fixed-version: Fixed from version 6.17" | ||
| 16808 | |||
| 16809 | CVE_STATUS[CVE-2025-38726] = "fixed-version: Fixed from version 6.17" | ||
| 16810 | |||
| 16811 | CVE_STATUS[CVE-2025-38727] = "fixed-version: Fixed from version 6.17" | ||
| 16812 | |||
| 16813 | CVE_STATUS[CVE-2025-38728] = "fixed-version: Fixed from version 6.17" | ||
| 16814 | |||
| 16815 | CVE_STATUS[CVE-2025-38729] = "fixed-version: Fixed from version 6.17" | ||
| 16816 | |||
| 16817 | CVE_STATUS[CVE-2025-38730] = "fixed-version: Fixed from version 6.17" | ||
| 16818 | |||
| 16819 | CVE_STATUS[CVE-2025-38731] = "fixed-version: Fixed from version 6.17" | ||
| 16820 | |||
| 16821 | CVE_STATUS[CVE-2025-38732] = "fixed-version: Fixed from version 6.17" | ||
| 16822 | |||
| 16823 | CVE_STATUS[CVE-2025-38733] = "fixed-version: Fixed from version 6.17" | ||
| 16824 | |||
| 16825 | CVE_STATUS[CVE-2025-38734] = "fixed-version: Fixed from version 6.17" | ||
| 16826 | |||
| 16827 | CVE_STATUS[CVE-2025-38735] = "fixed-version: Fixed from version 6.17" | ||
| 16828 | |||
| 16829 | CVE_STATUS[CVE-2025-38736] = "fixed-version: Fixed from version 6.16.4" | ||
| 16830 | |||
| 16831 | CVE_STATUS[CVE-2025-38737] = "fixed-version: Fixed from version 6.17" | ||
| 16832 | |||
| 16833 | CVE_STATUS[CVE-2025-39673] = "fixed-version: Fixed from version 6.17" | ||
| 16834 | |||
| 16835 | CVE_STATUS[CVE-2025-39674] = "fixed-version: Fixed from version 6.17" | ||
| 16836 | |||
| 16837 | CVE_STATUS[CVE-2025-39675] = "fixed-version: Fixed from version 6.17" | ||
| 16838 | |||
| 16839 | CVE_STATUS[CVE-2025-39676] = "fixed-version: Fixed from version 6.17" | ||
| 16840 | |||
| 16841 | CVE_STATUS[CVE-2025-39677] = "fixed-version: Fixed from version 6.17" | ||
| 16842 | |||
| 16843 | CVE_STATUS[CVE-2025-39678] = "fixed-version: Fixed from version 6.17" | ||
| 16844 | |||
| 16845 | CVE_STATUS[CVE-2025-39679] = "fixed-version: Fixed from version 6.17" | ||
| 16846 | |||
| 16847 | CVE_STATUS[CVE-2025-39680] = "fixed-version: Fixed from version 6.17" | ||
| 16848 | |||
| 16849 | CVE_STATUS[CVE-2025-39681] = "fixed-version: Fixed from version 6.17" | ||
| 16850 | |||
| 16851 | CVE_STATUS[CVE-2025-39682] = "fixed-version: Fixed from version 6.17" | ||
| 16852 | |||
| 16853 | CVE_STATUS[CVE-2025-39683] = "fixed-version: Fixed from version 6.17" | ||
| 16854 | |||
| 16855 | CVE_STATUS[CVE-2025-39684] = "fixed-version: Fixed from version 6.17" | ||
| 16856 | |||
| 16857 | CVE_STATUS[CVE-2025-39685] = "fixed-version: Fixed from version 6.17" | ||
| 16858 | |||
| 16859 | CVE_STATUS[CVE-2025-39686] = "fixed-version: Fixed from version 6.17" | ||
| 16860 | |||
| 16861 | CVE_STATUS[CVE-2025-39687] = "fixed-version: Fixed from version 6.17" | ||
| 16862 | |||
| 16863 | CVE_STATUS[CVE-2025-39688] = "fixed-version: Fixed from version 6.15" | ||
| 16864 | |||
| 16865 | CVE_STATUS[CVE-2025-39689] = "fixed-version: Fixed from version 6.17" | ||
| 16866 | |||
| 16867 | CVE_STATUS[CVE-2025-39690] = "fixed-version: Fixed from version 6.17" | ||
| 16868 | |||
| 16869 | CVE_STATUS[CVE-2025-39691] = "fixed-version: Fixed from version 6.17" | ||
| 16870 | |||
| 16871 | CVE_STATUS[CVE-2025-39692] = "fixed-version: Fixed from version 6.17" | ||
| 16872 | |||
| 16873 | CVE_STATUS[CVE-2025-39693] = "fixed-version: Fixed from version 6.17" | ||
| 16874 | |||
| 16875 | CVE_STATUS[CVE-2025-39694] = "fixed-version: Fixed from version 6.17" | ||
| 16876 | |||
| 16877 | CVE_STATUS[CVE-2025-39695] = "fixed-version: Fixed from version 6.17" | ||
| 16878 | |||
| 16879 | CVE_STATUS[CVE-2025-39696] = "fixed-version: Fixed from version 6.17" | ||
| 16880 | |||
| 16881 | CVE_STATUS[CVE-2025-39697] = "fixed-version: Fixed from version 6.17" | ||
| 16882 | |||
| 16883 | CVE_STATUS[CVE-2025-39698] = "fixed-version: Fixed from version 6.17" | ||
| 16884 | |||
| 16885 | CVE_STATUS[CVE-2025-39699] = "fixed-version: Fixed from version 6.17" | ||
| 16886 | |||
| 16887 | CVE_STATUS[CVE-2025-39700] = "fixed-version: Fixed from version 6.17" | ||
| 16888 | |||
| 16889 | CVE_STATUS[CVE-2025-39701] = "fixed-version: Fixed from version 6.17" | ||
| 16890 | |||
| 16891 | CVE_STATUS[CVE-2025-39702] = "fixed-version: Fixed from version 6.17" | ||
| 16892 | |||
| 16893 | CVE_STATUS[CVE-2025-39703] = "fixed-version: Fixed from version 6.17" | ||
| 16894 | |||
| 16895 | CVE_STATUS[CVE-2025-39704] = "fixed-version: Fixed from version 6.17" | ||
| 16896 | |||
| 16897 | CVE_STATUS[CVE-2025-39705] = "fixed-version: Fixed from version 6.17" | ||
| 16898 | |||
| 16899 | CVE_STATUS[CVE-2025-39706] = "fixed-version: Fixed from version 6.17" | ||
| 16900 | |||
| 16901 | CVE_STATUS[CVE-2025-39707] = "fixed-version: Fixed from version 6.17" | ||
| 16902 | |||
| 16903 | CVE_STATUS[CVE-2025-39708] = "fixed-version: Fixed from version 6.17" | ||
| 16904 | |||
| 16905 | CVE_STATUS[CVE-2025-39709] = "fixed-version: Fixed from version 6.17" | ||
| 16906 | |||
| 16907 | CVE_STATUS[CVE-2025-39710] = "fixed-version: Fixed from version 6.17" | ||
| 16908 | |||
| 16909 | CVE_STATUS[CVE-2025-39711] = "fixed-version: Fixed from version 6.17" | ||
| 16910 | |||
| 16911 | CVE_STATUS[CVE-2025-39712] = "fixed-version: Fixed from version 6.17" | ||
| 16912 | |||
| 16913 | CVE_STATUS[CVE-2025-39713] = "fixed-version: Fixed from version 6.17" | ||
| 16914 | |||
| 16915 | CVE_STATUS[CVE-2025-39714] = "fixed-version: Fixed from version 6.17" | ||
| 16916 | |||
| 16917 | CVE_STATUS[CVE-2025-39715] = "fixed-version: Fixed from version 6.17" | ||
| 16918 | |||
| 16919 | CVE_STATUS[CVE-2025-39716] = "fixed-version: Fixed from version 6.17" | ||
| 16920 | |||
| 16921 | CVE_STATUS[CVE-2025-39717] = "fixed-version: Fixed from version 6.17" | ||
| 16922 | |||
| 16923 | CVE_STATUS[CVE-2025-39718] = "fixed-version: Fixed from version 6.17" | ||
| 16924 | |||
| 16925 | CVE_STATUS[CVE-2025-39719] = "fixed-version: Fixed from version 6.17" | ||
| 16926 | |||
| 16927 | CVE_STATUS[CVE-2025-39720] = "fixed-version: Fixed from version 6.17" | ||
| 16928 | |||
| 16929 | CVE_STATUS[CVE-2025-39721] = "fixed-version: Fixed from version 6.17" | ||
| 16930 | |||
| 16931 | CVE_STATUS[CVE-2025-39722] = "fixed-version: Fixed from version 6.17" | ||
| 16932 | |||
| 16933 | CVE_STATUS[CVE-2025-39723] = "fixed-version: Fixed from version 6.17" | ||
| 16934 | |||
| 16935 | CVE_STATUS[CVE-2025-39724] = "fixed-version: Fixed from version 6.17" | ||
| 16936 | |||
| 16937 | CVE_STATUS[CVE-2025-39725] = "fixed-version: Fixed from version 6.16" | ||
| 16938 | |||
| 16939 | CVE_STATUS[CVE-2025-39726] = "fixed-version: Fixed from version 6.16" | ||
| 16940 | |||
| 16941 | CVE_STATUS[CVE-2025-39727] = "fixed-version: Fixed from version 6.17" | ||
| 16942 | |||
| 16943 | CVE_STATUS[CVE-2025-39728] = "fixed-version: Fixed from version 6.15" | ||
| 16944 | |||
| 16945 | CVE_STATUS[CVE-2025-39729] = "fixed-version: Fixed from version 6.17" | ||
| 16946 | |||
| 16947 | CVE_STATUS[CVE-2025-39730] = "fixed-version: Fixed from version 6.17" | ||
| 16948 | |||
| 16949 | CVE_STATUS[CVE-2025-39731] = "fixed-version: Fixed from version 6.17" | ||
| 16950 | |||
| 16951 | CVE_STATUS[CVE-2025-39732] = "fixed-version: Fixed from version 6.17" | ||
| 16952 | |||
| 16953 | CVE_STATUS[CVE-2025-39733] = "fixed-version: Fixed from version 6.17" | ||
| 16954 | |||
| 16955 | CVE_STATUS[CVE-2025-39734] = "fixed-version: Fixed from version 6.17" | ||
| 16956 | |||
| 16957 | CVE_STATUS[CVE-2025-39735] = "fixed-version: Fixed from version 6.15" | ||
| 16958 | |||
| 16959 | CVE_STATUS[CVE-2025-39736] = "fixed-version: Fixed from version 6.17" | ||
| 16960 | |||
| 16961 | CVE_STATUS[CVE-2025-39737] = "fixed-version: Fixed from version 6.17" | ||
| 16962 | |||
| 16963 | CVE_STATUS[CVE-2025-39738] = "fixed-version: Fixed from version 6.17" | ||
| 16964 | |||
| 16965 | CVE_STATUS[CVE-2025-39739] = "fixed-version: Fixed from version 6.17" | ||
| 16966 | |||
| 16967 | CVE_STATUS[CVE-2025-39740] = "fixed-version: Fixed from version 6.17" | ||
| 16968 | |||
| 16969 | CVE_STATUS[CVE-2025-39741] = "fixed-version: Fixed from version 6.17" | ||
| 16970 | |||
| 16971 | CVE_STATUS[CVE-2025-39742] = "fixed-version: Fixed from version 6.17" | ||
| 16972 | |||
| 16973 | CVE_STATUS[CVE-2025-39743] = "fixed-version: Fixed from version 6.17" | ||
| 16974 | |||
| 16975 | CVE_STATUS[CVE-2025-39744] = "fixed-version: Fixed from version 6.17" | ||
| 16976 | |||
| 16977 | CVE_STATUS[CVE-2025-39745] = "fixed-version: Fixed from version 6.17" | ||
| 16978 | |||
| 16979 | CVE_STATUS[CVE-2025-39746] = "fixed-version: Fixed from version 6.17" | ||
| 16980 | |||
| 16981 | CVE_STATUS[CVE-2025-39747] = "fixed-version: Fixed from version 6.17" | ||
| 16982 | |||
| 16983 | CVE_STATUS[CVE-2025-39748] = "fixed-version: Fixed from version 6.17" | ||
| 16984 | |||
| 16985 | CVE_STATUS[CVE-2025-39749] = "fixed-version: Fixed from version 6.17" | ||
| 16986 | |||
| 16987 | CVE_STATUS[CVE-2025-39750] = "fixed-version: Fixed from version 6.17" | ||
| 16988 | |||
| 16989 | CVE_STATUS[CVE-2025-39752] = "fixed-version: Fixed from version 6.17" | ||
| 16990 | |||
| 16991 | CVE_STATUS[CVE-2025-39753] = "fixed-version: Fixed from version 6.17" | ||
| 16992 | |||
| 16993 | CVE_STATUS[CVE-2025-39754] = "fixed-version: Fixed from version 6.17" | ||
| 16994 | |||
| 16995 | CVE_STATUS[CVE-2025-39755] = "fixed-version: Fixed from version 6.15" | ||
| 16996 | |||
| 16997 | CVE_STATUS[CVE-2025-39756] = "fixed-version: Fixed from version 6.17" | ||
| 16998 | |||
| 16999 | CVE_STATUS[CVE-2025-39757] = "fixed-version: Fixed from version 6.17" | ||
| 17000 | |||
| 17001 | CVE_STATUS[CVE-2025-39758] = "fixed-version: Fixed from version 6.17" | ||
| 17002 | |||
| 17003 | CVE_STATUS[CVE-2025-39759] = "fixed-version: Fixed from version 6.17" | ||
| 17004 | |||
| 17005 | CVE_STATUS[CVE-2025-39760] = "fixed-version: Fixed from version 6.17" | ||
| 17006 | |||
| 17007 | CVE_STATUS[CVE-2025-39761] = "fixed-version: Fixed from version 6.17" | ||
| 17008 | |||
| 17009 | CVE_STATUS[CVE-2025-39762] = "fixed-version: Fixed from version 6.17" | ||
| 17010 | |||
| 17011 | CVE_STATUS[CVE-2025-39763] = "fixed-version: Fixed from version 6.17" | ||
| 17012 | |||
| 17013 | CVE_STATUS[CVE-2025-39764] = "fixed-version: Fixed from version 6.17" | ||
| 17014 | |||
| 17015 | CVE_STATUS[CVE-2025-39765] = "fixed-version: Fixed from version 6.17" | ||
| 17016 | |||
| 17017 | CVE_STATUS[CVE-2025-39766] = "fixed-version: Fixed from version 6.17" | ||
| 17018 | |||
| 17019 | CVE_STATUS[CVE-2025-39767] = "fixed-version: Fixed from version 6.17" | ||
| 17020 | |||
| 17021 | CVE_STATUS[CVE-2025-39768] = "fixed-version: Fixed from version 6.17" | ||
| 17022 | |||
| 17023 | CVE_STATUS[CVE-2025-39769] = "fixed-version: Fixed from version 6.17" | ||
| 17024 | |||
| 17025 | CVE_STATUS[CVE-2025-39770] = "fixed-version: Fixed from version 6.17" | ||
| 17026 | |||
| 17027 | CVE_STATUS[CVE-2025-39771] = "fixed-version: Fixed from version 6.17" | ||
| 17028 | |||
| 17029 | CVE_STATUS[CVE-2025-39772] = "fixed-version: Fixed from version 6.17" | ||
| 17030 | |||
| 17031 | CVE_STATUS[CVE-2025-39773] = "fixed-version: Fixed from version 6.17" | ||
| 17032 | |||
| 17033 | CVE_STATUS[CVE-2025-39774] = "fixed-version: Fixed from version 6.17" | ||
| 17034 | |||
| 17035 | CVE_STATUS[CVE-2025-39775] = "fixed-version: Fixed from version 6.17" | ||
| 17036 | |||
| 17037 | CVE_STATUS[CVE-2025-39776] = "fixed-version: Fixed from version 6.17" | ||
| 17038 | |||
| 17039 | CVE_STATUS[CVE-2025-39777] = "fixed-version: Fixed from version 6.17" | ||
| 17040 | |||
| 17041 | CVE_STATUS[CVE-2025-39778] = "fixed-version: Fixed from version 6.15" | ||
| 17042 | |||
| 17043 | CVE_STATUS[CVE-2025-39779] = "fixed-version: Fixed from version 6.17" | ||
| 17044 | |||
| 17045 | CVE_STATUS[CVE-2025-39780] = "fixed-version: Fixed from version 6.17" | ||
| 17046 | |||
| 17047 | CVE_STATUS[CVE-2025-39781] = "fixed-version: Fixed from version 6.17" | ||
| 17048 | |||
| 17049 | CVE_STATUS[CVE-2025-39782] = "fixed-version: Fixed from version 6.17" | ||
| 17050 | |||
| 17051 | CVE_STATUS[CVE-2025-39783] = "fixed-version: Fixed from version 6.17" | ||
| 17052 | |||
| 17053 | CVE_STATUS[CVE-2025-39784] = "fixed-version: Fixed from version 6.17" | ||
| 17054 | |||
| 17055 | CVE_STATUS[CVE-2025-39785] = "fixed-version: Fixed from version 6.17" | ||
| 17056 | |||
| 17057 | CVE_STATUS[CVE-2025-39786] = "fixed-version: Fixed from version 6.17" | ||
| 17058 | |||
| 17059 | CVE_STATUS[CVE-2025-39787] = "fixed-version: Fixed from version 6.17" | ||
| 17060 | |||
| 17061 | CVE_STATUS[CVE-2025-39788] = "fixed-version: Fixed from version 6.17" | ||
| 17062 | |||
| 17063 | CVE_STATUS[CVE-2025-39789] = "fixed-version: Fixed from version 6.17" | ||
| 17064 | |||
| 17065 | CVE_STATUS[CVE-2025-39790] = "fixed-version: Fixed from version 6.17" | ||
| 17066 | |||
| 17067 | CVE_STATUS[CVE-2025-39791] = "fixed-version: Fixed from version 6.17" | ||
| 17068 | |||
| 17069 | CVE_STATUS[CVE-2025-39792] = "fixed-version: Fixed from version 6.17" | ||
| 17070 | |||
| 17071 | CVE_STATUS[CVE-2025-39793] = "fixed-version: Fixed from version 6.17" | ||
| 17072 | |||
| 17073 | CVE_STATUS[CVE-2025-39794] = "fixed-version: Fixed from version 6.17" | ||
| 17074 | |||
| 17075 | CVE_STATUS[CVE-2025-39795] = "fixed-version: Fixed from version 6.17" | ||
| 17076 | |||
| 17077 | CVE_STATUS[CVE-2025-39796] = "fixed-version: Fixed from version 6.17" | ||
| 17078 | |||
| 17079 | CVE_STATUS[CVE-2025-39797] = "fixed-version: Fixed from version 6.17" | ||
| 17080 | |||
| 17081 | CVE_STATUS[CVE-2025-39798] = "fixed-version: Fixed from version 6.17" | ||
| 17082 | |||
| 17083 | CVE_STATUS[CVE-2025-39800] = "fixed-version: Fixed from version 6.17" | ||
| 17084 | |||
| 17085 | CVE_STATUS[CVE-2025-39801] = "fixed-version: Fixed from version 6.17" | ||
| 17086 | |||
| 17087 | CVE_STATUS[CVE-2025-39802] = "fixed-version: Fixed from version 6.17" | ||
| 17088 | |||
| 17089 | CVE_STATUS[CVE-2025-39803] = "fixed-version: Fixed from version 6.17" | ||
| 17090 | |||
| 17091 | CVE_STATUS[CVE-2025-39804] = "fixed-version: Fixed from version 6.17" | ||
| 17092 | |||
| 17093 | CVE_STATUS[CVE-2025-39805] = "fixed-version: Fixed from version 6.17" | ||
| 17094 | |||
| 17095 | CVE_STATUS[CVE-2025-39806] = "fixed-version: Fixed from version 6.17" | ||
| 17096 | |||
| 17097 | CVE_STATUS[CVE-2025-39807] = "fixed-version: Fixed from version 6.17" | ||
| 17098 | |||
| 17099 | CVE_STATUS[CVE-2025-39808] = "fixed-version: Fixed from version 6.17" | ||
| 17100 | |||
| 17101 | CVE_STATUS[CVE-2025-39809] = "fixed-version: Fixed from version 6.17" | ||
| 17102 | |||
| 17103 | CVE_STATUS[CVE-2025-39810] = "fixed-version: Fixed from version 6.17" | ||
| 17104 | |||
| 17105 | CVE_STATUS[CVE-2025-39811] = "fixed-version: Fixed from version 6.17" | ||
| 17106 | |||
| 17107 | CVE_STATUS[CVE-2025-39812] = "fixed-version: Fixed from version 6.17" | ||
| 17108 | |||
| 17109 | CVE_STATUS[CVE-2025-39813] = "fixed-version: Fixed from version 6.17" | ||
| 17110 | |||
| 17111 | CVE_STATUS[CVE-2025-39814] = "fixed-version: Fixed from version 6.17" | ||
| 17112 | |||
| 17113 | CVE_STATUS[CVE-2025-39815] = "fixed-version: Fixed from version 6.17" | ||
| 17114 | |||
| 17115 | CVE_STATUS[CVE-2025-39816] = "fixed-version: Fixed from version 6.17" | ||
| 17116 | |||
| 17117 | CVE_STATUS[CVE-2025-39817] = "fixed-version: Fixed from version 6.17" | ||
| 17118 | |||
| 17119 | CVE_STATUS[CVE-2025-39818] = "fixed-version: Fixed from version 6.17" | ||
| 17120 | |||
| 17121 | CVE_STATUS[CVE-2025-39819] = "fixed-version: Fixed from version 6.17" | ||
| 17122 | |||
| 17123 | CVE_STATUS[CVE-2025-39820] = "fixed-version: Fixed from version 6.17" | ||
| 17124 | |||
| 17125 | CVE_STATUS[CVE-2025-39821] = "fixed-version: Fixed from version 6.17" | ||
| 17126 | |||
| 17127 | CVE_STATUS[CVE-2025-39822] = "fixed-version: Fixed from version 6.17" | ||
| 17128 | |||
| 17129 | CVE_STATUS[CVE-2025-39823] = "fixed-version: Fixed from version 6.17" | ||
| 17130 | |||
| 17131 | CVE_STATUS[CVE-2025-39824] = "fixed-version: Fixed from version 6.17" | ||
| 17132 | |||
| 17133 | CVE_STATUS[CVE-2025-39825] = "fixed-version: Fixed from version 6.17" | ||
| 17134 | |||
| 17135 | CVE_STATUS[CVE-2025-39826] = "fixed-version: Fixed from version 6.17" | ||
| 17136 | |||
| 17137 | CVE_STATUS[CVE-2025-39827] = "fixed-version: Fixed from version 6.17" | ||
| 17138 | |||
| 17139 | CVE_STATUS[CVE-2025-39828] = "fixed-version: Fixed from version 6.17" | ||
| 17140 | |||
| 17141 | CVE_STATUS[CVE-2025-39829] = "fixed-version: Fixed from version 6.17" | ||
| 17142 | |||
| 17143 | CVE_STATUS[CVE-2025-39830] = "fixed-version: Fixed from version 6.17" | ||
| 17144 | |||
| 17145 | CVE_STATUS[CVE-2025-39831] = "fixed-version: Fixed from version 6.17" | ||
| 17146 | |||
| 17147 | CVE_STATUS[CVE-2025-39832] = "fixed-version: Fixed from version 6.17" | ||
| 17148 | |||
| 17149 | CVE_STATUS[CVE-2025-39833] = "fixed-version: Fixed from version 6.17" | ||
| 17150 | |||
| 17151 | CVE_STATUS[CVE-2025-39834] = "fixed-version: Fixed from version 6.17" | ||
| 17152 | |||
| 17153 | CVE_STATUS[CVE-2025-39835] = "fixed-version: Fixed from version 6.17" | ||
| 17154 | |||
| 17155 | CVE_STATUS[CVE-2025-39836] = "fixed-version: Fixed from version 6.17" | ||
| 17156 | |||
| 17157 | CVE_STATUS[CVE-2025-39837] = "fixed-version: Fixed from version 6.17" | ||
| 17158 | |||
| 17159 | CVE_STATUS[CVE-2025-39838] = "fixed-version: Fixed from version 6.17" | ||
| 17160 | |||
| 17161 | CVE_STATUS[CVE-2025-39839] = "fixed-version: Fixed from version 6.17" | ||
| 17162 | |||
| 17163 | CVE_STATUS[CVE-2025-39840] = "fixed-version: Fixed from version 6.17" | ||
| 17164 | |||
| 17165 | CVE_STATUS[CVE-2025-39841] = "fixed-version: Fixed from version 6.17" | ||
| 17166 | |||
| 17167 | CVE_STATUS[CVE-2025-39842] = "fixed-version: Fixed from version 6.17" | ||
| 17168 | |||
| 17169 | CVE_STATUS[CVE-2025-39843] = "fixed-version: Fixed from version 6.17" | ||
| 17170 | |||
| 17171 | CVE_STATUS[CVE-2025-39844] = "fixed-version: Fixed from version 6.17" | ||
| 17172 | |||
| 17173 | CVE_STATUS[CVE-2025-39845] = "fixed-version: Fixed from version 6.17" | ||
| 17174 | |||
| 17175 | CVE_STATUS[CVE-2025-39846] = "fixed-version: Fixed from version 6.17" | ||
| 17176 | |||
| 17177 | CVE_STATUS[CVE-2025-39847] = "fixed-version: Fixed from version 6.17" | ||
| 17178 | |||
| 17179 | CVE_STATUS[CVE-2025-39848] = "fixed-version: Fixed from version 6.17" | ||
| 17180 | |||
| 17181 | CVE_STATUS[CVE-2025-39849] = "fixed-version: Fixed from version 6.17" | ||
| 17182 | |||
| 17183 | CVE_STATUS[CVE-2025-39850] = "fixed-version: Fixed from version 6.17" | ||
| 17184 | |||
| 17185 | CVE_STATUS[CVE-2025-39851] = "fixed-version: Fixed from version 6.17" | ||
| 17186 | |||
| 17187 | CVE_STATUS[CVE-2025-39852] = "fixed-version: Fixed from version 6.17" | ||
| 17188 | |||
| 17189 | CVE_STATUS[CVE-2025-39853] = "fixed-version: Fixed from version 6.17" | ||
| 17190 | |||
| 17191 | CVE_STATUS[CVE-2025-39854] = "fixed-version: Fixed from version 6.17" | ||
| 17192 | |||
| 17193 | CVE_STATUS[CVE-2025-39855] = "fixed-version: Fixed from version 6.17" | ||
| 17194 | |||
| 17195 | CVE_STATUS[CVE-2025-39856] = "fixed-version: Fixed from version 6.17" | ||
| 17196 | |||
| 17197 | CVE_STATUS[CVE-2025-39857] = "fixed-version: Fixed from version 6.17" | ||
| 17198 | |||
| 17199 | CVE_STATUS[CVE-2025-39858] = "fixed-version: Fixed from version 6.17" | ||
| 17200 | |||
| 17201 | CVE_STATUS[CVE-2025-39859] = "fixed-version: Fixed from version 6.17" | ||
| 17202 | |||
| 17203 | CVE_STATUS[CVE-2025-39860] = "fixed-version: Fixed from version 6.17" | ||
| 17204 | |||
| 17205 | CVE_STATUS[CVE-2025-39861] = "fixed-version: Fixed from version 6.17" | ||
| 17206 | |||
| 17207 | CVE_STATUS[CVE-2025-39862] = "fixed-version: Fixed from version 6.17" | ||
| 17208 | |||
| 17209 | CVE_STATUS[CVE-2025-39863] = "fixed-version: Fixed from version 6.17" | ||
| 17210 | |||
| 17211 | CVE_STATUS[CVE-2025-39864] = "fixed-version: Fixed from version 6.17" | ||
| 17212 | |||
| 17213 | CVE_STATUS[CVE-2025-39865] = "fixed-version: Fixed from version 6.17" | ||
| 17214 | |||
| 17215 | CVE_STATUS[CVE-2025-39866] = "fixed-version: Fixed from version 6.17" | ||
| 17216 | |||
| 17217 | CVE_STATUS[CVE-2025-39868] = "fixed-version: Fixed from version 6.17" | ||
| 17218 | |||
| 17219 | CVE_STATUS[CVE-2025-39869] = "fixed-version: Fixed from version 6.17" | ||
| 17220 | |||
| 17221 | CVE_STATUS[CVE-2025-39870] = "fixed-version: Fixed from version 6.17" | ||
| 17222 | |||
| 17223 | CVE_STATUS[CVE-2025-39871] = "fixed-version: Fixed from version 6.17" | ||
| 17224 | |||
| 17225 | CVE_STATUS[CVE-2025-39872] = "fixed-version: Fixed from version 6.17" | ||
| 17226 | |||
| 17227 | CVE_STATUS[CVE-2025-39873] = "fixed-version: Fixed from version 6.17" | ||
| 17228 | |||
| 17229 | CVE_STATUS[CVE-2025-39874] = "fixed-version: Fixed from version 6.17" | ||
| 17230 | |||
| 17231 | CVE_STATUS[CVE-2025-39875] = "fixed-version: Fixed from version 6.17" | ||
| 17232 | |||
| 17233 | CVE_STATUS[CVE-2025-39876] = "fixed-version: Fixed from version 6.17" | ||
| 17234 | |||
| 17235 | CVE_STATUS[CVE-2025-39877] = "fixed-version: Fixed from version 6.17" | ||
| 17236 | |||
| 17237 | CVE_STATUS[CVE-2025-39878] = "fixed-version: Fixed from version 6.17" | ||
| 17238 | |||
| 17239 | CVE_STATUS[CVE-2025-39879] = "fixed-version: Fixed from version 6.17" | ||
| 17240 | |||
| 17241 | CVE_STATUS[CVE-2025-39880] = "fixed-version: Fixed from version 6.17" | ||
| 17242 | |||
| 17243 | CVE_STATUS[CVE-2025-39881] = "fixed-version: Fixed from version 6.17" | ||
| 17244 | |||
| 17245 | CVE_STATUS[CVE-2025-39882] = "fixed-version: Fixed from version 6.16.8" | ||
| 17246 | |||
| 17247 | CVE_STATUS[CVE-2025-39883] = "fixed-version: Fixed from version 6.17" | ||
| 17248 | |||
| 17249 | CVE_STATUS[CVE-2025-39884] = "fixed-version: Fixed from version 6.17" | ||
| 17250 | |||
| 17251 | CVE_STATUS[CVE-2025-39885] = "fixed-version: Fixed from version 6.17" | ||
| 17252 | |||
| 17253 | CVE_STATUS[CVE-2025-39886] = "fixed-version: Fixed from version 6.17" | ||
| 17254 | |||
| 17255 | CVE_STATUS[CVE-2025-39887] = "fixed-version: Fixed from version 6.17" | ||
| 17256 | |||
| 17257 | CVE_STATUS[CVE-2025-39888] = "fixed-version: Fixed from version 6.17" | ||
| 17258 | |||
| 17259 | CVE_STATUS[CVE-2025-39889] = "fixed-version: Fixed from version 6.15" | ||
| 17260 | |||
| 17261 | CVE_STATUS[CVE-2025-39890] = "fixed-version: Fixed from version 6.16" | ||
| 17262 | |||
| 17263 | CVE_STATUS[CVE-2025-39891] = "fixed-version: Fixed from version 6.17" | ||
| 17264 | |||
| 17265 | CVE_STATUS[CVE-2025-39892] = "fixed-version: Fixed from version 6.17" | ||
| 17266 | |||
| 17267 | CVE_STATUS[CVE-2025-39893] = "fixed-version: Fixed from version 6.17" | ||
| 17268 | |||
| 17269 | CVE_STATUS[CVE-2025-39894] = "fixed-version: Fixed from version 6.17" | ||
| 17270 | |||
| 17271 | CVE_STATUS[CVE-2025-39895] = "fixed-version: Fixed from version 6.17" | ||
| 17272 | |||
| 17273 | CVE_STATUS[CVE-2025-39896] = "fixed-version: Fixed from version 6.17" | ||
| 17274 | |||
| 17275 | CVE_STATUS[CVE-2025-39897] = "fixed-version: Fixed from version 6.17" | ||
| 17276 | |||
| 17277 | CVE_STATUS[CVE-2025-39899] = "fixed-version: Fixed from version 6.17" | ||
| 17278 | |||
| 17279 | CVE_STATUS[CVE-2025-39900] = "fixed-version: Fixed from version 6.17" | ||
| 17280 | |||
| 17281 | CVE_STATUS[CVE-2025-39901] = "fixed-version: Fixed from version 6.17" | ||
| 17282 | |||
| 17283 | CVE_STATUS[CVE-2025-39902] = "fixed-version: Fixed from version 6.17" | ||
| 17284 | |||
| 17285 | CVE_STATUS[CVE-2025-39903] = "fixed-version: Fixed from version 6.17" | ||
| 17286 | |||
| 17287 | CVE_STATUS[CVE-2025-39904] = "fixed-version: Fixed from version 6.17" | ||
| 17288 | |||
| 17289 | CVE_STATUS[CVE-2025-39905] = "fixed-version: Fixed from version 6.17" | ||
| 17290 | |||
| 17291 | CVE_STATUS[CVE-2025-39906] = "fixed-version: Fixed from version 6.17" | ||
| 17292 | |||
| 17293 | CVE_STATUS[CVE-2025-39907] = "fixed-version: Fixed from version 6.17" | ||
| 17294 | |||
| 17295 | CVE_STATUS[CVE-2025-39908] = "fixed-version: Fixed from version 6.17" | ||
| 17296 | |||
| 17297 | CVE_STATUS[CVE-2025-39909] = "fixed-version: Fixed from version 6.17" | ||
| 17298 | |||
| 17299 | CVE_STATUS[CVE-2025-39910] = "fixed-version: Fixed from version 6.17" | ||
| 17300 | |||
| 17301 | CVE_STATUS[CVE-2025-39911] = "fixed-version: Fixed from version 6.17" | ||
| 17302 | |||
| 17303 | CVE_STATUS[CVE-2025-39912] = "fixed-version: Fixed from version 6.17" | ||
| 17304 | |||
| 17305 | CVE_STATUS[CVE-2025-39913] = "fixed-version: Fixed from version 6.17" | ||
| 17306 | |||
| 17307 | CVE_STATUS[CVE-2025-39914] = "fixed-version: Fixed from version 6.17" | ||
| 17308 | |||
| 17309 | CVE_STATUS[CVE-2025-39915] = "fixed-version: Fixed from version 6.17" | ||
| 17310 | |||
| 17311 | CVE_STATUS[CVE-2025-39916] = "fixed-version: Fixed from version 6.17" | ||
| 17312 | |||
| 17313 | CVE_STATUS[CVE-2025-39917] = "fixed-version: Fixed from version 6.17" | ||
| 17314 | |||
| 17315 | CVE_STATUS[CVE-2025-39918] = "fixed-version: Fixed from version 6.17" | ||
| 17316 | |||
| 17317 | CVE_STATUS[CVE-2025-39919] = "fixed-version: Fixed from version 6.17" | ||
| 17318 | |||
| 17319 | CVE_STATUS[CVE-2025-39920] = "fixed-version: Fixed from version 6.17" | ||
| 17320 | |||
| 17321 | CVE_STATUS[CVE-2025-39921] = "fixed-version: Fixed from version 6.17" | ||
| 17322 | |||
| 17323 | CVE_STATUS[CVE-2025-39922] = "fixed-version: Fixed from version 6.17" | ||
| 17324 | |||
| 17325 | CVE_STATUS[CVE-2025-39923] = "fixed-version: Fixed from version 6.17" | ||
| 17326 | |||
| 17327 | CVE_STATUS[CVE-2025-39924] = "fixed-version: Fixed from version 6.17" | ||
| 17328 | |||
| 17329 | CVE_STATUS[CVE-2025-39925] = "fixed-version: Fixed from version 6.17" | ||
| 17330 | |||
| 17331 | CVE_STATUS[CVE-2025-39926] = "fixed-version: Fixed from version 6.17" | ||
| 17332 | |||
| 17333 | CVE_STATUS[CVE-2025-39927] = "fixed-version: Fixed from version 6.17" | ||
| 17334 | |||
| 17335 | CVE_STATUS[CVE-2025-39928] = "fixed-version: Fixed from version 6.17" | ||
| 17336 | |||
| 17337 | CVE_STATUS[CVE-2025-39929] = "fixed-version: Fixed from version 6.17" | ||
| 17338 | |||
| 17339 | CVE_STATUS[CVE-2025-39930] = "fixed-version: Fixed from version 6.15" | ||
| 17340 | |||
| 17341 | CVE_STATUS[CVE-2025-39931] = "fixed-version: Fixed from version 6.17" | ||
| 17342 | |||
| 17343 | CVE_STATUS[CVE-2025-39932] = "fixed-version: Fixed from version 6.17" | ||
| 17344 | |||
| 17345 | CVE_STATUS[CVE-2025-39933] = "fixed-version: Fixed from version 6.17" | ||
| 17346 | |||
| 17347 | CVE_STATUS[CVE-2025-39934] = "fixed-version: Fixed from version 6.17" | ||
| 17348 | |||
| 17349 | CVE_STATUS[CVE-2025-39935] = "fixed-version: Fixed from version 6.17" | ||
| 17350 | |||
| 17351 | CVE_STATUS[CVE-2025-39936] = "fixed-version: Fixed from version 6.17" | ||
| 17352 | |||
| 17353 | CVE_STATUS[CVE-2025-39937] = "fixed-version: Fixed from version 6.17" | ||
| 17354 | |||
| 17355 | CVE_STATUS[CVE-2025-39938] = "fixed-version: Fixed from version 6.17" | ||
| 17356 | |||
| 17357 | CVE_STATUS[CVE-2025-39939] = "fixed-version: Fixed from version 6.17" | ||
| 17358 | |||
| 17359 | CVE_STATUS[CVE-2025-39940] = "fixed-version: Fixed from version 6.17" | ||
| 17360 | |||
| 17361 | CVE_STATUS[CVE-2025-39941] = "fixed-version: Fixed from version 6.17" | ||
| 17362 | |||
| 17363 | CVE_STATUS[CVE-2025-39942] = "fixed-version: Fixed from version 6.17" | ||
| 17364 | |||
| 17365 | CVE_STATUS[CVE-2025-39943] = "fixed-version: Fixed from version 6.17" | ||
| 17366 | |||
| 17367 | CVE_STATUS[CVE-2025-39944] = "fixed-version: Fixed from version 6.17" | ||
| 17368 | |||
| 17369 | CVE_STATUS[CVE-2025-39945] = "fixed-version: Fixed from version 6.17" | ||
| 17370 | |||
| 17371 | CVE_STATUS[CVE-2025-39946] = "fixed-version: Fixed from version 6.17" | ||
| 17372 | |||
| 17373 | CVE_STATUS[CVE-2025-39947] = "fixed-version: Fixed from version 6.17" | ||
| 17374 | |||
| 17375 | CVE_STATUS[CVE-2025-39948] = "fixed-version: Fixed from version 6.17" | ||
| 17376 | |||
| 17377 | CVE_STATUS[CVE-2025-39949] = "fixed-version: Fixed from version 6.17" | ||
| 17378 | |||
| 17379 | CVE_STATUS[CVE-2025-39950] = "fixed-version: Fixed from version 6.17" | ||
| 17380 | |||
| 17381 | CVE_STATUS[CVE-2025-39951] = "fixed-version: Fixed from version 6.17" | ||
| 17382 | |||
| 17383 | CVE_STATUS[CVE-2025-39952] = "fixed-version: Fixed from version 6.17" | ||
| 17384 | |||
| 17385 | CVE_STATUS[CVE-2025-39953] = "fixed-version: Fixed from version 6.17" | ||
| 17386 | |||
| 17387 | CVE_STATUS[CVE-2025-39954] = "fixed-version: Fixed from version 6.17" | ||
| 17388 | |||
| 17389 | CVE_STATUS[CVE-2025-39955] = "fixed-version: Fixed from version 6.17" | ||
| 17390 | |||
| 17391 | CVE_STATUS[CVE-2025-39956] = "fixed-version: Fixed from version 6.17" | ||
| 17392 | |||
| 17393 | CVE_STATUS[CVE-2025-39957] = "fixed-version: Fixed from version 6.17" | ||
| 17394 | |||
| 17395 | CVE_STATUS[CVE-2025-39958] = "fixed-version: Fixed from version 6.17" | ||
| 17396 | |||
| 17397 | CVE_STATUS[CVE-2025-39959] = "fixed-version: Fixed from version 6.17" | ||
| 17398 | |||
| 17399 | CVE_STATUS[CVE-2025-39960] = "fixed-version: Fixed from version 6.17" | ||
| 17400 | |||
| 17401 | CVE_STATUS[CVE-2025-39961] = "fixed-version: Fixed from version 6.17" | ||
| 17402 | |||
| 17403 | CVE_STATUS[CVE-2025-39962] = "fixed-version: Fixed from version 6.17" | ||
| 17404 | |||
| 17405 | CVE_STATUS[CVE-2025-39963] = "fixed-version: Fixed from version 6.17" | ||
| 17406 | |||
| 17407 | CVE_STATUS[CVE-2025-39964] = "fixed-version: Fixed from version 6.17" | ||
| 17408 | |||
| 17409 | CVE_STATUS[CVE-2025-39965] = "fixed-version: Fixed from version 6.16.10" | ||
| 17410 | |||
| 17411 | CVE_STATUS[CVE-2025-39966] = "fixed-version: Fixed from version 6.17" | ||
| 17412 | |||
| 17413 | CVE_STATUS[CVE-2025-39967] = "fixed-version: Fixed from version 6.17" | ||
| 17414 | |||
| 17415 | CVE_STATUS[CVE-2025-39968] = "fixed-version: Fixed from version 6.17" | ||
| 17416 | |||
| 17417 | CVE_STATUS[CVE-2025-39969] = "fixed-version: Fixed from version 6.17" | ||
| 17418 | |||
| 17419 | CVE_STATUS[CVE-2025-39970] = "fixed-version: Fixed from version 6.17" | ||
| 17420 | |||
| 17421 | CVE_STATUS[CVE-2025-39971] = "fixed-version: Fixed from version 6.17" | ||
| 17422 | |||
| 17423 | CVE_STATUS[CVE-2025-39972] = "fixed-version: Fixed from version 6.17" | ||
| 17424 | |||
| 17425 | CVE_STATUS[CVE-2025-39973] = "fixed-version: Fixed from version 6.17" | ||
| 17426 | |||
| 17427 | CVE_STATUS[CVE-2025-39974] = "fixed-version: Fixed from version 6.17" | ||
| 17428 | |||
| 17429 | CVE_STATUS[CVE-2025-39975] = "fixed-version: Fixed from version 6.17" | ||
| 17430 | |||
| 17431 | CVE_STATUS[CVE-2025-39976] = "fixed-version: Fixed from version 6.17" | ||
| 17432 | |||
| 17433 | CVE_STATUS[CVE-2025-39977] = "fixed-version: Fixed from version 6.17" | ||
| 17434 | |||
| 17435 | CVE_STATUS[CVE-2025-39978] = "fixed-version: Fixed from version 6.17" | ||
| 17436 | |||
| 17437 | CVE_STATUS[CVE-2025-39979] = "fixed-version: Fixed from version 6.17" | ||
| 17438 | |||
| 17439 | CVE_STATUS[CVE-2025-39980] = "fixed-version: Fixed from version 6.17" | ||
| 17440 | |||
| 17441 | CVE_STATUS[CVE-2025-39981] = "fixed-version: Fixed from version 6.17" | ||
| 17442 | |||
| 17443 | CVE_STATUS[CVE-2025-39982] = "fixed-version: Fixed from version 6.17" | ||
| 17444 | |||
| 17445 | CVE_STATUS[CVE-2025-39983] = "fixed-version: Fixed from version 6.17" | ||
| 17446 | |||
| 17447 | CVE_STATUS[CVE-2025-39984] = "fixed-version: Fixed from version 6.17" | ||
| 17448 | |||
| 17449 | CVE_STATUS[CVE-2025-39985] = "fixed-version: Fixed from version 6.17" | ||
| 17450 | |||
| 17451 | CVE_STATUS[CVE-2025-39986] = "fixed-version: Fixed from version 6.17" | ||
| 17452 | |||
| 17453 | CVE_STATUS[CVE-2025-39987] = "fixed-version: Fixed from version 6.17" | ||
| 17454 | |||
| 17455 | CVE_STATUS[CVE-2025-39988] = "fixed-version: Fixed from version 6.17" | ||
| 17456 | |||
| 17457 | CVE_STATUS[CVE-2025-39989] = "fixed-version: Fixed from version 6.15" | ||
| 17458 | |||
| 17459 | CVE_STATUS[CVE-2025-39990] = "fixed-version: Fixed from version 6.17" | ||
| 17460 | |||
| 17461 | CVE_STATUS[CVE-2025-39991] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17462 | |||
| 17463 | CVE_STATUS[CVE-2025-39992] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17464 | |||
| 17465 | CVE_STATUS[CVE-2025-39993] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17466 | |||
| 17467 | CVE_STATUS[CVE-2025-39994] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17468 | |||
| 17469 | CVE_STATUS[CVE-2025-39995] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17470 | |||
| 17471 | CVE_STATUS[CVE-2025-39996] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17472 | |||
| 17473 | CVE_STATUS[CVE-2025-39997] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17474 | |||
| 17475 | CVE_STATUS[CVE-2025-39998] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17476 | |||
| 17477 | CVE_STATUS[CVE-2025-39999] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17478 | |||
| 17479 | CVE_STATUS[CVE-2025-40000] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17480 | |||
| 17481 | CVE_STATUS[CVE-2025-40001] = "cpe-stable-backport: Backported in 6.17.4" | ||
| 17482 | |||
| 17483 | CVE_STATUS[CVE-2025-40002] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17484 | |||
| 17485 | CVE_STATUS[CVE-2025-40003] = "cpe-stable-backport: Backported in 6.17.4" | ||
| 17486 | |||
| 17487 | CVE_STATUS[CVE-2025-40004] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17488 | |||
| 17489 | CVE_STATUS[CVE-2025-40005] = "fixed-version: Fixed from version 6.17" | ||
| 17490 | |||
| 17491 | CVE_STATUS[CVE-2025-40006] = "fixed-version: Fixed from version 6.17" | ||
| 17492 | |||
| 17493 | CVE_STATUS[CVE-2025-40007] = "fixed-version: Fixed from version 6.17" | ||
| 17494 | |||
| 17495 | CVE_STATUS[CVE-2025-40008] = "fixed-version: Fixed from version 6.17" | ||
| 17496 | |||
| 17497 | CVE_STATUS[CVE-2025-40009] = "fixed-version: Fixed from version 6.17" | ||
| 17498 | |||
| 17499 | CVE_STATUS[CVE-2025-40010] = "fixed-version: Fixed from version 6.17" | ||
| 17500 | |||
| 17501 | CVE_STATUS[CVE-2025-40011] = "fixed-version: Fixed from version 6.17" | ||
| 17502 | |||
| 17503 | CVE_STATUS[CVE-2025-40012] = "fixed-version: Fixed from version 6.17" | ||
| 17504 | |||
| 17505 | CVE_STATUS[CVE-2025-40013] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17506 | |||
| 17507 | CVE_STATUS[CVE-2025-40014] = "fixed-version: Fixed from version 6.15" | ||
| 17508 | |||
| 17509 | CVE_STATUS[CVE-2025-40015] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17510 | |||
| 17511 | CVE_STATUS[CVE-2025-40016] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17512 | |||
| 17513 | CVE_STATUS[CVE-2025-40017] = "cpe-stable-backport: Backported in 6.17.1" | ||
| 17514 | |||
| 17515 | CVE_STATUS[CVE-2025-40018] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17516 | |||
| 17517 | CVE_STATUS[CVE-2025-40019] = "cpe-stable-backport: Backported in 6.17.4" | ||
| 17518 | |||
| 17519 | CVE_STATUS[CVE-2025-40020] = "fixed-version: Fixed from version 6.17" | ||
| 17520 | |||
| 17521 | CVE_STATUS[CVE-2025-40021] = "fixed-version: Fixed from version 6.17" | ||
| 17522 | |||
| 17523 | CVE_STATUS[CVE-2025-40022] = "fixed-version: Fixed from version 6.16.10" | ||
| 17524 | |||
| 17525 | CVE_STATUS[CVE-2025-40023] = "fixed-version: Fixed from version 6.17" | ||
| 17526 | |||
| 17527 | CVE_STATUS[CVE-2025-40024] = "fixed-version: Fixed from version 6.17" | ||
| 17528 | |||
| 17529 | CVE_STATUS[CVE-2025-40025] = "cpe-stable-backport: Backported in 6.17.2" | ||
| 17530 | |||
| 17531 | CVE_STATUS[CVE-2025-40026] = "cpe-stable-backport: Backported in 6.17.2" | ||
| 17532 | |||
| 17533 | CVE_STATUS[CVE-2025-40027] = "cpe-stable-backport: Backported in 6.17.2" | ||
| 17534 | |||
| 17535 | CVE_STATUS[CVE-2025-40028] = "cpe-stable-backport: Backported in 6.17.2" | ||
| 17536 | |||
| 17537 | CVE_STATUS[CVE-2025-40029] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17538 | |||
| 17539 | CVE_STATUS[CVE-2025-40030] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17540 | |||
| 17541 | CVE_STATUS[CVE-2025-40031] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17542 | |||
| 17543 | CVE_STATUS[CVE-2025-40032] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17544 | |||
| 17545 | CVE_STATUS[CVE-2025-40033] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17546 | |||
| 17547 | CVE_STATUS[CVE-2025-40034] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17548 | |||
| 17549 | CVE_STATUS[CVE-2025-40035] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17550 | |||
| 17551 | CVE_STATUS[CVE-2025-40036] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17552 | |||
| 17553 | CVE_STATUS[CVE-2025-40037] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17554 | |||
| 17555 | CVE_STATUS[CVE-2025-40038] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17556 | |||
| 17557 | CVE_STATUS[CVE-2025-40039] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17558 | |||
| 17559 | CVE_STATUS[CVE-2025-40040] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17560 | |||
| 17561 | CVE_STATUS[CVE-2025-40041] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17562 | |||
| 17563 | CVE_STATUS[CVE-2025-40042] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17564 | |||
| 17565 | CVE_STATUS[CVE-2025-40043] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17566 | |||
| 17567 | CVE_STATUS[CVE-2025-40044] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17568 | |||
| 17569 | CVE_STATUS[CVE-2025-40045] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17570 | |||
| 17571 | CVE_STATUS[CVE-2025-40046] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17572 | |||
| 17573 | CVE_STATUS[CVE-2025-40047] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17574 | |||
| 17575 | CVE_STATUS[CVE-2025-40048] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17576 | |||
| 17577 | CVE_STATUS[CVE-2025-40049] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17578 | |||
| 17579 | CVE_STATUS[CVE-2025-40050] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17580 | |||
| 17581 | CVE_STATUS[CVE-2025-40051] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17582 | |||
| 17583 | CVE_STATUS[CVE-2025-40052] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17584 | |||
| 17585 | CVE_STATUS[CVE-2025-40053] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17586 | |||
| 17587 | CVE_STATUS[CVE-2025-40054] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17588 | |||
| 17589 | CVE_STATUS[CVE-2025-40055] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17590 | |||
| 17591 | CVE_STATUS[CVE-2025-40056] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17592 | |||
| 17593 | CVE_STATUS[CVE-2025-40057] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17594 | |||
| 17595 | CVE_STATUS[CVE-2025-40058] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17596 | |||
| 17597 | CVE_STATUS[CVE-2025-40059] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17598 | |||
| 17599 | CVE_STATUS[CVE-2025-40060] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17600 | |||
| 17601 | CVE_STATUS[CVE-2025-40061] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17602 | |||
| 17603 | CVE_STATUS[CVE-2025-40062] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17604 | |||
| 17605 | CVE_STATUS[CVE-2025-40063] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17606 | |||
| 17607 | CVE_STATUS[CVE-2025-40064] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17608 | |||
| 17609 | CVE_STATUS[CVE-2025-40065] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17610 | |||
| 17611 | CVE_STATUS[CVE-2025-40066] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17612 | |||
| 17613 | CVE_STATUS[CVE-2025-40067] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17614 | |||
| 17615 | CVE_STATUS[CVE-2025-40068] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17616 | |||
| 17617 | CVE_STATUS[CVE-2025-40069] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17618 | |||
| 17619 | CVE_STATUS[CVE-2025-40070] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17620 | |||
| 17621 | CVE_STATUS[CVE-2025-40071] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17622 | |||
| 17623 | CVE_STATUS[CVE-2025-40072] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17624 | |||
| 17625 | CVE_STATUS[CVE-2025-40073] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17626 | |||
| 17627 | CVE_STATUS[CVE-2025-40074] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17628 | |||
| 17629 | CVE_STATUS[CVE-2025-40075] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17630 | |||
| 17631 | CVE_STATUS[CVE-2025-40076] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17632 | |||
| 17633 | CVE_STATUS[CVE-2025-40077] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17634 | |||
| 17635 | CVE_STATUS[CVE-2025-40078] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17636 | |||
| 17637 | CVE_STATUS[CVE-2025-40079] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17638 | |||
| 17639 | CVE_STATUS[CVE-2025-40080] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17640 | |||
| 17641 | CVE_STATUS[CVE-2025-40081] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17642 | |||
| 17643 | CVE_STATUS[CVE-2025-40082] = "cpe-stable-backport: Backported in 6.17.3" | ||
| 17644 | |||
| 17645 | CVE_STATUS[CVE-2025-40083] = "fixed-version: Fixed from version 6.16" | ||
| 17646 | |||
| 17647 | # CVE-2025-40084 has no known resolution | ||
| 17648 | |||
| 17649 | CVE_STATUS[CVE-2025-40085] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17650 | |||
| 17651 | CVE_STATUS[CVE-2025-40086] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17652 | |||
| 17653 | CVE_STATUS[CVE-2025-40087] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17654 | |||
| 17655 | CVE_STATUS[CVE-2025-40088] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17656 | |||
| 17657 | CVE_STATUS[CVE-2025-40089] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17658 | |||
| 17659 | CVE_STATUS[CVE-2025-40090] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17660 | |||
| 17661 | CVE_STATUS[CVE-2025-40091] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17662 | |||
| 17663 | CVE_STATUS[CVE-2025-40092] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17664 | |||
| 17665 | CVE_STATUS[CVE-2025-40093] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17666 | |||
| 17667 | CVE_STATUS[CVE-2025-40094] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17668 | |||
| 17669 | CVE_STATUS[CVE-2025-40095] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17670 | |||
| 17671 | CVE_STATUS[CVE-2025-40096] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17672 | |||
| 17673 | CVE_STATUS[CVE-2025-40097] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17674 | |||
| 17675 | CVE_STATUS[CVE-2025-40098] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17676 | |||
| 17677 | CVE_STATUS[CVE-2025-40099] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17678 | |||
| 17679 | CVE_STATUS[CVE-2025-40100] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17680 | |||
| 17681 | CVE_STATUS[CVE-2025-40101] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17682 | |||
| 17683 | CVE_STATUS[CVE-2025-40102] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17684 | |||
| 17685 | CVE_STATUS[CVE-2025-40103] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17686 | |||
| 17687 | CVE_STATUS[CVE-2025-40104] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17688 | |||
| 17689 | CVE_STATUS[CVE-2025-40105] = "cpe-stable-backport: Backported in 6.17.5" | ||
| 17690 | |||
| 17691 | CVE_STATUS[CVE-2025-40114] = "fixed-version: Fixed from version 6.15" | ||
| 17692 | |||
| 17693 | CVE_STATUS[CVE-2025-40300] = "fixed-version: Fixed from version 6.17" | ||
| 17694 | |||
| 17695 | CVE_STATUS[CVE-2025-40325] = "fixed-version: Fixed from version 6.15" | ||
| 17696 | |||
| 17697 | CVE_STATUS[CVE-2025-40364] = "fixed-version: Fixed from version 6.14" | ||
| 17698 | |||
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 c6697e99b2..cccd9b28e9 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 () { | |||
| 14 | raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it") | 14 | raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it") |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | SRCREV_machine ?= "6e15f26e4078d6d17c8f2dd66b6f3a8976bb5f10" | 17 | SRCREV_machine ?= "014bc4e5637527525b6f97f58a09f2207c140293" |
| 18 | SRCREV_meta ?= "350aec7b58ac8a244f7084334cd072cc2b39dfdc" | 18 | SRCREV_meta ?= "3f0dcb29edf14029f130bc493a939b67ea27852e" |
| 19 | 19 | ||
| 20 | SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \ | 20 | SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \ |
| 21 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.12;destsuffix=${KMETA};protocol=https" | 21 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.12;destsuffix=${KMETA};protocol=https" |
| 22 | 22 | ||
| 23 | LINUX_VERSION ?= "6.12.52" | 23 | LINUX_VERSION ?= "6.12.55" |
| 24 | 24 | ||
| 25 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | 25 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" |
| 26 | 26 | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_6.17.bb b/meta/recipes-kernel/linux/linux-yocto-rt_6.17.bb new file mode 100644 index 0000000000..864ab29fcb --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-rt_6.17.bb | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | KBRANCH ?= "v6.17/standard/preempt-rt/base" | ||
| 2 | |||
| 3 | require recipes-kernel/linux/linux-yocto.inc | ||
| 4 | |||
| 5 | # CVE exclusions | ||
| 6 | include recipes-kernel/linux/cve-exclusion_6.17.inc | ||
| 7 | |||
| 8 | # Skip processing of this recipe if it is not explicitly specified as the | ||
| 9 | # PREFERRED_PROVIDER for virtual/kernel. This avoids errors when trying | ||
| 10 | # to build multiple virtual/kernel providers, e.g. as dependency of | ||
| 11 | # core-image-rt-sdk, core-image-rt. | ||
| 12 | python () { | ||
| 13 | if d.getVar("KERNEL_PACKAGE_NAME") == "kernel" and d.getVar("PREFERRED_PROVIDER_virtual/kernel") != "linux-yocto-rt": | ||
| 14 | raise bb.parse.SkipRecipe("Set PREFERRED_PROVIDER_virtual/kernel to linux-yocto-rt to enable it") | ||
| 15 | } | ||
| 16 | |||
| 17 | SRCREV_machine ?= "a481087a5bd14195ca2f74527b3454ecf210a7ac" | ||
| 18 | SRCREV_meta ?= "b4e4cfd96ab92d6bdf9d4498dde977aa66ee0702" | ||
| 19 | |||
| 20 | SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \ | ||
| 21 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.17;destsuffix=${KMETA};protocol=https" | ||
| 22 | |||
| 23 | LINUX_VERSION ?= "6.17.6" | ||
| 24 | |||
| 25 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
| 26 | |||
| 27 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
| 28 | DEPENDS += "openssl-native util-linux-native" | ||
| 29 | |||
| 30 | PV = "${LINUX_VERSION}+git" | ||
| 31 | |||
| 32 | KMETA = "kernel-meta" | ||
| 33 | KCONF_BSP_AUDIT_LEVEL = "1" | ||
| 34 | |||
| 35 | LINUX_KERNEL_TYPE = "preempt-rt" | ||
| 36 | |||
| 37 | COMPATIBLE_MACHINE = "^(qemux86|qemux86-64|qemuarm|qemuarmv5|qemuarm64|qemuppc|qemumips)$" | ||
| 38 | |||
| 39 | KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb" | ||
| 40 | |||
| 41 | # Functionality flags | ||
| 42 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc features/taskstats/taskstats.scc" | ||
| 43 | KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}" | ||
| 44 | KERNEL_FEATURES:append:qemuall = " cfg/virtio.scc features/drm-bochs/drm-bochs.scc" | ||
| 45 | KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc" | ||
| 46 | KERNEL_FEATURES:append:qemux86-64 = " cfg/sound.scc cfg/paravirt_kvm.scc" | ||
| 47 | KERNEL_FEATURES:append = "${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc", "", d)}" | ||
| 48 | 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.12.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_6.12.bb index 2fe3f17451..d3be33cf38 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 | |||
| 8 | # CVE exclusions | 8 | # CVE exclusions |
| 9 | include recipes-kernel/linux/cve-exclusion_6.12.inc | 9 | include recipes-kernel/linux/cve-exclusion_6.12.inc |
| 10 | 10 | ||
| 11 | LINUX_VERSION ?= "6.12.52" | 11 | LINUX_VERSION ?= "6.12.55" |
| 12 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | 12 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" |
| 13 | 13 | ||
| 14 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | 14 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" |
| @@ -17,8 +17,8 @@ DEPENDS += "openssl-native util-linux-native" | |||
| 17 | KMETA = "kernel-meta" | 17 | KMETA = "kernel-meta" |
| 18 | KCONF_BSP_AUDIT_LEVEL = "2" | 18 | KCONF_BSP_AUDIT_LEVEL = "2" |
| 19 | 19 | ||
| 20 | SRCREV_machine ?= "7ec0c63fa4a7870b6e16d255828f5a0ae4ec821b" | 20 | SRCREV_machine ?= "c77f4d163458157a4c88d9cd9e175543a5d20140" |
| 21 | SRCREV_meta ?= "350aec7b58ac8a244f7084334cd072cc2b39dfdc" | 21 | SRCREV_meta ?= "3f0dcb29edf14029f130bc493a939b67ea27852e" |
| 22 | 22 | ||
| 23 | PV = "${LINUX_VERSION}+git" | 23 | PV = "${LINUX_VERSION}+git" |
| 24 | 24 | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_6.17.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_6.17.bb new file mode 100644 index 0000000000..2a0a651fd2 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_6.17.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | KBRANCH ?= "v6.17/standard/tiny/base" | ||
| 2 | |||
| 3 | LINUX_KERNEL_TYPE = "tiny" | ||
| 4 | KCONFIG_MODE = "--allnoconfig" | ||
| 5 | |||
| 6 | require recipes-kernel/linux/linux-yocto.inc | ||
| 7 | |||
| 8 | # CVE exclusions | ||
| 9 | include recipes-kernel/linux/cve-exclusion_6.17.inc | ||
| 10 | |||
| 11 | LINUX_VERSION ?= "6.17.6" | ||
| 12 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
| 13 | |||
| 14 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | ||
| 15 | DEPENDS += "openssl-native util-linux-native" | ||
| 16 | |||
| 17 | KMETA = "kernel-meta" | ||
| 18 | KCONF_BSP_AUDIT_LEVEL = "2" | ||
| 19 | |||
| 20 | SRCREV_machine ?= "19af2117bca4cf9244bb7b561ddf42c3cd7d51ff" | ||
| 21 | SRCREV_meta ?= "b4e4cfd96ab92d6bdf9d4498dde977aa66ee0702" | ||
| 22 | |||
| 23 | PV = "${LINUX_VERSION}+git" | ||
| 24 | |||
| 25 | SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \ | ||
| 26 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.17;destsuffix=${KMETA};protocol=https" | ||
| 27 | |||
| 28 | COMPATIBLE_MACHINE = "^(qemux86|qemux86-64|qemuarm64|qemuarm|qemuarmv5)$" | ||
| 29 | |||
| 30 | # Functionality flags | ||
| 31 | KERNEL_FEATURES:append:qemuall = " cfg/virtio.scc cfg/fs/ext4.scc" | ||
| 32 | |||
| 33 | KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb" | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto_6.12.bb b/meta/recipes-kernel/linux/linux-yocto_6.12.bb index 84ae7c0360..fa6a0ba936 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" | |||
| 18 | KBRANCH:qemuloongarch64 ?= "v6.12/standard/base" | 18 | KBRANCH:qemuloongarch64 ?= "v6.12/standard/base" |
| 19 | KBRANCH:qemumips64 ?= "v6.12/standard/mti-malta64" | 19 | KBRANCH:qemumips64 ?= "v6.12/standard/mti-malta64" |
| 20 | 20 | ||
| 21 | SRCREV_machine:qemuarm ?= "172b9fbf63ccfdfbcbeca1a3c7ba5c34eb9f2dcd" | 21 | SRCREV_machine:qemuarm ?= "e646fbdc560660a283cb67b585c37ae73610c31b" |
| 22 | SRCREV_machine:qemuarm64 ?= "7ec0c63fa4a7870b6e16d255828f5a0ae4ec821b" | 22 | SRCREV_machine:qemuarm64 ?= "c77f4d163458157a4c88d9cd9e175543a5d20140" |
| 23 | SRCREV_machine:qemuloongarch64 ?= "7ec0c63fa4a7870b6e16d255828f5a0ae4ec821b" | 23 | SRCREV_machine:qemuloongarch64 ?= "c77f4d163458157a4c88d9cd9e175543a5d20140" |
| 24 | SRCREV_machine:qemumips ?= "31d0ff8e1f91778a5f6eacd2c539384999becfc9" | 24 | SRCREV_machine:qemumips ?= "b1b7883585a3e1adce260c566b8986b5c8d5a12e" |
| 25 | SRCREV_machine:qemuppc ?= "7ec0c63fa4a7870b6e16d255828f5a0ae4ec821b" | 25 | SRCREV_machine:qemuppc ?= "c77f4d163458157a4c88d9cd9e175543a5d20140" |
| 26 | SRCREV_machine:qemuriscv64 ?= "7ec0c63fa4a7870b6e16d255828f5a0ae4ec821b" | 26 | SRCREV_machine:qemuriscv64 ?= "c77f4d163458157a4c88d9cd9e175543a5d20140" |
| 27 | SRCREV_machine:qemuriscv32 ?= "7ec0c63fa4a7870b6e16d255828f5a0ae4ec821b" | 27 | SRCREV_machine:qemuriscv32 ?= "c77f4d163458157a4c88d9cd9e175543a5d20140" |
| 28 | SRCREV_machine:qemux86 ?= "7ec0c63fa4a7870b6e16d255828f5a0ae4ec821b" | 28 | SRCREV_machine:qemux86 ?= "c77f4d163458157a4c88d9cd9e175543a5d20140" |
| 29 | SRCREV_machine:qemux86-64 ?= "7ec0c63fa4a7870b6e16d255828f5a0ae4ec821b" | 29 | SRCREV_machine:qemux86-64 ?= "c77f4d163458157a4c88d9cd9e175543a5d20140" |
| 30 | SRCREV_machine:qemumips64 ?= "27af9a15a47958d29f1ab8740b1bc4b6d9ecf27e" | 30 | SRCREV_machine:qemumips64 ?= "74368748436dddfe2b5cef23fe9f4c149709cc97" |
| 31 | SRCREV_machine ?= "7ec0c63fa4a7870b6e16d255828f5a0ae4ec821b" | 31 | SRCREV_machine ?= "c77f4d163458157a4c88d9cd9e175543a5d20140" |
| 32 | SRCREV_meta ?= "350aec7b58ac8a244f7084334cd072cc2b39dfdc" | 32 | SRCREV_meta ?= "3f0dcb29edf14029f130bc493a939b67ea27852e" |
| 33 | 33 | ||
| 34 | # set your preferred provider of linux-yocto to 'linux-yocto-upstream', and you'll | 34 | # set your preferred provider of linux-yocto to 'linux-yocto-upstream', and you'll |
| 35 | # get the <version>/base branch, which is pure upstream -stable, and the same | 35 | # get the <version>/base branch, which is pure upstream -stable, and the same |
| 36 | # meta SRCREV as the linux-yocto-standard builds. Select your version using the | 36 | # meta SRCREV as the linux-yocto-standard builds. Select your version using the |
| 37 | # normal PREFERRED_VERSION settings. | 37 | # normal PREFERRED_VERSION settings. |
| 38 | BBCLASSEXTEND = "devupstream:target" | 38 | BBCLASSEXTEND = "devupstream:target" |
| 39 | SRCREV_machine:class-devupstream ?= "a9152eb181adaac576e8ac1ab79989881e0f301b" | 39 | SRCREV_machine:class-devupstream ?= "fcd03f7736b1fa2b2181a7306d14008aa36b66ed" |
| 40 | PN:class-devupstream = "linux-yocto-upstream" | 40 | PN:class-devupstream = "linux-yocto-upstream" |
| 41 | KBRANCH:class-devupstream = "v6.12/base" | 41 | KBRANCH:class-devupstream = "v6.12/base" |
| 42 | 42 | ||
| @@ -44,7 +44,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRA | |||
| 44 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.12;destsuffix=${KMETA};protocol=https" | 44 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.12;destsuffix=${KMETA};protocol=https" |
| 45 | 45 | ||
| 46 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | 46 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" |
| 47 | LINUX_VERSION ?= "6.12.52" | 47 | LINUX_VERSION ?= "6.12.55" |
| 48 | 48 | ||
| 49 | PV = "${LINUX_VERSION}+git" | 49 | PV = "${LINUX_VERSION}+git" |
| 50 | 50 | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto_6.17.bb b/meta/recipes-kernel/linux/linux-yocto_6.17.bb new file mode 100644 index 0000000000..5d10a17e70 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto_6.17.bb | |||
| @@ -0,0 +1,79 @@ | |||
| 1 | KBRANCH ?= "v6.17/standard/base" | ||
| 2 | |||
| 3 | require recipes-kernel/linux/linux-yocto.inc | ||
| 4 | |||
| 5 | # CVE exclusions | ||
| 6 | include recipes-kernel/linux/cve-exclusion.inc | ||
| 7 | include recipes-kernel/linux/cve-exclusion_6.17.inc | ||
| 8 | |||
| 9 | # board specific branches | ||
| 10 | KBRANCH:qemuarm ?= "v6.17/standard/arm-versatile-926ejs" | ||
| 11 | KBRANCH:qemuarm64 ?= "v6.17/standard/base" | ||
| 12 | KBRANCH:qemumips ?= "v6.17/standard/mti-malta" | ||
| 13 | KBRANCH:qemuppc ?= "v6.17/standard/qemuppc" | ||
| 14 | KBRANCH:qemuriscv64 ?= "v6.17/standard/base" | ||
| 15 | KBRANCH:qemuriscv32 ?= "v6.17/standard/base" | ||
| 16 | KBRANCH:qemux86 ?= "v6.17/standard/base" | ||
| 17 | KBRANCH:qemux86-64 ?= "v6.17/standard/base" | ||
| 18 | KBRANCH:qemuloongarch64 ?= "v6.17/standard/base" | ||
| 19 | KBRANCH:qemumips64 ?= "v6.17/standard/mti-malta" | ||
| 20 | |||
| 21 | SRCREV_machine:qemuarm ?= "565a0d8d4266f4357e9fea437ad72699aed95606" | ||
| 22 | SRCREV_machine:qemuarm64 ?= "19af2117bca4cf9244bb7b561ddf42c3cd7d51ff" | ||
| 23 | SRCREV_machine:qemuloongarch64 ?= "19af2117bca4cf9244bb7b561ddf42c3cd7d51ff" | ||
| 24 | SRCREV_machine:qemumips ?= "62ea92a539f58803a222be98b81118403074206e" | ||
| 25 | SRCREV_machine:qemuppc ?= "19af2117bca4cf9244bb7b561ddf42c3cd7d51ff" | ||
| 26 | SRCREV_machine:qemuriscv64 ?= "19af2117bca4cf9244bb7b561ddf42c3cd7d51ff" | ||
| 27 | SRCREV_machine:qemuriscv32 ?= "19af2117bca4cf9244bb7b561ddf42c3cd7d51ff" | ||
| 28 | SRCREV_machine:qemux86 ?= "19af2117bca4cf9244bb7b561ddf42c3cd7d51ff" | ||
| 29 | SRCREV_machine:qemux86-64 ?= "19af2117bca4cf9244bb7b561ddf42c3cd7d51ff" | ||
| 30 | SRCREV_machine:qemumips64 ?= "9fb4ff0187c85426f21fd40d4c61b742800f65c4" | ||
| 31 | SRCREV_machine ?= "19af2117bca4cf9244bb7b561ddf42c3cd7d51ff" | ||
| 32 | SRCREV_meta ?= "b4e4cfd96ab92d6bdf9d4498dde977aa66ee0702" | ||
| 33 | |||
| 34 | # set your preferred provider of linux-yocto to 'linux-yocto-upstream', and you'll | ||
| 35 | # get the <version>/base branch, which is pure upstream -stable, and the same | ||
| 36 | # meta SRCREV as the linux-yocto-standard builds. Select your version using the | ||
| 37 | # normal PREFERRED_VERSION settings. | ||
| 38 | BBCLASSEXTEND = "devupstream:target" | ||
| 39 | SRCREV_machine:class-devupstream ?= "371f1e070fa95c71356104a406855a361aad5668" | ||
| 40 | PN:class-devupstream = "linux-yocto-upstream" | ||
| 41 | KBRANCH:class-devupstream = "v6.17/base" | ||
| 42 | |||
| 43 | SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH};protocol=https \ | ||
| 44 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.17;destsuffix=${KMETA};protocol=https" | ||
| 45 | |||
| 46 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
| 47 | LINUX_VERSION ?= "6.17.6" | ||
| 48 | |||
| 49 | PV = "${LINUX_VERSION}+git" | ||
| 50 | |||
| 51 | KMETA = "kernel-meta" | ||
| 52 | KCONF_BSP_AUDIT_LEVEL = "1" | ||
| 53 | |||
| 54 | KERNEL_DEVICETREE:qemuarmv5 = "arm/versatile-pb.dtb" | ||
| 55 | |||
| 56 | COMPATIBLE_MACHINE = "^(qemuarm|qemuarmv5|qemuarm64|qemux86|qemuppc|qemuppc64|qemumips|qemumips64|qemux86-64|qemuriscv64|qemuriscv32|qemuloongarch64)$" | ||
| 57 | |||
| 58 | # Functionality flags | ||
| 59 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc" | ||
| 60 | KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}" | ||
| 61 | KERNEL_FEATURES:append:qemuall = " cfg/virtio.scc features/drm-bochs/drm-bochs.scc cfg/net/mdio.scc" | ||
| 62 | KERNEL_FEATURES:append:qemux86 = " cfg/sound.scc cfg/paravirt_kvm.scc" | ||
| 63 | KERNEL_FEATURES:append:qemux86-64 = " cfg/sound.scc cfg/paravirt_kvm.scc" | ||
| 64 | KERNEL_FEATURES:append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "", d)}" | ||
| 65 | KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/scsi/scsi-debug.scc features/nf_tables/nft_test.scc", "", d)}" | ||
| 66 | KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/gpio/mockup.scc features/gpio/sim.scc", "", d)}" | ||
| 67 | KERNEL_FEATURES:append = " ${@bb.utils.contains("KERNEL_DEBUG", "True", " features/reproducibility/reproducibility.scc features/debug/debug-btf.scc", "", d)}" | ||
| 68 | # libteam ptests from meta-oe needs it | ||
| 69 | KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " features/net/team/team.scc", "", d)}" | ||
| 70 | # openl2tp tests from meta-networking needs it | ||
| 71 | KERNEL_FEATURES:append = " ${@bb.utils.contains("DISTRO_FEATURES", "ptest", " cgl/cfg/net/l2tp.scc", "", d)}" | ||
| 72 | KERNEL_FEATURES:append:powerpc = " arch/powerpc/powerpc-debug.scc" | ||
| 73 | KERNEL_FEATURES:append:powerpc64 = " arch/powerpc/powerpc-debug.scc" | ||
| 74 | KERNEL_FEATURES:append:powerpc64le = " arch/powerpc/powerpc-debug.scc" | ||
| 75 | # Do not add debug info for riscv32, it fails during depmod | ||
| 76 | # ERROR: modpost: __ex_table+0x17a4 references non-executable section '.debug_loclists' | ||
| 77 | # Check again during next major version upgrade | ||
| 78 | KERNEL_FEATURES:remove:riscv32 = "features/debug/debug-kernel.scc" | ||
| 79 | INSANE_SKIP:kernel-vmlinux:qemuppc64 = "textrel" | ||
diff --git a/meta/recipes-sato/images/core-image-sato.bb b/meta/recipes-sato/images/core-image-sato.bb index 5ff35d772c..8702bef8e9 100644 --- a/meta/recipes-sato/images/core-image-sato.bb +++ b/meta/recipes-sato/images/core-image-sato.bb | |||
| @@ -8,7 +8,9 @@ IMAGE_FEATURES += "splash package-management x11-base x11-sato ssh-server-dropbe | |||
| 8 | 8 | ||
| 9 | LICENSE = "MIT" | 9 | LICENSE = "MIT" |
| 10 | 10 | ||
| 11 | inherit core-image | 11 | inherit core-image features_check |
| 12 | |||
| 13 | REQUIRED_DISTRO_FEATURES = "x11" | ||
| 12 | 14 | ||
| 13 | TOOLCHAIN_HOST_TASK:append = " nativesdk-intltool nativesdk-glib-2.0-utils" | 15 | TOOLCHAIN_HOST_TASK:append = " nativesdk-intltool nativesdk-glib-2.0-utils" |
| 14 | TOOLCHAIN_HOST_TASK:remove:task-populate-sdk-ext = " nativesdk-intltool nativesdk-glib-2.0-utils" | 16 | TOOLCHAIN_HOST_TASK:remove:task-populate-sdk-ext = " nativesdk-intltool nativesdk-glib-2.0-utils" |
