diff --git a/docs/_posts/2024-xx-xx-v4.11.0.md b/docs/_posts/2024-xx-xx-v4.11.0.md index 242b226314..b6842470d8 100644 --- a/docs/_posts/2024-xx-xx-v4.11.0.md +++ b/docs/_posts/2024-xx-xx-v4.11.0.md @@ -122,6 +122,7 @@ It is also available through [Artifact Hub](https://artifacthub.io/packages/helm * Fix severity not being set for vulnerabilities from VulnDB - [apiserver/#3595] * Fix `JDOFatalUserException` for long reference URLs from OSS Index - [apiserver/#3650] * Fix unhandled `ClientErrorException`s causing a `HTTP 500` response - [apiserver/#3659] +* Fix unique constraint violation during NVD mirroring via feed files - [apiserver/#3664] * Fix `VUE_APP_SERVER_URL` being ignored - [frontend/#682] * Fix visibility of "Vulnerabilities" and "Policy Violations" columns not being toggle-able individually - [frontend/#686] * Fix finding search routes - [frontend/#689] @@ -252,6 +253,7 @@ Special thanks to everyone who contributed code to implement enhancements and fi [apiserver/#3657]: https://github.com/DependencyTrack/dependency-track/pull/3657 [apiserver/#3659]: https://github.com/DependencyTrack/dependency-track/pull/3659 [apiserver/#3661]: https://github.com/DependencyTrack/dependency-track/pull/3661 +[apiserver/#3664]: https://github.com/DependencyTrack/dependency-track/pull/3664 [frontend/#682]: https://github.com/DependencyTrack/frontend/pull/682 [frontend/#683]: https://github.com/DependencyTrack/frontend/pull/683 diff --git a/src/main/java/org/dependencytrack/parser/nvd/NvdParser.java b/src/main/java/org/dependencytrack/parser/nvd/NvdParser.java index 33fbfe855b..1c558dce2c 100644 --- a/src/main/java/org/dependencytrack/parser/nvd/NvdParser.java +++ b/src/main/java/org/dependencytrack/parser/nvd/NvdParser.java @@ -27,13 +27,11 @@ import com.fasterxml.jackson.databind.node.ArrayNode; import com.fasterxml.jackson.databind.node.ObjectNode; import org.apache.commons.lang3.StringUtils; -import org.datanucleus.PropertyNames; import org.dependencytrack.event.IndexEvent; import org.dependencytrack.model.Cwe; import org.dependencytrack.model.Vulnerability; import org.dependencytrack.model.VulnerableSoftware; import org.dependencytrack.parser.common.resolver.CweResolver; -import org.dependencytrack.persistence.QueryManager; import org.dependencytrack.util.VulnerabilityUtil; import us.springett.cvss.Cvss; import us.springett.parsers.cpe.exceptions.CpeEncodingException; @@ -51,6 +49,7 @@ import java.util.Iterator; import java.util.List; import java.util.Optional; +import java.util.function.BiConsumer; /** * Parser and processor of NVD data feeds. @@ -71,6 +70,11 @@ private enum Operator { // https://github.com/DependencyTrack/dependency-track/pull/2520 // is merged. private final ObjectMapper objectMapper = new ObjectMapper(); + private final BiConsumer> vulnerabilityConsumer; + + public NvdParser(final BiConsumer> vulnerabilityConsumer) { + this.vulnerabilityConsumer = vulnerabilityConsumer; + } public void parse(final File file) { if (!file.getName().endsWith(".json")) { @@ -111,127 +115,115 @@ public void parse(final File file) { } private void parseCveItem(final ObjectNode cveItem) { - try (QueryManager qm = new QueryManager().withL2CacheDisabled()) { - qm.getPersistenceManager().setProperty(PropertyNames.PROPERTY_PERSISTENCE_BY_REACHABILITY_AT_COMMIT, "false"); - - final Vulnerability vulnerability = new Vulnerability(); - vulnerability.setSource(Vulnerability.Source.NVD); + final Vulnerability vulnerability = new Vulnerability(); + vulnerability.setSource(Vulnerability.Source.NVD); - // CVE ID - final var cve = (ObjectNode) cveItem.get("cve"); - final var meta0 = (ObjectNode) cve.get("CVE_data_meta"); - vulnerability.setVulnId(meta0.get("ID").asText()); + // CVE ID + final var cve = (ObjectNode) cveItem.get("cve"); + final var meta0 = (ObjectNode) cve.get("CVE_data_meta"); + vulnerability.setVulnId(meta0.get("ID").asText()); - // CVE Published and Modified dates - final String publishedDateString = cveItem.get("publishedDate").asText(); - final String lastModifiedDateString = cveItem.get("lastModifiedDate").asText(); - try { - if (StringUtils.isNotBlank(publishedDateString)) { - vulnerability.setPublished(Date.from(OffsetDateTime.parse(publishedDateString).toInstant())); - } - if (StringUtils.isNotBlank(lastModifiedDateString)) { - vulnerability.setUpdated(Date.from(OffsetDateTime.parse(lastModifiedDateString).toInstant())); - } - } catch (DateTimeParseException | NullPointerException | IllegalArgumentException e) { - LOGGER.error("Unable to parse dates from NVD data feed", e); + // CVE Published and Modified dates + final String publishedDateString = cveItem.get("publishedDate").asText(); + final String lastModifiedDateString = cveItem.get("lastModifiedDate").asText(); + try { + if (StringUtils.isNotBlank(publishedDateString)) { + vulnerability.setPublished(Date.from(OffsetDateTime.parse(publishedDateString).toInstant())); } + if (StringUtils.isNotBlank(lastModifiedDateString)) { + vulnerability.setUpdated(Date.from(OffsetDateTime.parse(lastModifiedDateString).toInstant())); + } + } catch (DateTimeParseException | NullPointerException | IllegalArgumentException e) { + LOGGER.error("Unable to parse dates from NVD data feed", e); + } - // CVE Description - final var descO = (ObjectNode) cve.get("description"); - final var desc1 = (ArrayNode) descO.get("description_data"); - final StringBuilder descriptionBuilder = new StringBuilder(); - for (int j = 0; j < desc1.size(); j++) { - final var desc2 = (ObjectNode) desc1.get(j); - if ("en".equals(desc2.get("lang").asText())) { - descriptionBuilder.append(desc2.get("value").asText()); - if (j < desc1.size() - 1) { - descriptionBuilder.append("\n\n"); - } + // CVE Description + final var descO = (ObjectNode) cve.get("description"); + final var desc1 = (ArrayNode) descO.get("description_data"); + final StringBuilder descriptionBuilder = new StringBuilder(); + for (int j = 0; j < desc1.size(); j++) { + final var desc2 = (ObjectNode) desc1.get(j); + if ("en".equals(desc2.get("lang").asText())) { + descriptionBuilder.append(desc2.get("value").asText()); + if (j < desc1.size() - 1) { + descriptionBuilder.append("\n\n"); } } - vulnerability.setDescription(descriptionBuilder.toString()); + } + vulnerability.setDescription(descriptionBuilder.toString()); - // CVE Impact - parseCveImpact(cveItem, vulnerability); + // CVE Impact + parseCveImpact(cveItem, vulnerability); - // CWE - final var prob0 = (ObjectNode) cve.get("problemtype"); - final var prob1 = (ArrayNode) prob0.get("problemtype_data"); - for (int j = 0; j < prob1.size(); j++) { - final var prob2 = (ObjectNode) prob1.get(j); - final var prob3 = (ArrayNode) prob2.get("description"); - for (int k = 0; k < prob3.size(); k++) { - final var prob4 = (ObjectNode) prob3.get(k); - if ("en".equals(prob4.get("lang").asText())) { - final String cweString = prob4.get("value").asText(); - if (cweString != null && cweString.startsWith("CWE-")) { - final Cwe cwe = CweResolver.getInstance().lookup(cweString); - if (cwe != null) { - vulnerability.addCwe(cwe); - } else { - LOGGER.warn("CWE " + cweString + " not found in Dependency-Track database. This could signify an issue with the NVD or with Dependency-Track not having advanced knowledge of this specific CWE identifier."); - } + // CWE + final var prob0 = (ObjectNode) cve.get("problemtype"); + final var prob1 = (ArrayNode) prob0.get("problemtype_data"); + for (int j = 0; j < prob1.size(); j++) { + final var prob2 = (ObjectNode) prob1.get(j); + final var prob3 = (ArrayNode) prob2.get("description"); + for (int k = 0; k < prob3.size(); k++) { + final var prob4 = (ObjectNode) prob3.get(k); + if ("en".equals(prob4.get("lang").asText())) { + final String cweString = prob4.get("value").asText(); + if (cweString != null && cweString.startsWith("CWE-")) { + final Cwe cwe = CweResolver.getInstance().lookup(cweString); + if (cwe != null) { + vulnerability.addCwe(cwe); + } else { + LOGGER.warn("CWE " + cweString + " not found in Dependency-Track database. This could signify an issue with the NVD or with Dependency-Track not having advanced knowledge of this specific CWE identifier."); } } } } + } - // References - final var ref0 = (ObjectNode) cve.get("references"); - final var ref1 = (ArrayNode) ref0.get("reference_data"); - final StringBuilder sb = new StringBuilder(); - for (int l = 0; l < ref1.size(); l++) { - final var ref2 = (ObjectNode) ref1.get(l); - final Iterator fieldNameIter = ref2.fieldNames(); - while (fieldNameIter.hasNext()) { - final String s = fieldNameIter.next(); - if ("url".equals(s)) { - // Convert reference to Markdown format - final String url = ref2.get("url").asText(); - sb.append("* [").append(url).append("](").append(url).append(")\n"); - } + // References + final var ref0 = (ObjectNode) cve.get("references"); + final var ref1 = (ArrayNode) ref0.get("reference_data"); + final StringBuilder sb = new StringBuilder(); + for (int l = 0; l < ref1.size(); l++) { + final var ref2 = (ObjectNode) ref1.get(l); + final Iterator fieldNameIter = ref2.fieldNames(); + while (fieldNameIter.hasNext()) { + final String s = fieldNameIter.next(); + if ("url".equals(s)) { + // Convert reference to Markdown format + final String url = ref2.get("url").asText(); + sb.append("* [").append(url).append("](").append(url).append(")\n"); } } - final String references = sb.toString(); - if (references.length() > 0) { - vulnerability.setReferences(references.substring(0, references.lastIndexOf("\n"))); - } - - // Update the vulnerability - LOGGER.debug("Synchronizing: " + vulnerability.getVulnId()); - final Vulnerability synchronizeVulnerability = qm.synchronizeVulnerability(vulnerability, false); - final List vsListOld = qm.detach(qm.getVulnerableSoftwareByVulnId(synchronizeVulnerability.getSource(), synchronizeVulnerability.getVulnId())); + } + final String references = sb.toString(); + if (!references.isEmpty()) { + vulnerability.setReferences(references.substring(0, references.lastIndexOf("\n"))); + } - // CPE - List vsList = new ArrayList<>(); - final var configurations = (ObjectNode) cveItem.get("configurations"); - final var nodes = (ArrayNode) configurations.get("nodes"); - for (int j = 0; j < nodes.size(); j++) { - final var node = (ObjectNode) nodes.get(j); - final List vulnerableSoftwareInNode = new ArrayList<>(); - final Operator nodeOperator = Operator.valueOf(node.get("operator").asText(Operator.NONE.name())); - if (node.has("children")) { - // https://github.com/DependencyTrack/dependency-track/issues/1033 - final var children = (ArrayNode) node.get("children"); - if (children.size() > 0) { - for (int l = 0; l < children.size(); l++) { - final var child = (ObjectNode) children.get(l); - vulnerableSoftwareInNode.addAll(parseCpes(qm, child)); - } - } else { - vulnerableSoftwareInNode.addAll(parseCpes(qm, node)); + // CPE + List vsList = new ArrayList<>(); + final var configurations = (ObjectNode) cveItem.get("configurations"); + final var nodes = (ArrayNode) configurations.get("nodes"); + for (int j = 0; j < nodes.size(); j++) { + final var node = (ObjectNode) nodes.get(j); + final List vulnerableSoftwareInNode = new ArrayList<>(); + final Operator nodeOperator = Operator.valueOf(node.get("operator").asText(Operator.NONE.name())); + if (node.has("children")) { + // https://github.com/DependencyTrack/dependency-track/issues/1033 + final var children = (ArrayNode) node.get("children"); + if (!children.isEmpty()) { + for (int l = 0; l < children.size(); l++) { + final var child = (ObjectNode) children.get(l); + vulnerableSoftwareInNode.addAll(parseCpes(child)); } } else { - vulnerableSoftwareInNode.addAll(parseCpes(qm, node)); + vulnerableSoftwareInNode.addAll(parseCpes(node)); } - vsList.addAll(reconcile(vulnerableSoftwareInNode, nodeOperator)); + } else { + vulnerableSoftwareInNode.addAll(parseCpes(node)); } - qm.persist(vsList); - qm.updateAffectedVersionAttributions(synchronizeVulnerability, vsList, Vulnerability.Source.NVD); - vsList = qm.reconcileVulnerableSoftware(synchronizeVulnerability, vsListOld, vsList, Vulnerability.Source.NVD); - synchronizeVulnerability.setVulnerableSoftware(vsList); - qm.persist(synchronizeVulnerability); + vsList.addAll(reconcile(vulnerableSoftwareInNode, nodeOperator)); } + + vulnerabilityConsumer.accept(vulnerability, vsList); } /** @@ -302,14 +294,14 @@ private void parseCveImpact(final ObjectNode cveItem, final Vulnerability vuln) )); } - private List parseCpes(final QueryManager qm, final ObjectNode node) { + private List parseCpes(final ObjectNode node) { final List vsList = new ArrayList<>(); if (node.has("cpe_match")) { final var cpeMatches = (ArrayNode) node.get("cpe_match"); for (int k = 0; k < cpeMatches.size(); k++) { final var cpeMatch = (ObjectNode) cpeMatches.get(k); if (cpeMatch.get("vulnerable").asBoolean(true)) { // only parse the CPEs marked as vulnerable - final VulnerableSoftware vs = generateVulnerableSoftware(qm, cpeMatch); + final VulnerableSoftware vs = generateVulnerableSoftware(cpeMatch); if (vs != null) { vsList.add(vs); } @@ -319,29 +311,26 @@ private List parseCpes(final QueryManager qm, final ObjectNo return vsList; } - private VulnerableSoftware generateVulnerableSoftware(final QueryManager qm, final ObjectNode cpeMatch) { + private VulnerableSoftware generateVulnerableSoftware(final ObjectNode cpeMatch) { final String cpe23Uri = cpeMatch.get("cpe23Uri").asText(); final String versionEndExcluding = Optional.ofNullable(cpeMatch.get("versionEndExcluding")).map(JsonNode::asText).orElse(null); final String versionEndIncluding = Optional.ofNullable(cpeMatch.get("versionEndIncluding")).map(JsonNode::asText).orElse(null); final String versionStartExcluding = Optional.ofNullable(cpeMatch.get("versionStartExcluding")).map(JsonNode::asText).orElse(null); final String versionStartIncluding = Optional.ofNullable(cpeMatch.get("versionStartIncluding")).map(JsonNode::asText).orElse(null); - VulnerableSoftware vs = qm.getVulnerableSoftwareByCpe23(cpe23Uri, versionEndExcluding, - versionEndIncluding, versionStartExcluding, versionStartIncluding); - if (vs != null) { - return vs; - } + + final VulnerableSoftware vs; try { vs = ModelConverter.convertCpe23UriToVulnerableSoftware(cpe23Uri); - vs.setVulnerable(cpeMatch.get("vulnerable").asBoolean(true)); - vs.setVersionEndExcluding(versionEndExcluding); - vs.setVersionEndIncluding(versionEndIncluding); - vs.setVersionStartExcluding(versionStartExcluding); - vs.setVersionStartIncluding(versionStartIncluding); - //Event.dispatch(new IndexEvent(IndexEvent.Action.CREATE, qm.detach(VulnerableSoftware.class, vs.getId()))); - return vs; } catch (CpeParsingException | CpeEncodingException e) { LOGGER.warn("An error occurred while parsing: " + cpe23Uri + " - The CPE is invalid and will be discarded."); + return null; } - return null; + + vs.setVulnerable(cpeMatch.get("vulnerable").asBoolean(true)); + vs.setVersionEndExcluding(versionEndExcluding); + vs.setVersionEndIncluding(versionEndIncluding); + vs.setVersionStartExcluding(versionStartExcluding); + vs.setVersionStartIncluding(versionStartIncluding); + return vs; } } diff --git a/src/main/java/org/dependencytrack/servlets/NvdMirrorServlet.java b/src/main/java/org/dependencytrack/servlets/NvdMirrorServlet.java index 8144906651..01bd083447 100644 --- a/src/main/java/org/dependencytrack/servlets/NvdMirrorServlet.java +++ b/src/main/java/org/dependencytrack/servlets/NvdMirrorServlet.java @@ -36,7 +36,7 @@ public class NvdMirrorServlet extends FileSystemResourceServlet { public void init(final ServletConfig config) throws ServletException { LOGGER.info("Initializing NVD mirror"); super.init(config); - super.setDirectory(NistMirrorTask.NVD_MIRROR_DIR); + super.setDirectory(NistMirrorTask.DEFAULT_NVD_MIRROR_DIR.toString()); super.setAbsolute(true); } diff --git a/src/main/java/org/dependencytrack/tasks/AbstractNistMirrorTask.java b/src/main/java/org/dependencytrack/tasks/AbstractNistMirrorTask.java new file mode 100644 index 0000000000..5676677fae --- /dev/null +++ b/src/main/java/org/dependencytrack/tasks/AbstractNistMirrorTask.java @@ -0,0 +1,262 @@ +/* + * This file is part of Dependency-Track. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Copyright (c) OWASP Foundation. All Rights Reserved. + */ +package org.dependencytrack.tasks; + +import alpine.common.logging.Logger; +import org.dependencytrack.model.AffectedVersionAttribution; +import org.dependencytrack.model.Vulnerability; +import org.dependencytrack.model.VulnerableSoftware; +import org.dependencytrack.persistence.QueryManager; +import org.dependencytrack.util.PersistenceUtil; + +import javax.jdo.Query; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; +import java.util.Map; +import java.util.Objects; + +import static java.util.stream.Collectors.groupingBy; +import static org.dependencytrack.util.PersistenceUtil.assertNonPersistentAll; +import static org.dependencytrack.util.PersistenceUtil.assertPersistent; + +/** + * @since 4.11.0 + */ +abstract class AbstractNistMirrorTask { + + private final Logger logger = Logger.getLogger(getClass()); + + Vulnerability synchronizeVulnerability(final QueryManager qm, final Vulnerability vuln) { + PersistenceUtil.assertNonPersistent(vuln, "vuln must not be persistent"); + + return qm.runInTransaction(trx -> { + trx.setSerializeRead(true); // SELECT ... FOR UPDATE + + Vulnerability persistentVuln = getVulnerabilityByCveId(qm, vuln.getVulnId()); + if (persistentVuln == null) { + persistentVuln = qm.getPersistenceManager().makePersistent(vuln); + } else { + final Map diffs = updateVulnerability(persistentVuln, vuln); + if (!diffs.isEmpty()) { + logger.debug("%s has changed: %s".formatted(vuln.getVulnId(), diffs)); + return persistentVuln; + } + + logger.debug("%s has not changed".formatted(vuln.getVulnId())); + } + + return persistentVuln; + }); + } + + void synchronizeVulnerableSoftware(final QueryManager qm, final Vulnerability persistentVuln, final List vsList) { + assertPersistent(persistentVuln, "vuln must be persistent"); + assertNonPersistentAll(vsList, "vsList must not be persistent"); + + qm.runInTransaction(tx -> { + tx.setSerializeRead(false); + + // Get all VulnerableSoftware records that are currently associated with the vulnerability. + // Note: For SOME ODD REASON, duplicate (as in, same database ID and all) VulnerableSoftware + // records are returned, when operating on data that was originally created by the feed-based + // NistMirrorTask. We thus have to deduplicate here. + final List vsOldList = persistentVuln.getVulnerableSoftware().stream().distinct().toList(); + logger.trace("%s: Existing VS: %d".formatted(persistentVuln.getVulnId(), vsOldList.size())); + + // Get attributions for all existing VulnerableSoftware records. + final Map> attributionsByVsId = + qm.getAffectedVersionAttributions(persistentVuln, vsOldList).stream() + .collect(groupingBy(attribution -> attribution.getVulnerableSoftware().getId())); + for (final VulnerableSoftware vsOld : vsOldList) { + vsOld.setAffectedVersionAttributions(attributionsByVsId.get(vsOld.getId())); + } + + // Based on the lists of currently reported, and previously reported VulnerableSoftware records, + // divide the previously reported ones into lists of records to keep, and records to remove. + // Records to keep are removed from vsList. Remaining records in vsList thus are entirely new. + final var vsListToRemove = new ArrayList(); + final var vsListToKeep = new ArrayList(); + for (final VulnerableSoftware vsOld : vsOldList) { + if (vsList.removeIf(vsOld::equalsIgnoringDatastoreIdentity)) { + vsListToKeep.add(vsOld); + } else { + final List attributions = vsOld.getAffectedVersionAttributions(); + if (attributions == null || attributions.isEmpty()) { + // DT versions prior to 4.7.0 did not record attributions. + // Drop the VulnerableSoftware for now. If it was previously + // reported by another source, it will be recorded and attributed + // whenever that source is mirrored again. + vsListToRemove.add(vsOld); + continue; + } + + final boolean previouslyReportedByNvd = attributions.stream() + .anyMatch(attr -> attr.getSource() == Vulnerability.Source.NVD); + final boolean previouslyReportedByOthers = !previouslyReportedByNvd; + + if (previouslyReportedByOthers) { + vsListToKeep.add(vsOld); + } else { + vsListToRemove.add(vsOld); + } + } + } + logger.trace("%s: vsListToKeep: %d".formatted(persistentVuln.getVulnId(), vsListToKeep.size())); + logger.trace("%s: vsListToRemove: %d".formatted(persistentVuln.getVulnId(), vsListToRemove.size())); + + // Remove attributions for VulnerableSoftware records that are no longer reported. + if (!vsListToRemove.isEmpty()) { + qm.deleteAffectedVersionAttributions(persistentVuln, vsListToRemove, Vulnerability.Source.NVD); + } + + final var attributionDate = new Date(); + + // For VulnerableSoftware records that existed before, update the lastSeen timestamp. + for (final VulnerableSoftware oldVs : vsListToKeep) { + oldVs.getAffectedVersionAttributions().stream() + .filter(attribution -> attribution.getSource() == Vulnerability.Source.NVD) + .findAny() + .ifPresent(attribution -> attribution.setLastSeen(attributionDate)); + } + + // For VulnerableSoftware records that are newly reported for this vulnerability, check if any matching + // records exist in the database that are currently associated with other (or no) vulnerabilities. + for (final VulnerableSoftware vs : vsList) { + final VulnerableSoftware existingVs = qm.getVulnerableSoftwareByCpe23( + vs.getCpe23(), + vs.getVersionEndExcluding(), + vs.getVersionEndIncluding(), + vs.getVersionStartExcluding(), + vs.getVersionStartIncluding() + ); + if (existingVs != null) { + final boolean hasAttribution = qm.hasAffectedVersionAttribution(persistentVuln, existingVs, Vulnerability.Source.NVD); + if (!hasAttribution) { + logger.trace("%s: Adding attribution".formatted(persistentVuln.getVulnId())); + final AffectedVersionAttribution attribution = createAttribution(persistentVuln, existingVs, attributionDate); + qm.getPersistenceManager().makePersistent(attribution); + } else { + logger.debug("%s: Encountered dangling attribution; Re-using by updating firstSeen and lastSeen timestamps".formatted(persistentVuln.getVulnId())); + final AffectedVersionAttribution existingAttribution = qm.getAffectedVersionAttribution(persistentVuln, existingVs, Vulnerability.Source.NVD); + existingAttribution.setFirstSeen(attributionDate); + existingAttribution.setLastSeen(attributionDate); + } + vsListToKeep.add(existingVs); + } else { + logger.trace("%s: Creating new VS".formatted(persistentVuln.getVulnId())); + final VulnerableSoftware persistentVs = qm.getPersistenceManager().makePersistent(vs); + final AffectedVersionAttribution attribution = createAttribution(persistentVuln, persistentVs, attributionDate); + qm.getPersistenceManager().makePersistent(attribution); + vsListToKeep.add(persistentVs); + } + } + + logger.trace("%s: Final vsList: %d".formatted(persistentVuln.getVulnId(), vsListToKeep.size())); + if (!Objects.equals(persistentVuln.getVulnerableSoftware(), vsListToKeep)) { + logger.trace("%s: vsList has changed: %s".formatted(persistentVuln.getVulnId(), new PersistenceUtil.Diff(persistentVuln.getVulnerableSoftware(), vsListToKeep))); + persistentVuln.setVulnerableSoftware(vsListToKeep); + } + }); + } + + private static AffectedVersionAttribution createAttribution(final Vulnerability vuln, final VulnerableSoftware vs, + final Date attributionDate) { + final var attribution = new AffectedVersionAttribution(); + attribution.setSource(Vulnerability.Source.NVD); + attribution.setVulnerability(vuln); + attribution.setVulnerableSoftware(vs); + attribution.setFirstSeen(attributionDate); + attribution.setLastSeen(attributionDate); + return attribution; + } + + /** + * Get a {@link Vulnerability} by its CVE ID (implying the source {@link Vulnerability.Source#NVD}). + *

+ * It differs from {@link QueryManager#getVulnerabilityByVulnId(String, String)} in that it does not fetch any + * adjacent relationships (e.g. affected components and aliases). + * + * @param qm The {@link QueryManager} to use + * @param cveId The CVE ID to look for + * @return The {@link Vulnerability} matching the CVE ID, or {@code null} when no match was found + */ + private static Vulnerability getVulnerabilityByCveId(final QueryManager qm, final String cveId) { + final Query query = qm.getPersistenceManager().newQuery(Vulnerability.class); + query.setFilter("source == :source && vulnId == :cveId"); + query.setNamedParameters(Map.of( + "source", Vulnerability.Source.NVD.name(), + "cveId", cveId + )); + try { + return query.executeUnique(); + } finally { + query.closeAll(); + } + } + + /** + * Update an existing, persistent {@link Vulnerability} with data as reported by the NVD. + *

+ * It differs from {@link QueryManager#updateVulnerability(Vulnerability, boolean)} in that it keeps track of + * which fields are modified, and assumes the to-be-updated {@link Vulnerability} to be persistent, and enrolled + * in an active {@link javax.jdo.Transaction}. + * + * @param existingVuln The existing {@link Vulnerability} to update + * @param reportedVuln The {@link Vulnerability} as reported by the NVD + * @return A {@link Map} holding the differences of all updated fields + */ + private static Map updateVulnerability(final Vulnerability existingVuln, final Vulnerability reportedVuln) { + assertPersistent(existingVuln, "existingVuln must be persistent in order for changes to be effective"); + + final var differ = new PersistenceUtil.Differ<>(existingVuln, reportedVuln); + differ.applyIfChanged("title", Vulnerability::getTitle, existingVuln::setTitle); + differ.applyIfChanged("subTitle", Vulnerability::getSubTitle, existingVuln::setSubTitle); + differ.applyIfChanged("description", Vulnerability::getDescription, existingVuln::setDescription); + differ.applyIfChanged("detail", Vulnerability::getDetail, existingVuln::setDetail); + differ.applyIfChanged("recommendation", Vulnerability::getRecommendation, existingVuln::setRecommendation); + differ.applyIfChanged("references", Vulnerability::getReferences, existingVuln::setReferences); + differ.applyIfChanged("credits", Vulnerability::getCredits, existingVuln::setCredits); + differ.applyIfChanged("created", Vulnerability::getCreated, existingVuln::setCreated); + differ.applyIfChanged("published", Vulnerability::getPublished, existingVuln::setPublished); + differ.applyIfChanged("updated", Vulnerability::getUpdated, existingVuln::setUpdated); + differ.applyIfNonEmptyAndChanged("cwes", Vulnerability::getCwes, existingVuln::setCwes); + differ.applyIfChanged("severity", Vulnerability::getSeverity, existingVuln::setSeverity); + differ.applyIfChanged("cvssV2BaseScore", Vulnerability::getCvssV2BaseScore, existingVuln::setCvssV2BaseScore); + differ.applyIfChanged("cvssV2ImpactSubScore", Vulnerability::getCvssV2ImpactSubScore, existingVuln::setCvssV2ImpactSubScore); + differ.applyIfChanged("cvssV2ExploitabilitySubScore", Vulnerability::getCvssV2ExploitabilitySubScore, existingVuln::setCvssV2ExploitabilitySubScore); + differ.applyIfChanged("cvssV2Vector", Vulnerability::getCvssV2Vector, existingVuln::setCvssV2Vector); + differ.applyIfChanged("cvssV3BaseScore", Vulnerability::getCvssV3BaseScore, existingVuln::setCvssV3BaseScore); + differ.applyIfChanged("cvssV3ImpactSubScore", Vulnerability::getCvssV3ImpactSubScore, existingVuln::setCvssV3ImpactSubScore); + differ.applyIfChanged("cvssV3ExploitabilitySubScore", Vulnerability::getCvssV3ExploitabilitySubScore, existingVuln::setCvssV3ExploitabilitySubScore); + differ.applyIfChanged("cvssV3Vector", Vulnerability::getCvssV3Vector, existingVuln::setCvssV3Vector); + differ.applyIfChanged("owaspRRLikelihoodScore", Vulnerability::getOwaspRRLikelihoodScore, existingVuln::setOwaspRRLikelihoodScore); + differ.applyIfChanged("owaspRRTechnicalImpactScore", Vulnerability::getOwaspRRTechnicalImpactScore, existingVuln::setOwaspRRTechnicalImpactScore); + differ.applyIfChanged("owaspRRBusinessImpactScore", Vulnerability::getOwaspRRBusinessImpactScore, existingVuln::setOwaspRRBusinessImpactScore); + differ.applyIfChanged("owaspRRVector", Vulnerability::getOwaspRRVector, existingVuln::setOwaspRRVector); + differ.applyIfChanged("vulnerableVersions", Vulnerability::getVulnerableVersions, existingVuln::setVulnerableVersions); + differ.applyIfChanged("patchedVersions", Vulnerability::getPatchedVersions, existingVuln::setPatchedVersions); + // EPSS is an additional enrichment that no source currently provides natively. We don't want EPSS scores of CVEs to be purged. + differ.applyIfNonNullAndChanged("epssScore", Vulnerability::getEpssScore, existingVuln::setEpssScore); + differ.applyIfNonNullAndChanged("epssPercentile", Vulnerability::getEpssPercentile, existingVuln::setEpssPercentile); + + return differ.getDiffs(); + } + +} diff --git a/src/main/java/org/dependencytrack/tasks/NistApiMirrorTask.java b/src/main/java/org/dependencytrack/tasks/NistApiMirrorTask.java index 6461c6b8ac..d82ac2ae8e 100644 --- a/src/main/java/org/dependencytrack/tasks/NistApiMirrorTask.java +++ b/src/main/java/org/dependencytrack/tasks/NistApiMirrorTask.java @@ -33,7 +33,6 @@ import io.github.jeremylong.openvulnerability.client.nvd.NvdCveClientBuilder; import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.concurrent.BasicThreadFactory; -import org.apache.commons.lang3.tuple.Pair; import org.apache.hc.client5.http.auth.AuthScope; import org.apache.hc.client5.http.auth.NTCredentials; import org.apache.hc.client5.http.auth.UsernamePasswordCredentials; @@ -45,27 +44,20 @@ import org.dependencytrack.common.AlpineHttpProxySelector; import org.dependencytrack.event.EpssMirrorEvent; import org.dependencytrack.event.IndexEvent; -import org.dependencytrack.event.IndexEvent.Action; import org.dependencytrack.event.NistApiMirrorEvent; import org.dependencytrack.model.AffectedVersionAttribution; import org.dependencytrack.model.Vulnerability; -import org.dependencytrack.model.Vulnerability.Source; import org.dependencytrack.model.VulnerableSoftware; import org.dependencytrack.persistence.QueryManager; +import org.dependencytrack.persistence.listener.IndexingInstanceLifecycleListener; +import org.dependencytrack.persistence.listener.L2CacheEvictingInstanceLifecycleListener; import org.dependencytrack.util.DebugDataEncryption; -import org.dependencytrack.util.PersistenceUtil.Diff; -import org.dependencytrack.util.PersistenceUtil.Differ; -import javax.jdo.Query; import java.time.Duration; import java.time.Instant; import java.time.ZoneOffset; import java.time.ZonedDateTime; -import java.util.ArrayList; -import java.util.Date; import java.util.List; -import java.util.Map; -import java.util.Objects; import java.util.Optional; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.ThreadPoolExecutor; @@ -73,22 +65,21 @@ import java.util.concurrent.atomic.AtomicInteger; import static io.github.jeremylong.openvulnerability.client.nvd.NvdCveClientBuilder.aNvdCveApi; -import static java.util.stream.Collectors.groupingBy; import static org.apache.commons.lang3.StringUtils.isNotBlank; import static org.datanucleus.PropertyNames.PROPERTY_PERSISTENCE_BY_REACHABILITY_AT_COMMIT; +import static org.datanucleus.PropertyNames.PROPERTY_RETAIN_VALUES; import static org.dependencytrack.model.ConfigPropertyConstants.VULNERABILITY_SOURCE_NVD_API_KEY; import static org.dependencytrack.model.ConfigPropertyConstants.VULNERABILITY_SOURCE_NVD_API_LAST_MODIFIED_EPOCH_SECONDS; import static org.dependencytrack.model.ConfigPropertyConstants.VULNERABILITY_SOURCE_NVD_API_URL; import static org.dependencytrack.parser.nvd.api20.ModelConverter.convert; import static org.dependencytrack.parser.nvd.api20.ModelConverter.convertConfigurations; -import static org.dependencytrack.util.PersistenceUtil.assertPersistent; /** * A {@link Subscriber} that mirrors the content of the NVD through the NVD API 2.0. * * @since 4.10.0 */ -public class NistApiMirrorTask implements Subscriber { +public class NistApiMirrorTask extends AbstractNistMirrorTask implements Subscriber { private static final Logger LOGGER = Logger.getLogger(NistApiMirrorTask.class); @@ -175,12 +166,15 @@ public void inform(final Event e) { executor.submit(() -> { try (final var qm = new QueryManager().withL2CacheDisabled()) { qm.getPersistenceManager().setProperty(PROPERTY_PERSISTENCE_BY_REACHABILITY_AT_COMMIT, "false"); + qm.getPersistenceManager().setProperty(PROPERTY_RETAIN_VALUES, "true"); + qm.getPersistenceManager().addInstanceLifecycleListener(new IndexingInstanceLifecycleListener(Event::dispatch), + Vulnerability.class, VulnerableSoftware.class); + qm.getPersistenceManager().addInstanceLifecycleListener(new L2CacheEvictingInstanceLifecycleListener(qm), + AffectedVersionAttribution.class, Vulnerability.class, VulnerableSoftware.class); - // Note: persistentVuln is in HOLLOW state (all fields except ID are unloaded). - // https://www.datanucleus.org/products/accessplatform_6_0/jdo/persistence.html#lifecycle final Vulnerability persistentVuln = synchronizeVulnerability(qm, vuln); synchronizeVulnerableSoftware(qm, persistentVuln, vsList); - } catch (Exception ex) { + } catch (RuntimeException ex) { LOGGER.error("An unexpected error occurred while processing %s".formatted(vuln.getVulnId()), ex); } finally { final int currentNumMirrored = numMirrored.incrementAndGet(); @@ -225,149 +219,13 @@ public void inform(final Event e) { } if (updateLastModified(lastModified)) { - Event.dispatch(new IndexEvent(Action.COMMIT, Vulnerability.class)); + Event.dispatch(new IndexEvent(IndexEvent.Action.COMMIT, Vulnerability.class)); + Event.dispatch(new IndexEvent(IndexEvent.Action.COMMIT, VulnerableSoftware.class)); } Event.dispatch(new EpssMirrorEvent()); } - private static Vulnerability synchronizeVulnerability(final QueryManager qm, final Vulnerability vuln) { - final Pair vulnIndexEventPair = qm.runInTransaction(trx -> { - trx.setSerializeRead(true); // SELECT ... FOR UPDATE - - Vulnerability persistentVuln = getVulnerabilityByCveId(qm, vuln.getVulnId()); - if (persistentVuln == null) { - persistentVuln = qm.getPersistenceManager().makePersistent(vuln); - return Pair.of(persistentVuln, new IndexEvent(Action.CREATE, persistentVuln)); - } else { - final Map diffs = updateVulnerability(persistentVuln, vuln); - if (!diffs.isEmpty()) { - LOGGER.debug("%s has changed: %s".formatted(vuln.getVulnId(), diffs)); - return Pair.of(persistentVuln, new IndexEvent(Action.UPDATE, persistentVuln)); - } - - LOGGER.debug("%s has not changed".formatted(vuln.getVulnId())); - return Pair.of(persistentVuln, null); - } - }); - - final IndexEvent indexEvent = vulnIndexEventPair.getRight(); - final Vulnerability persistentVuln = vulnIndexEventPair.getLeft(); - - if (indexEvent != null) { - Event.dispatch(indexEvent); - } - - return persistentVuln; - } - - private static void synchronizeVulnerableSoftware(final QueryManager qm, final Vulnerability persistentVuln, final List vsList) { - qm.runInTransaction(tx -> { - tx.setSerializeRead(false); - - // Get all VulnerableSoftware records that are currently associated with the vulnerability. - // Note: For SOME ODD REASON, duplicate (as in, same database ID and all) VulnerableSoftware - // records are returned, when operating on data that was originally created by the feed-based - // NistMirrorTask. We thus have to deduplicate here. - final List vsOldList = persistentVuln.getVulnerableSoftware().stream().distinct().toList(); - LOGGER.trace("%s: Existing VS: %d".formatted(persistentVuln.getVulnId(), vsOldList.size())); - - // Get attributions for all existing VulnerableSoftware records. - final Map> attributionsByVsId = - qm.getAffectedVersionAttributions(persistentVuln, vsOldList).stream() - .collect(groupingBy(attribution -> attribution.getVulnerableSoftware().getId())); - for (final VulnerableSoftware vsOld : vsOldList) { - vsOld.setAffectedVersionAttributions(attributionsByVsId.get(vsOld.getId())); - } - - // Based on the lists of currently reported, and previously reported VulnerableSoftware records, - // divide the previously reported ones into lists of records to keep, and records to remove. - // Records to keep are removed from vsList. Remaining records in vsList thus are entirely new. - final var vsListToRemove = new ArrayList(); - final var vsListToKeep = new ArrayList(); - for (final VulnerableSoftware vsOld : vsOldList) { - if (vsList.removeIf(vsOld::equalsIgnoringDatastoreIdentity)) { - vsListToKeep.add(vsOld); - } else { - final List attributions = vsOld.getAffectedVersionAttributions(); - if (attributions == null || attributions.isEmpty()) { - // DT versions prior to 4.7.0 did not record attributions. - // Drop the VulnerableSoftware for now. If it was previously - // reported by another source, it will be recorded and attributed - // whenever that source is mirrored again. - vsListToRemove.add(vsOld); - continue; - } - - final boolean previouslyReportedByNvd = attributions.stream() - .anyMatch(attr -> attr.getSource() == Source.NVD); - final boolean previouslyReportedByOthers = !previouslyReportedByNvd; - - if (previouslyReportedByOthers) { - vsListToKeep.add(vsOld); - } else { - vsListToRemove.add(vsOld); - } - } - } - LOGGER.trace("%s: vsListToKeep: %d".formatted(persistentVuln.getVulnId(), vsListToKeep.size())); - LOGGER.trace("%s: vsListToRemove: %d".formatted(persistentVuln.getVulnId(), vsListToRemove.size())); - - // Remove attributions for VulnerableSoftware records that are no longer reported. - if (!vsListToRemove.isEmpty()) { - qm.deleteAffectedVersionAttributions(persistentVuln, vsListToRemove, Source.NVD); - } - - final var attributionDate = new Date(); - - // For VulnerableSoftware records that existed before, update the lastSeen timestamp. - for (final VulnerableSoftware oldVs : vsListToKeep) { - oldVs.getAffectedVersionAttributions().stream() - .filter(attribution -> attribution.getSource() == Source.NVD) - .findAny() - .ifPresent(attribution -> attribution.setLastSeen(attributionDate)); - } - - // For VulnerableSoftware records that are newly reported for this vulnerability, check if any matching - // records exist in the database that are currently associated with other (or no) vulnerabilities. - for (final VulnerableSoftware vs : vsList) { - final VulnerableSoftware existingVs = qm.getVulnerableSoftwareByCpe23( - vs.getCpe23(), - vs.getVersionEndExcluding(), - vs.getVersionEndIncluding(), - vs.getVersionStartExcluding(), - vs.getVersionStartIncluding() - ); - if (existingVs != null) { - final boolean hasAttribution = qm.hasAffectedVersionAttribution(persistentVuln, existingVs, Source.NVD); - if (!hasAttribution) { - LOGGER.trace("%s: Adding attribution".formatted(persistentVuln.getVulnId())); - final AffectedVersionAttribution attribution = createAttribution(persistentVuln, existingVs, attributionDate); - qm.getPersistenceManager().makePersistent(attribution); - } else { - LOGGER.debug("%s: Encountered dangling attribution; Re-using by updating firstSeen and lastSeen timestamps".formatted(persistentVuln.getVulnId())); - final AffectedVersionAttribution existingAttribution = qm.getAffectedVersionAttribution(persistentVuln, existingVs, Source.NVD); - existingAttribution.setFirstSeen(attributionDate); - existingAttribution.setLastSeen(attributionDate); - } - vsListToKeep.add(existingVs); - } else { - LOGGER.trace("%s: Creating new VS".formatted(persistentVuln.getVulnId())); - final VulnerableSoftware persistentVs = qm.getPersistenceManager().makePersistent(vs); - final AffectedVersionAttribution attribution = createAttribution(persistentVuln, persistentVs, attributionDate); - qm.getPersistenceManager().makePersistent(attribution); - vsListToKeep.add(persistentVs); - } - } - - LOGGER.trace("%s: Final vsList: %d".formatted(persistentVuln.getVulnId(), vsListToKeep.size())); - if (!Objects.equals(persistentVuln.getVulnerableSoftware(), vsListToKeep)) { - LOGGER.trace("%s: vsList has changed: %s".formatted(persistentVuln.getVulnId(), new Diff(persistentVuln.getVulnerableSoftware(), vsListToKeep))); - persistentVuln.setVulnerableSoftware(vsListToKeep); - } - }); - } - private static NvdCveClient createApiClient(final String apiUrl, final String apiKey, final long lastModifiedEpochSeconds) { final NvdCveClientBuilder clientBuilder = aNvdCveApi() .withHttpClientSupplier(new HttpClientSupplier(apiKey != null)) @@ -409,92 +267,6 @@ private static boolean updateLastModified(final ZonedDateTime lastModifiedDateTi return true; } - private static AffectedVersionAttribution createAttribution(final Vulnerability vuln, final VulnerableSoftware vs, - final Date attributionDate) { - final var attribution = new AffectedVersionAttribution(); - attribution.setSource(Source.NVD); - attribution.setVulnerability(vuln); - attribution.setVulnerableSoftware(vs); - attribution.setFirstSeen(attributionDate); - attribution.setLastSeen(attributionDate); - return attribution; - } - - /** - * Get a {@link Vulnerability} by its CVE ID (implying the source {@link Source#NVD}). - *

- * It differs from {@link QueryManager#getVulnerabilityByVulnId(String, String)} in that it does not fetch any - * adjacent relationships (e.g. affected components and aliases). - * - * @param qm The {@link QueryManager} to use - * @param cveId The CVE ID to look for - * @return The {@link Vulnerability} matching the CVE ID, or {@code null} when no match was found - */ - private static Vulnerability getVulnerabilityByCveId(final QueryManager qm, final String cveId) { - final Query query = qm.getPersistenceManager().newQuery(Vulnerability.class); - query.setFilter("source == :source && vulnId == :cveId"); - query.setNamedParameters(Map.of( - "source", Source.NVD.name(), - "cveId", cveId - )); - try { - return query.executeUnique(); - } finally { - query.closeAll(); - } - } - - /** - * Update an existing, persistent {@link Vulnerability} with data as reported by the NVD. - *

- * It differs from {@link QueryManager#updateVulnerability(Vulnerability, boolean)} in that it keeps track of - * which fields are modified, and assumes the to-be-updated {@link Vulnerability} to be persistent, and enrolled - * in an active {@link javax.jdo.Transaction}. - * - * @param existingVuln The existing {@link Vulnerability} to update - * @param reportedVuln The {@link Vulnerability} as reported by the NVD - * @return A {@link Map} holding the differences of all updated fields - */ - private static Map updateVulnerability(final Vulnerability existingVuln, final Vulnerability reportedVuln) { - assertPersistent(existingVuln, "existingVuln must be persistent in order for changes to be effective"); - - final var differ = new Differ<>(existingVuln, reportedVuln); - differ.applyIfChanged("title", Vulnerability::getTitle, existingVuln::setTitle); - differ.applyIfChanged("subTitle", Vulnerability::getSubTitle, existingVuln::setSubTitle); - differ.applyIfChanged("description", Vulnerability::getDescription, existingVuln::setDescription); - differ.applyIfChanged("detail", Vulnerability::getDetail, existingVuln::setDetail); - differ.applyIfChanged("recommendation", Vulnerability::getRecommendation, existingVuln::setRecommendation); - differ.applyIfChanged("references", Vulnerability::getReferences, existingVuln::setReferences); - differ.applyIfChanged("credits", Vulnerability::getCredits, existingVuln::setCredits); - differ.applyIfChanged("created", Vulnerability::getCreated, existingVuln::setCreated); - differ.applyIfChanged("published", Vulnerability::getPublished, existingVuln::setPublished); - differ.applyIfChanged("updated", Vulnerability::getUpdated, existingVuln::setUpdated); - differ.applyIfNonEmptyAndChanged("cwes", Vulnerability::getCwes, existingVuln::setCwes); - // Calling setSeverity nulls all CVSS and OWASP RR fields. getSeverity calculates the severity on-the-fly, - // and will return UNASSIGNED even when no severity is set explicitly. Thus, calling setSeverity - // must happen before CVSS and OWASP RR fields are set, to avoid null-ing them again. - differ.applyIfChanged("severity", Vulnerability::getSeverity, existingVuln::setSeverity); - differ.applyIfChanged("cvssV2BaseScore", Vulnerability::getCvssV2BaseScore, existingVuln::setCvssV2BaseScore); - differ.applyIfChanged("cvssV2ImpactSubScore", Vulnerability::getCvssV2ImpactSubScore, existingVuln::setCvssV2ImpactSubScore); - differ.applyIfChanged("cvssV2ExploitabilitySubScore", Vulnerability::getCvssV2ExploitabilitySubScore, existingVuln::setCvssV2ExploitabilitySubScore); - differ.applyIfChanged("cvssV2Vector", Vulnerability::getCvssV2Vector, existingVuln::setCvssV2Vector); - differ.applyIfChanged("cvssV3BaseScore", Vulnerability::getCvssV3BaseScore, existingVuln::setCvssV3BaseScore); - differ.applyIfChanged("cvssV3ImpactSubScore", Vulnerability::getCvssV3ImpactSubScore, existingVuln::setCvssV3ImpactSubScore); - differ.applyIfChanged("cvssV3ExploitabilitySubScore", Vulnerability::getCvssV3ExploitabilitySubScore, existingVuln::setCvssV3ExploitabilitySubScore); - differ.applyIfChanged("cvssV3Vector", Vulnerability::getCvssV3Vector, existingVuln::setCvssV3Vector); - differ.applyIfChanged("owaspRRLikelihoodScore", Vulnerability::getOwaspRRLikelihoodScore, existingVuln::setOwaspRRLikelihoodScore); - differ.applyIfChanged("owaspRRTechnicalImpactScore", Vulnerability::getOwaspRRTechnicalImpactScore, existingVuln::setOwaspRRTechnicalImpactScore); - differ.applyIfChanged("owaspRRBusinessImpactScore", Vulnerability::getOwaspRRBusinessImpactScore, existingVuln::setOwaspRRBusinessImpactScore); - differ.applyIfChanged("owaspRRVector", Vulnerability::getOwaspRRVector, existingVuln::setOwaspRRVector); - differ.applyIfChanged("vulnerableVersions", Vulnerability::getVulnerableVersions, existingVuln::setVulnerableVersions); - differ.applyIfChanged("patchedVersions", Vulnerability::getPatchedVersions, existingVuln::setPatchedVersions); - // EPSS is an additional enrichment that no source currently provides natively. We don't want EPSS scores of CVEs to be purged. - differ.applyIfNonNullAndChanged("epssScore", Vulnerability::getEpssScore, existingVuln::setEpssScore); - differ.applyIfNonNullAndChanged("epssPercentile", Vulnerability::getEpssPercentile, existingVuln::setEpssPercentile); - - return differ.getDiffs(); - } - private static final class HttpClientSupplier implements HttpAsyncClientSupplier { private final boolean isApiKeyProvided; diff --git a/src/main/java/org/dependencytrack/tasks/NistMirrorTask.java b/src/main/java/org/dependencytrack/tasks/NistMirrorTask.java index 85d1ab6d04..9f7ebd6093 100644 --- a/src/main/java/org/dependencytrack/tasks/NistMirrorTask.java +++ b/src/main/java/org/dependencytrack/tasks/NistMirrorTask.java @@ -41,13 +41,19 @@ import org.apache.http.conn.ConnectTimeoutException; import org.dependencytrack.common.HttpClientPool; import org.dependencytrack.event.EpssMirrorEvent; +import org.dependencytrack.event.IndexEvent; import org.dependencytrack.event.NistApiMirrorEvent; import org.dependencytrack.event.NistMirrorEvent; +import org.dependencytrack.model.AffectedVersionAttribution; +import org.dependencytrack.model.Vulnerability; +import org.dependencytrack.model.VulnerableSoftware; import org.dependencytrack.notification.NotificationConstants; import org.dependencytrack.notification.NotificationGroup; import org.dependencytrack.notification.NotificationScope; import org.dependencytrack.parser.nvd.NvdParser; import org.dependencytrack.persistence.QueryManager; +import org.dependencytrack.persistence.listener.IndexingInstanceLifecycleListener; +import org.dependencytrack.persistence.listener.L2CacheEvictingInstanceLifecycleListener; import java.io.BufferedReader; import java.io.Closeable; @@ -60,13 +66,17 @@ import java.net.SocketTimeoutException; import java.net.URL; import java.nio.file.Files; +import java.nio.file.Path; import java.nio.file.StandardCopyOption; import java.time.Duration; import java.util.Calendar; import java.util.Date; +import java.util.List; import java.util.zip.GZIPInputStream; import static io.github.resilience4j.core.IntervalFunction.ofExponentialBackoff; +import static org.datanucleus.PropertyNames.PROPERTY_PERSISTENCE_BY_REACHABILITY_AT_COMMIT; +import static org.datanucleus.PropertyNames.PROPERTY_RETAIN_VALUES; import static org.dependencytrack.model.ConfigPropertyConstants.VULNERABILITY_SOURCE_NVD_API_DOWNLOAD_FEEDS; import static org.dependencytrack.model.ConfigPropertyConstants.VULNERABILITY_SOURCE_NVD_API_ENABLED; import static org.dependencytrack.model.ConfigPropertyConstants.VULNERABILITY_SOURCE_NVD_ENABLED; @@ -78,7 +88,7 @@ * @author Steve Springett * @since 3.0.0 */ -public class NistMirrorTask implements LoggableSubscriber { +public class NistMirrorTask extends AbstractNistMirrorTask implements LoggableSubscriber { private enum ResourceType { CVE_YEAR_DATA, @@ -89,7 +99,7 @@ private enum ResourceType { NONE // DO NOT PARSE THIS TYPE } - public static final String NVD_MIRROR_DIR = Config.getInstance().getDataDirectorty().getAbsolutePath() + File.separator + "nist"; + public static final Path DEFAULT_NVD_MIRROR_DIR = Config.getInstance().getDataDirectorty().toPath().resolve("nist").toAbsolutePath(); private static final String CVE_JSON_11_MODIFIED_URL = "/json/cve/1.1/nvdcve-1.1-modified.json.gz"; private static final String CVE_JSON_11_BASE_URL = "/json/cve/1.1/nvdcve-1.1-%d.json.gz"; private static final String CVE_JSON_11_MODIFIED_META = "/json/cve/1.1/nvdcve-1.1-modified.meta"; @@ -133,9 +143,16 @@ private enum ResourceType { .bindTo(Metrics.getRegistry()); } + private final Path mirrorDirPath; private boolean mirroredWithoutErrors = true; public NistMirrorTask() { + this(DEFAULT_NVD_MIRROR_DIR); + } + + NistMirrorTask(final Path mirrorDirPath) { + this.mirrorDirPath = mirrorDirPath; + try (final QueryManager qm = new QueryManager()) { this.isEnabled = qm.isEnabled(VULNERABILITY_SOURCE_NVD_ENABLED); this.isApiEnabled = qm.isEnabled(VULNERABILITY_SOURCE_NVD_API_ENABLED); @@ -147,7 +164,7 @@ public NistMirrorTask() { if (this.nvdFeedsUrl.endsWith("/")) { this.nvdFeedsUrl = this.nvdFeedsUrl.substring(0, this.nvdFeedsUrl.length()-1); } - } + } } /** @@ -174,7 +191,7 @@ public void inform(final Event e) { final long start = System.currentTimeMillis(); LOGGER.info("Starting NIST mirroring task"); - final File mirrorPath = new File(NVD_MIRROR_DIR); + final File mirrorPath = mirrorDirPath.toFile(); setOutputDir(mirrorPath.getAbsolutePath()); getAllFiles(); final long end = System.currentTimeMillis(); @@ -363,8 +380,10 @@ private void uncompress(final File file, final ResourceType resourceType) { final long start = System.currentTimeMillis(); if (ResourceType.CVE_YEAR_DATA == resourceType || ResourceType.CVE_MODIFIED_DATA == resourceType) { if (!isApiEnabled) { - final NvdParser parser = new NvdParser(); + final NvdParser parser = new NvdParser(this::processVulnerability); parser.parse(uncompressedFile); + Event.dispatch(new IndexEvent(IndexEvent.Action.COMMIT, Vulnerability.class)); + Event.dispatch(new IndexEvent(IndexEvent.Action.COMMIT, VulnerableSoftware.class)); } else { LOGGER.debug(""" %s was successfully downloaded and uncompressed, but will not be parsed because \ @@ -378,6 +397,22 @@ private void uncompress(final File file, final ResourceType resourceType) { metricParseTime += end - start; } + private void processVulnerability(final Vulnerability vuln, final List vsList) { + try (final var qm = new QueryManager().withL2CacheDisabled()) { + qm.getPersistenceManager().setProperty(PROPERTY_PERSISTENCE_BY_REACHABILITY_AT_COMMIT, "false"); + qm.getPersistenceManager().setProperty(PROPERTY_RETAIN_VALUES, "true"); + qm.getPersistenceManager().addInstanceLifecycleListener(new IndexingInstanceLifecycleListener(Event::dispatch), + Vulnerability.class, VulnerableSoftware.class); + qm.getPersistenceManager().addInstanceLifecycleListener(new L2CacheEvictingInstanceLifecycleListener(qm), + AffectedVersionAttribution.class, Vulnerability.class, VulnerableSoftware.class); + + final Vulnerability persistentVuln = synchronizeVulnerability(qm, vuln); + synchronizeVulnerableSoftware(qm, persistentVuln, vsList); + } catch (RuntimeException e) { + LOGGER.error("An unexpected error occurred while processing %s".formatted(vuln.getVulnId()), e); + } + } + /** * Closes a closable object. * @param object the object to close diff --git a/src/main/java/org/dependencytrack/util/PersistenceUtil.java b/src/main/java/org/dependencytrack/util/PersistenceUtil.java index a2c0a73da2..f92ac11abd 100644 --- a/src/main/java/org/dependencytrack/util/PersistenceUtil.java +++ b/src/main/java/org/dependencytrack/util/PersistenceUtil.java @@ -201,6 +201,22 @@ public static void assertNonPersistent(final Object object, final String message } } + /** + * Utility method to ensure that a given {@link Collection} is not in a persistent state. + * + * @param objects The {@link Collection} to check the state of + * @param message Message to use for the exception, if object is persistent + * @see #assertNonPersistent(Object, String) + * @since 4.11.0 + */ + public static void assertNonPersistentAll(final Collection objects, final String message) { + if (objects == null || objects.isEmpty()) { + return; + } + + objects.forEach(object -> assertNonPersistent(object, message)); + } + private static boolean isPersistent(final Object object) { final ObjectState objectState = JDOHelper.getObjectState(object); return objectState == PERSISTENT_CLEAN diff --git a/src/test/java/org/dependencytrack/tasks/NistMirrorTaskTest.java b/src/test/java/org/dependencytrack/tasks/NistMirrorTaskTest.java new file mode 100644 index 0000000000..d9d1284dd8 --- /dev/null +++ b/src/test/java/org/dependencytrack/tasks/NistMirrorTaskTest.java @@ -0,0 +1,175 @@ +/* + * This file is part of Dependency-Track. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * Copyright (c) OWASP Foundation. All Rights Reserved. + */ +package org.dependencytrack.tasks; + +import com.github.tomakehurst.wiremock.junit.WireMockRule; +import org.dependencytrack.PersistenceCapableTest; +import org.dependencytrack.event.NistMirrorEvent; +import org.dependencytrack.model.Severity; +import org.dependencytrack.model.Vulnerability; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; + +import java.io.ByteArrayOutputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.List; +import java.util.zip.GZIPOutputStream; + +import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; +import static com.github.tomakehurst.wiremock.client.WireMock.anyUrl; +import static com.github.tomakehurst.wiremock.client.WireMock.get; +import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo; +import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.options; +import static org.apache.commons.io.IOUtils.resourceToByteArray; +import static org.assertj.core.api.Assertions.assertThat; +import static org.dependencytrack.model.ConfigPropertyConstants.VULNERABILITY_SOURCE_NVD_ENABLED; +import static org.dependencytrack.model.ConfigPropertyConstants.VULNERABILITY_SOURCE_NVD_FEEDS_URL; + +public class NistMirrorTaskTest extends PersistenceCapableTest { + + @Rule + public WireMockRule wireMock = new WireMockRule(options().dynamicPort()); + + @Before + public void setUp() { + qm.createConfigProperty( + VULNERABILITY_SOURCE_NVD_ENABLED.getGroupName(), + VULNERABILITY_SOURCE_NVD_ENABLED.getPropertyName(), + "true", + VULNERABILITY_SOURCE_NVD_ENABLED.getPropertyType(), + VULNERABILITY_SOURCE_NVD_ENABLED.getDescription() + ); + qm.createConfigProperty( + VULNERABILITY_SOURCE_NVD_FEEDS_URL.getGroupName(), + VULNERABILITY_SOURCE_NVD_FEEDS_URL.getPropertyName(), + wireMock.baseUrl(), + VULNERABILITY_SOURCE_NVD_FEEDS_URL.getPropertyType(), + VULNERABILITY_SOURCE_NVD_FEEDS_URL.getDescription() + ); + } + + @Test + public void test() throws Exception { + // Gzip the JSON feed file to match the format returned by the NVD. + // NB: The file is a truncated version of an actual feed file. + // It only contains the first three CVEs. Truncation was done with jq: + // jq 'del(.CVE_Items[3:])' ~/.dependency-track/nist/nvdcve-1.1-2022.json > nvdcve-1.1-2022.json + final var byteArrayOutputStream = new ByteArrayOutputStream(); + try (final var gzipOutputStream = new GZIPOutputStream(byteArrayOutputStream)) { + gzipOutputStream.write(resourceToByteArray("/unit/nvd/feed/nvdcve-1.1-2022.json")); + } + + wireMock.stubFor(get(anyUrl()) + .willReturn(aResponse() + .withStatus(404))); + wireMock.stubFor(get(urlPathEqualTo("/json/cve/1.1/nvdcve-1.1-2022.json.gz")) + .willReturn(aResponse() + .withBody(byteArrayOutputStream.toByteArray()))); + wireMock.stubFor(get(urlPathEqualTo("/json/cve/1.1/nvdcve-1.1-2022.meta")) + .willReturn(aResponse() + .withBody(resourceToByteArray("/unit/nvd/feed/nvdcve-1.1-2022.meta")))); + + final Path mirrorDirPath = Files.createTempDirectory(null); + mirrorDirPath.toFile().deleteOnExit(); + + new NistMirrorTask(mirrorDirPath).inform(new NistMirrorEvent()); + + assertThat(mirrorDirPath.resolve("nvdcve-1.1-2022.json.gz")).exists(); + assertThat(mirrorDirPath.resolve("nvdcve-1.1-2022.json")).exists(); + assertThat(mirrorDirPath.resolve("nvdcve-1.1-2022.meta")).exists(); + + final List vulns = qm.getVulnerabilities().getList(Vulnerability.class); + assertThat(vulns).satisfiesExactlyInAnyOrder( + vuln -> { + assertThat(vuln.getVulnId()).isEqualTo("CVE-2022-0001"); + assertThat(vuln.getSource()).isEqualTo("NVD"); + assertThat(vuln.getDescription()).isEqualTo(""" + Non-transparent sharing of branch predictor selectors between contexts \ + in some Intel(R) Processors may allow an authorized user to potentially \ + enable information disclosure via local access."""); + assertThat(vuln.getReferences()).isEqualTo(""" + * [https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00598.html](https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00598.html) + * [http://www.openwall.com/lists/oss-security/2022/03/18/2](http://www.openwall.com/lists/oss-security/2022/03/18/2) + * [https://www.oracle.com/security-alerts/cpujul2022.html](https://www.oracle.com/security-alerts/cpujul2022.html) + * [https://security.netapp.com/advisory/ntap-20220818-0004/](https://security.netapp.com/advisory/ntap-20220818-0004/) + * [https://www.kb.cert.org/vuls/id/155143](https://www.kb.cert.org/vuls/id/155143)"""); + assertThat(vuln.getPublished()).isInSameMinuteAs("2022-03-11T18:15:00Z"); + assertThat(vuln.getUpdated()).isInSameMinuteAs("2024-04-09T15:15:00Z"); + assertThat(vuln.getCvssV2BaseScore()).isEqualByComparingTo("2.1"); + assertThat(vuln.getCvssV2ExploitabilitySubScore()).isEqualByComparingTo("3.9"); + assertThat(vuln.getCvssV2ImpactSubScore()).isEqualByComparingTo("2.9"); + assertThat(vuln.getCvssV2Vector()).isEqualTo("(AV:L/AC:L/Au:N/C:P/I:N/A:N)"); + assertThat(vuln.getCvssV3BaseScore()).isEqualByComparingTo("6.5"); + assertThat(vuln.getCvssV3ExploitabilitySubScore()).isEqualByComparingTo("2.0"); + assertThat(vuln.getCvssV3ImpactSubScore()).isEqualByComparingTo("4.0"); + assertThat(vuln.getCvssV3Vector()).isEqualTo("CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N"); + assertThat(vuln.getSeverity()).isEqualTo(Severity.MEDIUM); + }, + vuln -> { + assertThat(vuln.getVulnId()).isEqualTo("CVE-2022-0002"); + assertThat(vuln.getSource()).isEqualTo("NVD"); + assertThat(vuln.getDescription()).isEqualTo(""" + Non-transparent sharing of branch predictor within a context in some \ + Intel(R) Processors may allow an authorized user to potentially enable \ + information disclosure via local access."""); + assertThat(vuln.getReferences()).isEqualTo(""" + * [https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00598.html](https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00598.html) + * [http://www.openwall.com/lists/oss-security/2022/03/18/2](http://www.openwall.com/lists/oss-security/2022/03/18/2) + * [https://www.oracle.com/security-alerts/cpujul2022.html](https://www.oracle.com/security-alerts/cpujul2022.html) + * [https://security.netapp.com/advisory/ntap-20220818-0004/](https://security.netapp.com/advisory/ntap-20220818-0004/)"""); + assertThat(vuln.getPublished()).isInSameMinuteAs("2022-03-11T18:15:00Z"); + assertThat(vuln.getUpdated()).isInSameMinuteAs("2022-08-19T12:28:00Z"); + assertThat(vuln.getCvssV2BaseScore()).isEqualByComparingTo("2.1"); + assertThat(vuln.getCvssV2ExploitabilitySubScore()).isEqualByComparingTo("3.9"); + assertThat(vuln.getCvssV2ImpactSubScore()).isEqualByComparingTo("2.9"); + assertThat(vuln.getCvssV2Vector()).isEqualTo("(AV:L/AC:L/Au:N/C:P/I:N/A:N)"); + assertThat(vuln.getCvssV3BaseScore()).isEqualByComparingTo("6.5"); + assertThat(vuln.getCvssV3ExploitabilitySubScore()).isEqualByComparingTo("2.0"); + assertThat(vuln.getCvssV3ImpactSubScore()).isEqualByComparingTo("4.0"); + assertThat(vuln.getCvssV3Vector()).isEqualTo("CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N"); + assertThat(vuln.getSeverity()).isEqualTo(Severity.MEDIUM); + }, + vuln -> { + assertThat(vuln.getVulnId()).isEqualTo("CVE-2022-0004"); + assertThat(vuln.getSource()).isEqualTo("NVD"); + assertThat(vuln.getDescription()).isEqualTo(""" + Hardware debug modes and processor INIT setting that allow override of \ + locks for some Intel(R) Processors in Intel(R) Boot Guard and Intel(R) \ + TXT may allow an unauthenticated user to potentially enable escalation \ + of privilege via physical access."""); + assertThat(vuln.getReferences()).isEqualTo(""" + * [https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00613.html](https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00613.html)"""); + assertThat(vuln.getPublished()).isInSameMinuteAs("2022-05-12T17:15:00Z"); + assertThat(vuln.getUpdated()).isInSameMinuteAs("2022-06-10T20:52:00Z"); + assertThat(vuln.getCvssV2BaseScore()).isEqualByComparingTo("7.2"); + assertThat(vuln.getCvssV2ExploitabilitySubScore()).isEqualByComparingTo("3.9"); + assertThat(vuln.getCvssV2ImpactSubScore()).isEqualByComparingTo("10.0"); + assertThat(vuln.getCvssV2Vector()).isEqualTo("(AV:L/AC:L/Au:N/C:C/I:C/A:C)"); + assertThat(vuln.getCvssV3BaseScore()).isEqualByComparingTo("6.8"); + assertThat(vuln.getCvssV3ExploitabilitySubScore()).isEqualByComparingTo("0.9"); + assertThat(vuln.getCvssV3ImpactSubScore()).isEqualByComparingTo("5.9"); + assertThat(vuln.getCvssV3Vector()).isEqualTo("CVSS:3.0/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"); + assertThat(vuln.getSeverity()).isEqualTo(Severity.MEDIUM); + } + ); + } + +} \ No newline at end of file diff --git a/src/test/resources/unit/nvd/feed/nvdcve-1.1-2022.json b/src/test/resources/unit/nvd/feed/nvdcve-1.1-2022.json new file mode 100644 index 0000000000..4d1835e44b --- /dev/null +++ b/src/test/resources/unit/nvd/feed/nvdcve-1.1-2022.json @@ -0,0 +1,16675 @@ +{ + "CVE_data_type": "CVE", + "CVE_data_format": "MITRE", + "CVE_data_version": "4.0", + "CVE_data_numberOfCVEs": "24682", + "CVE_data_timestamp": "2024-05-01T07:00Z", + "CVE_Items": [ + { + "cve": { + "data_type": "CVE", + "data_format": "MITRE", + "data_version": "4.0", + "CVE_data_meta": { + "ID": "CVE-2022-0001", + "ASSIGNER": "secure@intel.com" + }, + "problemtype": { + "problemtype_data": [ + { + "description": [ + { + "lang": "en", + "value": "NVD-CWE-noinfo" + } + ] + } + ] + }, + "references": { + "reference_data": [ + { + "url": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00598.html", + "name": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00598.html", + "refsource": "MISC", + "tags": [ + "Vendor Advisory" + ] + }, + { + "url": "http://www.openwall.com/lists/oss-security/2022/03/18/2", + "name": "[oss-security] 20220318 Xen Security Advisory 398 v2 - Multiple speculative security issues", + "refsource": "MLIST", + "tags": [ + "Mailing List", + "Third Party Advisory" + ] + }, + { + "url": "https://www.oracle.com/security-alerts/cpujul2022.html", + "name": "N/A", + "refsource": "N/A", + "tags": [ + "Patch", + "Third Party Advisory" + ] + }, + { + "url": "https://security.netapp.com/advisory/ntap-20220818-0004/", + "name": "https://security.netapp.com/advisory/ntap-20220818-0004/", + "refsource": "CONFIRM", + "tags": [ + "Third Party Advisory" + ] + }, + { + "url": "https://www.kb.cert.org/vuls/id/155143", + "name": "VU#155143", + "refsource": "", + "tags": [] + } + ] + }, + "description": { + "description_data": [ + { + "lang": "en", + "value": "Non-transparent sharing of branch predictor selectors between contexts in some Intel(R) Processors may allow an authorized user to potentially enable information disclosure via local access." + } + ] + } + }, + "configurations": { + "CVE_data_version": "4.0", + "nodes": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4005:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4100:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4000:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4105:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_j5005:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n5000:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10110u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1005g1:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10210u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10310y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10210y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1035g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1035g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1035g1:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9300h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9400h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8265u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8200y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10510u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10510y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10710u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1065g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-9850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-9700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8565u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8500y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_m3-8100y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-7960x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-7940x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-7920x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-7900x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-7820x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-7800x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_9282:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_9242:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_9222:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_9221:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8280l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8280:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8276l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8276:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8270:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8268:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8260y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8260l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8260:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8256:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8253:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6262v:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6254:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6252n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6252:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6248:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6246:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6244:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6242:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6240:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6238t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6238l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6238:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6234:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6230t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6230n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6230:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6226:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6222v:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5222:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5220s:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5220:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5217:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5215l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5215:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4216:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4215:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4214y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4214:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4210:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4209t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4208:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_bronze_3204:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2288g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2278g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2275:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2295:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2265:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2255:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2223:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2245:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2225:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2235:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3265m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3245m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3275:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3245:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3275m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3223:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3265:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3225:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6210u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6212u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6240y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6240l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5220t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6209u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2286m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9880h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8365u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8665u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2278gel:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2278ge:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9980hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-9750hf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-9700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8210y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8310y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10110y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3235:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_5305u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10920x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9900x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9920x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9960x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9940x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_j5040:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n5030:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4125:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4025:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4120:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4020:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1030g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1030g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1000g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1000g1:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1060g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10940x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9820x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9800x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-7740x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-7640x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5220r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4210r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4214r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_bronze_3206r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10875h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10810u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10750h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10610u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10870h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6258r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6256:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6250l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6250:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6248r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6246r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6242r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6240r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6238r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6230r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6226r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6208u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4215r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4210t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10980hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10850k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10300h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10200h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10320:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10300t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10300:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10885h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-l16g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-l13g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-10885m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-10855m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1270p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1270:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1250p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1250:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5305u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5205u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6405u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1185g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1165g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1135g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1115g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1125g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1160g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1130g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1120g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1110g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_j6425:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_n6415:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j6413:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n6211:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1350:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1350p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1370:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1370p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1390:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1390p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1390t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11955m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11855m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11370h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11375h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1185g7e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1185gre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1180g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11800h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1195g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5318h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8380h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6328h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5320h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6330h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8353h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8354h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6348h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8376h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8356h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8376hl:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8380hl:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6328hl:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8360hl:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8358:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8352y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6338:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6330n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8380:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8351n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8368q:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8352s:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8358p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8352v:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8368:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6348:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6346:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6330:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8360y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6354:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6314u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6338n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4314:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4316:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5318y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5317:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6334:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6326:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4309y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6342:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4310:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6338t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5318s:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6336y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5318n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6312u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4310t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5320t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5320:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5315y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8352m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8362:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n5100:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n5105:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n6005:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n6000:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1115gre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1115g4e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10105t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10305:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10325:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10105:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10105f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10305t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11390h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10505:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11300h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1145g7e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1145gre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1140g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1145g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11260h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11320h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1155g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11950h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11980hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_7505:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6405:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6405t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6505:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6505t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6600:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6605:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_6305e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_6305:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6413e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6425re:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5942b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6200fe:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6211e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6212re:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6425e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6427fe:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5931b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5962b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5921b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8360h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11155mle:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11155mre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11555mle:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11555mre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11865mre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2386g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2388g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2378g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2378:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2374g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2314:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2334:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2356g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2324g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2336:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11850he:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-11100he:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d1700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d2700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g7400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g7400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1300:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_6600he:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-10855:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5920:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5925:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5905:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5905t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4504:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12300:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12100:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12100f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12300t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12100t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g6900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g6900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12800h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12650h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12500h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12450h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1280p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1270p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1260p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1250p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1240p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1220p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11865mld:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:a:oracle:communications_cloud_native_core_binding_support_function:22.1.3:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:a:oracle:communications_cloud_native_core_policy:22.2.0:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:a:oracle:communications_cloud_native_core_network_exposure_function:22.1.1:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ] + }, + "impact": { + "baseMetricV3": { + "cvssV3": { + "version": "3.1", + "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N", + "attackVector": "LOCAL", + "attackComplexity": "LOW", + "privilegesRequired": "LOW", + "userInteraction": "NONE", + "scope": "CHANGED", + "confidentialityImpact": "HIGH", + "integrityImpact": "NONE", + "availabilityImpact": "NONE", + "baseScore": 6.5, + "baseSeverity": "MEDIUM" + }, + "exploitabilityScore": 2.0, + "impactScore": 4.0 + }, + "baseMetricV2": { + "cvssV2": { + "version": "2.0", + "vectorString": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "accessVector": "LOCAL", + "accessComplexity": "LOW", + "authentication": "NONE", + "confidentialityImpact": "PARTIAL", + "integrityImpact": "NONE", + "availabilityImpact": "NONE", + "baseScore": 2.1 + }, + "severity": "LOW", + "exploitabilityScore": 3.9, + "impactScore": 2.9, + "acInsufInfo": false, + "obtainAllPrivilege": false, + "obtainUserPrivilege": false, + "obtainOtherPrivilege": false, + "userInteractionRequired": false + } + }, + "publishedDate": "2022-03-11T18:15Z", + "lastModifiedDate": "2024-04-09T15:15Z" + }, + { + "cve": { + "data_type": "CVE", + "data_format": "MITRE", + "data_version": "4.0", + "CVE_data_meta": { + "ID": "CVE-2022-0002", + "ASSIGNER": "secure@intel.com" + }, + "problemtype": { + "problemtype_data": [ + { + "description": [ + { + "lang": "en", + "value": "NVD-CWE-noinfo" + } + ] + } + ] + }, + "references": { + "reference_data": [ + { + "url": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00598.html", + "name": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00598.html", + "refsource": "MISC", + "tags": [ + "Vendor Advisory" + ] + }, + { + "url": "http://www.openwall.com/lists/oss-security/2022/03/18/2", + "name": "[oss-security] 20220318 Xen Security Advisory 398 v2 - Multiple speculative security issues", + "refsource": "MLIST", + "tags": [ + "Mailing List", + "Third Party Advisory" + ] + }, + { + "url": "https://www.oracle.com/security-alerts/cpujul2022.html", + "name": "N/A", + "refsource": "N/A", + "tags": [ + "Patch", + "Third Party Advisory" + ] + }, + { + "url": "https://security.netapp.com/advisory/ntap-20220818-0004/", + "name": "https://security.netapp.com/advisory/ntap-20220818-0004/", + "refsource": "CONFIRM", + "tags": [ + "Third Party Advisory" + ] + } + ] + }, + "description": { + "description_data": [ + { + "lang": "en", + "value": "Non-transparent sharing of branch predictor within a context in some Intel(R) Processors may allow an authorized user to potentially enable information disclosure via local access." + } + ] + } + }, + "configurations": { + "CVE_data_version": "4.0", + "nodes": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4005:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4100:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4000:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4105:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3355:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3350:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3455:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3450:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-e3930:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-e3940:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x7-e3950:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_j5005:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n5000:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10110u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1005g1:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10210u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10310y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10210y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1035g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1035g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1035g1:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9300h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9400h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8265u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8200y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10510u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10510y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10710u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1065g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-9850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-9700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8565u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8500y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_m3-8100y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-7960x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-7940x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-7920x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-7900x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-7820x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-7800x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_9282:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_9242:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_9222:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_9221:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8280l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8280:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8276l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8276:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8270:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8268:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8260y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8260l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8260:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8256:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8253:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6262v:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6254:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6252n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6252:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6248:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6246:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6244:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6242:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6240:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6238t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6238l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6238:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6234:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6230t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6230n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6230:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6226:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6222v:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5222:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5220s:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5220:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5217:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5215l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5215:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4216:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4215:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4214y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4214:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4210:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4209t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4208:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_bronze_3204:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2288g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2278g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2275:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2295:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2265:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2255:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2223:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2245:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2225:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-2235:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3265m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3245m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3275:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3245:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3275m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3223:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3265:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3225:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6210u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6212u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6240y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6240l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5220t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6209u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3308:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3336:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3338:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3508:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3538:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3558:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3708:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3750:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3758:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3808:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3850:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3858:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3830:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3950:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3955:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3958:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2286m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9880h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8365u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8665u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2278gel:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2278ge:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9980hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-9750hf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-9700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8210y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8310y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10110y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-3235:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-9400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_5305u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10920x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9900x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9920x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9960x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9940x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_j5040:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n5030:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_j4205:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4125:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4025:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3355e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4120:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4020:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3350e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_n4200:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-a3930:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-a3940:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1030g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1030g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1000g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1000g1:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1060g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-z8330:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-z8500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x7-z8700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-z8300:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10940x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9820x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-9800x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-7740x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-7640x:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-z8550:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-z8350:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x7-z8750:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5220r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4210r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4214r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_bronze_3206r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10875h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10810u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10750h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10610u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10870h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6258r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6256:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6250l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6250:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6248r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6246r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6242r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6240r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6238r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6230r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6226r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6208u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5218r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4215r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4210t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10980hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10850k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10300h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10200h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10320:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10300t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10300:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10885h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-l16g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-l13g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-10885m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-10855m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290te:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1290:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1270p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1270:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1250p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1250:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5305u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5205u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6405u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1185g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1165g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1135g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1115g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1125g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1160g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1130g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1120g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1110g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3436l:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3558r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3758r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3338r:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_j6425:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_n6415:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_n4200e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j6413:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3455e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n6211:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1350:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1350p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1370:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1370p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1390:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1390p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1390t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11955m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11855m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11370h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11375h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1185g7e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1185gre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1180g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11800h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1195g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5318h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8380h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6328h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5320h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6330h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8353h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8354h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6348h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8376h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8356h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8376hl:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8380hl:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6328hl:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8360hl:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8358:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8352y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6338:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6330n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8380:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8351n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8368q:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8352s:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8358p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8352v:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8368:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6348:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6346:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6330:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8360y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6354:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6314u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6338n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4314:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4316:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5318y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5317:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6334:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6326:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4309y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6342:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4310:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6338t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5318s:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6336y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5318n:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_6312u:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_silver_4310t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5320t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5320:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_gold_5315y:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8352m:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8362:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n5100:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n5105:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n6005:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n6000:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1115gre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1115g4e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10105t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10305:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10325:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10105:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10105f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10305t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11390h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10505:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11300h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1145g7e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1145gre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1140g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1145g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11260h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11320h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1155g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11950h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11980hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_7505:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6405:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6405t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6505:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6505t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6600:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6605:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_6305e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_6305:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-a3950:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-a3960:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_c3558rc:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6413e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6425re:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5942b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6200fe:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6211e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6212re:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6425e:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6427fe:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5931b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5962b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5921b:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_platinum_8360h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11155mle:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11155mre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11555mle:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11555mre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11865mre:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2386g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2388g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2378g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2378:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2374g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2314:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2334:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2356g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2324g:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_e-2336:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11850he:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-11100he:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d1700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d2700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g7400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g7400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1300:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_6600he:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-10855:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5920:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5925:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5905:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g5905t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4504:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12400:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12500:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12300:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12100:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12100f:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12300t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12100t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g6900:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:celeron_g6900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12800h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12650h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12500h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12450h:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1280p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1270p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-1260p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1250p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-1240p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-1220p:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-11865mld:-:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:h:intel:puma_7:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:a:oracle:communications_cloud_native_core_binding_support_function:22.1.3:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:a:oracle:communications_cloud_native_core_policy:22.2.0:*:*:*:*:*:*:*", + "cpe_name": [] + }, + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:a:oracle:communications_cloud_native_core_network_exposure_function:22.1.1:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ] + }, + "impact": { + "baseMetricV3": { + "cvssV3": { + "version": "3.1", + "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N", + "attackVector": "LOCAL", + "attackComplexity": "LOW", + "privilegesRequired": "LOW", + "userInteraction": "NONE", + "scope": "CHANGED", + "confidentialityImpact": "HIGH", + "integrityImpact": "NONE", + "availabilityImpact": "NONE", + "baseScore": 6.5, + "baseSeverity": "MEDIUM" + }, + "exploitabilityScore": 2.0, + "impactScore": 4.0 + }, + "baseMetricV2": { + "cvssV2": { + "version": "2.0", + "vectorString": "AV:L/AC:L/Au:N/C:P/I:N/A:N", + "accessVector": "LOCAL", + "accessComplexity": "LOW", + "authentication": "NONE", + "confidentialityImpact": "PARTIAL", + "integrityImpact": "NONE", + "availabilityImpact": "NONE", + "baseScore": 2.1 + }, + "severity": "LOW", + "exploitabilityScore": 3.9, + "impactScore": 2.9, + "acInsufInfo": false, + "obtainAllPrivilege": false, + "obtainUserPrivilege": false, + "obtainOtherPrivilege": false, + "userInteractionRequired": false + } + }, + "publishedDate": "2022-03-11T18:15Z", + "lastModifiedDate": "2022-08-19T12:28Z" + }, + { + "cve": { + "data_type": "CVE", + "data_format": "MITRE", + "data_version": "4.0", + "CVE_data_meta": { + "ID": "CVE-2022-0004", + "ASSIGNER": "secure@intel.com" + }, + "problemtype": { + "problemtype_data": [ + { + "description": [ + { + "lang": "en", + "value": "NVD-CWE-noinfo" + } + ] + } + ] + }, + "references": { + "reference_data": [ + { + "url": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00613.html", + "name": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00613.html", + "refsource": "MISC", + "tags": [ + "Vendor Advisory" + ] + } + ] + }, + "description": { + "description_data": [ + { + "lang": "en", + "value": "Hardware debug modes and processor INIT setting that allow override of locks for some Intel(R) Processors in Intel(R) Boot Guard and Intel(R) TXT may allow an unauthenticated user to potentially enable escalation of privilege via physical access." + } + ] + } + }, + "configurations": { + "CVE_data_version": "4.0", + "nodes": [ + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-12100_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12100:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-12100f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12100f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-12100t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12100t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-12300t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12300t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-12300_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-12300:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12600t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12600kf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12600hx_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600hx:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12600k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12600h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12600_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12600:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12500t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12500h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12500h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12500_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12500:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12450hx_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12450hx:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12450h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12450h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12400t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12400f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-12400_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-12400:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12700t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12700kf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12700k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12700h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12700f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12700_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12700:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12850hx_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12850hx:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12800hx_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12800hx:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12800h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12800h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12650hx_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12650hx:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-12650h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-12650h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-12950hx_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12950hx:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-12900t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-12900kf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-12900k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-12900hx_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900hx:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-12900hk_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-12900h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-12900f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-12900_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "16.0.15", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-12900:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-11100b_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-11100b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-11100he_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-11100he:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11260h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11260h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11300h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11300h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11320h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11320h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11400_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11400f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11400h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11400t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11500_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11500b_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11500h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11500he_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500he:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11500t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11600_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11600k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11600kf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-11600t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-11600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11370h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11370h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11375h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11375h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11390h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11390h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11600h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11600h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11700_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11700b_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11700f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11700k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11700kf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11700t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11800h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11800h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11850h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-11850he_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-11850he:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-11900_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-11900f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-11900h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-11900k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-11900kb_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900kb:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-11900kf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-11900t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-11950h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11950h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-11980hk_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-11980hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10100y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10105_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10105:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10105f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10105f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10105t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10105t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10110u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10110u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10110y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10110y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10300_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10300:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10300t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10300t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10305_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10305:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10305t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10305t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10320_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10320:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10325_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10325:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10980xe_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10980xe:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10980hk_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10980hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10940x_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10940x:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10920x_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10920x:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10910_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10910:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10900x_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900x:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10900te_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900te:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10900t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10900kf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10900k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10900f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10900e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10900_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10900:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10885h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10885h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10850k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10850k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-10850h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-10850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10875h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10875h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10870h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10870h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10850h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10810u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10810u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10750h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10750h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10710u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10710u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10700te_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700te:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10700t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10700kf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10700k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10700f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10510u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10510u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10510y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10510y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10700_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-10700e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-10700e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10600k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10610u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10610u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10600t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10600kf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600kf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10600_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10600:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10505_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10505:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10500te_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500te:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10500t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10500h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10500e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10500_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10500:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10400t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10400h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10400f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10400_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10400:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10310y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10310y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10310u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10310u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10300h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10300h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10210y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10210y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10210u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10210u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10200h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10200h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-10110y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-10110y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10100_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10100e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10100f_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100f:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10100te_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100te:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-10100t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.0.60", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-10100t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8000_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8000:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8000t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8000t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8020_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8020:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8100_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8100:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8100b_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8100b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8100h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8100h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8100t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8100t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8109u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8109u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8120_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8120:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8121u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8121u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8130u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8130u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8140u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8140u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8145u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8145u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8145ue_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8145ue:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8300_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8300:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8300t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8300t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-8350k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-8350k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8200y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8200y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8210y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8210y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8250u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8250u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8257u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8257u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8259u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8259u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8260u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8260u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8265u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8265u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8269u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8269u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8279u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8279u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8300h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8300h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8305g_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8305g:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8310y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8310y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8350u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8350u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8365u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8365u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8365ue_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8365ue:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8400_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8400:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8400b_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8400b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8400h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8400h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8400t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8420_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8420:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8420t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8420t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8500_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8500:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8500b_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8500b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8500t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8550_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8550:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8600_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8600:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8600k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8600k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8600t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8650_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8650:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8650k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8650k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-8700b_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-8700b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8086k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8086k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8500y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8500y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8510y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8510y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8550u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8550u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8557u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8557u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8559u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8559u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8560u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8560u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8565u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8565u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8569u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8569u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8650u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8650u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8665u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8665u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8665ue_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8665ue:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8670_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8670:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8670t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8670t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8700_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8700:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8700b_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8700b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8700k_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8700k:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8700t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8700t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8705g_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8705g:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8706g_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8706g:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8706g__firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8706g_:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8709g_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8709g:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8750h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8750h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8750hf_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8750hf:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8809g_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8809g:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i7-8850h_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i7-8850h:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i9-8950hk_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i9-8950hk:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_6305_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_6305:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_6305e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_6305e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_6600he_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_6600he:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_4205u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "12.0.90", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_4205u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_4305u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "12.0.90", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_4305u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_4305ue_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "12.0.90", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_4305ue:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j3060_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3060:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j3160_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3160:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j3355_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3355:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j3355e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3355e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j3455_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3455:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j3455e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j3455e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3000_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3000:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3010_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3010:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3050_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3050:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3060_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3060:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3150_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3150:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3160_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3160:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3350_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3350:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3350e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3350e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3450_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3450:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3520_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3520:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n3700_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n3700:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j4005_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4005:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j4025_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4025:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j4105_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4105:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j4115_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4115:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_j4125_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_j4125:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n4000_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4000:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n4000c_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4000c:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n4020_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4020:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n4020c_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4020c:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n4100_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4100:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n4120_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4120:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n4500_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4500:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n4504_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4504:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n4505_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "4.0.45", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n4505:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2805_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2805:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2806_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2806:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2807_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2807:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2808_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2808:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2810_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2810:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2815_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2815:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2820_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2820:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2830_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2830:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2840_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2840:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2910_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2910:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2920_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2920:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2930_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2930:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n2940_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n2940:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n5095_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n5095:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n5100_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n5100:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n5105_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n5105:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n6210_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n6210:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:celeron_n6211_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:celeron_n6211:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x7-e3950_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x7-e3950:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x5-e3940_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-e3940:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x5-e3930_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "3.1.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x5-e3930:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x6200fe_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.40.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6200fe:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x6211e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.40.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6211e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x6212re_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.40.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6212re:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x6413e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.40.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6413e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x6425e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.40.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6425e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x6425re_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.40.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6425re:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_x6427fe_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.40.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_x6427fe:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c232_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c232:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c236_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.8.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c236:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c242_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "12.0.90", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c242:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c246_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "12.0.90", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c246:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c629_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.22.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c629:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c628_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.22.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c628:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c627_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.22.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c627:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c626_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.22.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c626:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c625_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.22.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c625:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c624_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.22.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c624:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c622_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.22.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c622:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c621_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.22.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c621:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c420_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.12.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c420:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c422_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.12.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c422:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:x299_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "11.12.92", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:x299:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_w-1300_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1300:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_w-1350_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1350:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_w-1350p_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1350p:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_w-1370_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1370:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_w-1370p_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1370p:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_w-1390_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1390:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_w-1390p_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1390p:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_w-1390t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_w-1390t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_4410y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_4410y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_4415u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_4415u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_4415y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_4415y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_4417u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_4417u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_4425y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_4425y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_5405u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_5405u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_6405u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_6405u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_6500y_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_6500y:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_7505_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_7505:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g4560_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g4560:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g4600_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g4600:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g4620_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g4620:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g5400_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g5400:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g5400t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g5400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g5420_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g5420:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g5420t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g5420t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g5500_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g5500:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g5500t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g5500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g5600_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g5600:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g5600t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g5600t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g5620_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g5620:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6400_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6400:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6400e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6400e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6400t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6400te_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6400te:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6405_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6405:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6405t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6405t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6405u_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6405u:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6500_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6500:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6500t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6500t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6505_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6505:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6505t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6505t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6600_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6600:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g6605_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g6605:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g7400_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g7400:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g7400e_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g7400e:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g7400t_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g7400t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_gold_g7400te_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "15.0.40", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_gold_g7400te:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_silver_a1030_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_a1030:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_silver_j5005_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_j5005:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_silver_j5040_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_j5040:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_silver_n5000_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n5000:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_silver_n5030_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n5030:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_silver_n6000_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n6000:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:pentium_silver_n6005_firmware:*:*:*:*:*:*:*:*", + "versionEndExcluding": "13.50.20", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:pentium_silver_n6005:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_p5921b_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5921b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_p5931b_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5931b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_p5942b_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5942b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:atom_p5962b_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:atom_p5962b:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c621a_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c621a:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c624a_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c624a:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c627a_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c627a:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:c629a_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:c629a:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i3-l13g4_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i3-l13g4:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:core_i5-l16g7_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:core_i5-l16g7:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2123it_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2123it:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2141i_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2141i:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2142it_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2142it:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2143it_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2143it:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2145nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2145nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2146nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2146nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2161i_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2161i:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2163it_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2163it:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2166nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2166nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2173it_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2173it:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2177nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2177nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2183it_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2183it:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2187nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2187nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2191_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2191:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2712t_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2712t:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2733nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2733nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2738_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2738:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2752nte_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2752nte:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2752ter_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2752ter:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2753nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2753nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2766nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2766nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2775te_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2775te:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2776nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2776nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2779_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2779:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2786nte_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2786nte:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2795nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2795nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2796nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2796nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2796te_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2796te:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2798nt_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2798nt:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d-2799_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d-2799:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + }, + { + "operator": "AND", + "children": [ + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": true, + "cpe23Uri": "cpe:2.3:o:intel:xeon_d2700_firmware:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + }, + { + "operator": "OR", + "children": [], + "cpe_match": [ + { + "vulnerable": false, + "cpe23Uri": "cpe:2.3:h:intel:xeon_d2700:-:*:*:*:*:*:*:*", + "cpe_name": [] + } + ] + } + ], + "cpe_match": [] + } + ] + }, + "impact": { + "baseMetricV3": { + "cvssV3": { + "version": "3.1", + "vectorString": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", + "attackVector": "PHYSICAL", + "attackComplexity": "LOW", + "privilegesRequired": "NONE", + "userInteraction": "NONE", + "scope": "UNCHANGED", + "confidentialityImpact": "HIGH", + "integrityImpact": "HIGH", + "availabilityImpact": "HIGH", + "baseScore": 6.8, + "baseSeverity": "MEDIUM" + }, + "exploitabilityScore": 0.9, + "impactScore": 5.9 + }, + "baseMetricV2": { + "cvssV2": { + "version": "2.0", + "vectorString": "AV:L/AC:L/Au:N/C:C/I:C/A:C", + "accessVector": "LOCAL", + "accessComplexity": "LOW", + "authentication": "NONE", + "confidentialityImpact": "COMPLETE", + "integrityImpact": "COMPLETE", + "availabilityImpact": "COMPLETE", + "baseScore": 7.2 + }, + "severity": "HIGH", + "exploitabilityScore": 3.9, + "impactScore": 10.0, + "acInsufInfo": false, + "obtainAllPrivilege": false, + "obtainUserPrivilege": false, + "obtainOtherPrivilege": false, + "userInteractionRequired": false + } + }, + "publishedDate": "2022-05-12T17:15Z", + "lastModifiedDate": "2022-06-10T20:52Z" + } + ] +} diff --git a/src/test/resources/unit/nvd/feed/nvdcve-1.1-2022.meta b/src/test/resources/unit/nvd/feed/nvdcve-1.1-2022.meta new file mode 100644 index 0000000000..de2efde961 --- /dev/null +++ b/src/test/resources/unit/nvd/feed/nvdcve-1.1-2022.meta @@ -0,0 +1,5 @@ +lastModifiedDate:2024-05-01T03:00:46-04:00 +size:127566675 +zipSize:6495621 +gzSize:6495485 +sha256:6FDD92D7B4CA495E786B3D01CD787BC6148201E4E15D9555727B05FB07799922