README / index.html
khulnasoft's picture
Create index.html
ada0ffb verified
<html>
<head>
<meta charset="utf-8">
<script>function neighbourhoodHighlight(params) {
// console.log("in nieghbourhoodhighlight");
allNodes = nodes.get({ returnType: "Object" });
// originalNodes = JSON.parse(JSON.stringify(allNodes));
// if something is selected:
if (params.nodes.length > 0) {
highlightActive = true;
var i, j;
var selectedNode = params.nodes[0];
var degrees = 2;
// mark all nodes as hard to read.
for (let nodeId in allNodes) {
// nodeColors[nodeId] = allNodes[nodeId].color;
allNodes[nodeId].color = "rgba(200,200,200,0.5)";
if (allNodes[nodeId].hiddenLabel === undefined) {
allNodes[nodeId].hiddenLabel = allNodes[nodeId].label;
allNodes[nodeId].label = undefined;
}
}
var connectedNodes = network.getConnectedNodes(selectedNode);
var allConnectedNodes = [];
// get the second degree nodes
for (i = 1; i < degrees; i++) {
for (j = 0; j < connectedNodes.length; j++) {
allConnectedNodes = allConnectedNodes.concat(
network.getConnectedNodes(connectedNodes[j])
);
}
}
// all second degree nodes get a different color and their label back
for (i = 0; i < allConnectedNodes.length; i++) {
// allNodes[allConnectedNodes[i]].color = "pink";
allNodes[allConnectedNodes[i]].color = "rgba(150,150,150,0.75)";
if (allNodes[allConnectedNodes[i]].hiddenLabel !== undefined) {
allNodes[allConnectedNodes[i]].label =
allNodes[allConnectedNodes[i]].hiddenLabel;
allNodes[allConnectedNodes[i]].hiddenLabel = undefined;
}
}
// all first degree nodes get their own color and their label back
for (i = 0; i < connectedNodes.length; i++) {
// allNodes[connectedNodes[i]].color = undefined;
allNodes[connectedNodes[i]].color = nodeColors[connectedNodes[i]];
if (allNodes[connectedNodes[i]].hiddenLabel !== undefined) {
allNodes[connectedNodes[i]].label =
allNodes[connectedNodes[i]].hiddenLabel;
allNodes[connectedNodes[i]].hiddenLabel = undefined;
}
}
// the main node gets its own color and its label back.
// allNodes[selectedNode].color = undefined;
allNodes[selectedNode].color = nodeColors[selectedNode];
if (allNodes[selectedNode].hiddenLabel !== undefined) {
allNodes[selectedNode].label = allNodes[selectedNode].hiddenLabel;
allNodes[selectedNode].hiddenLabel = undefined;
}
} else if (highlightActive === true) {
// console.log("highlightActive was true");
// reset all nodes
for (let nodeId in allNodes) {
// allNodes[nodeId].color = "purple";
allNodes[nodeId].color = nodeColors[nodeId];
// delete allNodes[nodeId].color;
if (allNodes[nodeId].hiddenLabel !== undefined) {
allNodes[nodeId].label = allNodes[nodeId].hiddenLabel;
allNodes[nodeId].hiddenLabel = undefined;
}
}
highlightActive = false;
}
// transform the object into an array
var updateArray = [];
if (params.nodes.length > 0) {
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
// console.log(allNodes[nodeId]);
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
} else {
// console.log("Nothing was selected");
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
// console.log(allNodes[nodeId]);
// allNodes[nodeId].color = {};
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
}
}
function filterHighlight(params) {
allNodes = nodes.get({ returnType: "Object" });
// if something is selected:
if (params.nodes.length > 0) {
filterActive = true;
let selectedNodes = params.nodes;
// hiding all nodes and saving the label
for (let nodeId in allNodes) {
allNodes[nodeId].hidden = true;
if (allNodes[nodeId].savedLabel === undefined) {
allNodes[nodeId].savedLabel = allNodes[nodeId].label;
allNodes[nodeId].label = undefined;
}
}
for (let i=0; i < selectedNodes.length; i++) {
allNodes[selectedNodes[i]].hidden = false;
if (allNodes[selectedNodes[i]].savedLabel !== undefined) {
allNodes[selectedNodes[i]].label = allNodes[selectedNodes[i]].savedLabel;
allNodes[selectedNodes[i]].savedLabel = undefined;
}
}
} else if (filterActive === true) {
// reset all nodes
for (let nodeId in allNodes) {
allNodes[nodeId].hidden = false;
if (allNodes[nodeId].savedLabel !== undefined) {
allNodes[nodeId].label = allNodes[nodeId].savedLabel;
allNodes[nodeId].savedLabel = undefined;
}
}
filterActive = false;
}
// transform the object into an array
var updateArray = [];
if (params.nodes.length > 0) {
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
} else {
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
}
}
function selectNode(nodes) {
network.selectNodes(nodes);
neighbourhoodHighlight({ nodes: nodes });
return nodes;
}
function selectNodes(nodes) {
network.selectNodes(nodes);
filterHighlight({nodes: nodes});
return nodes;
}
function highlightFilter(filter) {
let selectedNodes = []
let selectedProp = filter['property']
if (filter['item'] === 'node') {
let allNodes = nodes.get({ returnType: "Object" });
for (let nodeId in allNodes) {
if (allNodes[nodeId][selectedProp] && filter['value'].includes((allNodes[nodeId][selectedProp]).toString())) {
selectedNodes.push(nodeId)
}
}
}
else if (filter['item'] === 'edge'){
let allEdges = edges.get({returnType: 'object'});
// check if the selected property exists for selected edge and select the nodes connected to the edge
for (let edge in allEdges) {
if (allEdges[edge][selectedProp] && filter['value'].includes((allEdges[edge][selectedProp]).toString())) {
selectedNodes.push(allEdges[edge]['from'])
selectedNodes.push(allEdges[edge]['to'])
}
}
}
selectNodes(selectedNodes)
}</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"
></script>
<center>
<h1></h1>
</center>
<style type="text/css">
#mynetwork {
width: 100%;
height: 750px;
background-color: #222222;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 750px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div class="card" style="width: 100%">
<div id="mynetwork" class="card-body"></div>
</div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var allNodes;
var allEdges;
var nodeColors;
var originalNodes;
var network;
var container;
var options, data;
var filter = {
item : '',
property : '',
value : []
};
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"color": "#97c2fc", "font": {"color": "white"}, "id": "audit@patchstack.com", "label": "audit@patchstack.com", "shape": "dot", "title": "audit@patchstack.com", "value": 147}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25798", "label": "CVE-2023-25798", "shape": "dot", "title": "CVE-2023-25798", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25796", "label": "CVE-2023-25796", "shape": "dot", "title": "CVE-2023-25796", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23820", "label": "CVE-2023-23820", "shape": "dot", "title": "CVE-2023-23820", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22713", "label": "CVE-2023-22713", "shape": "dot", "title": "CVE-2023-22713", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25789", "label": "CVE-2023-25789", "shape": "dot", "title": "CVE-2023-25789", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23708", "label": "CVE-2023-23708", "shape": "dot", "title": "CVE-2023-23708", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46852", "label": "CVE-2022-46852", "shape": "dot", "title": "CVE-2022-46852", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22683", "label": "CVE-2023-22683", "shape": "dot", "title": "CVE-2023-22683", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@zyxel.com.tw", "label": "security@zyxel.com.tw", "shape": "dot", "title": "security@zyxel.com.tw", "value": 5}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22919", "label": "CVE-2023-22919", "shape": "dot", "title": "CVE-2023-22919", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25979", "label": "CVE-2023-25979", "shape": "dot", "title": "CVE-2023-25979", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23874", "label": "CVE-2023-23874", "shape": "dot", "title": "CVE-2023-23874", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23876", "label": "CVE-2023-23876", "shape": "dot", "title": "CVE-2023-23876", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23785", "label": "CVE-2023-23785", "shape": "dot", "title": "CVE-2023-23785", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22922", "label": "CVE-2023-22922", "shape": "dot", "title": "CVE-2023-22922", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22921", "label": "CVE-2023-22921", "shape": "dot", "title": "CVE-2023-22921", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@google.com", "label": "security@google.com", "shape": "dot", "title": "security@google.com", "value": 3}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2235", "label": "CVE-2023-2235", "shape": "dot", "title": "CVE-2023-2235", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25783", "label": "CVE-2023-25783", "shape": "dot", "title": "CVE-2023-25783", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22924", "label": "CVE-2023-22924", "shape": "dot", "title": "CVE-2023-22924", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25786", "label": "CVE-2023-25786", "shape": "dot", "title": "CVE-2023-25786", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25784", "label": "CVE-2023-25784", "shape": "dot", "title": "CVE-2023-25784", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22923", "label": "CVE-2023-22923", "shape": "dot", "title": "CVE-2023-22923", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@hashicorp.com", "label": "security@hashicorp.com", "shape": "dot", "title": "security@hashicorp.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2197", "label": "CVE-2023-2197", "shape": "dot", "title": "CVE-2023-2197", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2236", "label": "CVE-2023-2236", "shape": "dot", "title": "CVE-2023-2236", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "cna@vuldb.com", "label": "cna@vuldb.com", "shape": "dot", "title": "cna@vuldb.com", "value": 81}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2015-10105", "label": "CVE-2015-10105", "shape": "dot", "title": "CVE-2015-10105", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25977", "label": "CVE-2023-25977", "shape": "dot", "title": "CVE-2023-25977", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25961", "label": "CVE-2023-25961", "shape": "dot", "title": "CVE-2023-25961", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23875", "label": "CVE-2023-23875", "shape": "dot", "title": "CVE-2023-23875", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25982", "label": "CVE-2023-25982", "shape": "dot", "title": "CVE-2023-25982", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23881", "label": "CVE-2023-23881", "shape": "dot", "title": "CVE-2023-23881", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25458", "label": "CVE-2023-25458", "shape": "dot", "title": "CVE-2023-25458", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45818", "label": "CVE-2022-45818", "shape": "dot", "title": "CVE-2022-45818", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23723", "label": "CVE-2023-23723", "shape": "dot", "title": "CVE-2023-23723", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23830", "label": "CVE-2023-23830", "shape": "dot", "title": "CVE-2023-23830", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26017", "label": "CVE-2023-26017", "shape": "dot", "title": "CVE-2023-26017", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25967", "label": "CVE-2023-25967", "shape": "dot", "title": "CVE-2023-25967", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23809", "label": "CVE-2023-23809", "shape": "dot", "title": "CVE-2023-23809", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23808", "label": "CVE-2023-23808", "shape": "dot", "title": "CVE-2023-23808", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@fortinet.com", "label": "psirt@fortinet.com", "shape": "dot", "title": "psirt@fortinet.com", "value": 9}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27999", "label": "CVE-2023-27999", "shape": "dot", "title": "CVE-2023-27999", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2014-125100", "label": "CVE-2014-125100", "shape": "dot", "title": "CVE-2014-125100", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2451", "label": "CVE-2023-2451", "shape": "dot", "title": "CVE-2023-2451", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "contact@wpscan.com", "label": "contact@wpscan.com", "shape": "dot", "title": "contact@wpscan.com", "value": 65}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0891", "label": "CVE-2023-0891", "shape": "dot", "title": "CVE-2023-0891", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0924", "label": "CVE-2023-0924", "shape": "dot", "title": "CVE-2023-0924", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1021", "label": "CVE-2023-1021", "shape": "dot", "title": "CVE-2023-1021", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1090", "label": "CVE-2023-1090", "shape": "dot", "title": "CVE-2023-1090", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1525", "label": "CVE-2023-1525", "shape": "dot", "title": "CVE-2023-1525", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1125", "label": "CVE-2023-1125", "shape": "dot", "title": "CVE-2023-1125", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1554", "label": "CVE-2023-1554", "shape": "dot", "title": "CVE-2023-1554", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1614", "label": "CVE-2023-1614", "shape": "dot", "title": "CVE-2023-1614", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1546", "label": "CVE-2023-1546", "shape": "dot", "title": "CVE-2023-1546", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1669", "label": "CVE-2023-1669", "shape": "dot", "title": "CVE-2023-1669", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1730", "label": "CVE-2023-1730", "shape": "dot", "title": "CVE-2023-1730", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1804", "label": "CVE-2023-1804", "shape": "dot", "title": "CVE-2023-1804", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1805", "label": "CVE-2023-1805", "shape": "dot", "title": "CVE-2023-1805", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1809", "label": "CVE-2023-1809", "shape": "dot", "title": "CVE-2023-1809", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1196", "label": "CVE-2023-1196", "shape": "dot", "title": "CVE-2023-1196", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1911", "label": "CVE-2023-1911", "shape": "dot", "title": "CVE-2023-1911", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1861", "label": "CVE-2023-1861", "shape": "dot", "title": "CVE-2023-1861", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@atlassian.com", "label": "security@atlassian.com", "shape": "dot", "title": "security@atlassian.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22503", "label": "CVE-2023-22503", "shape": "dot", "title": "CVE-2023-22503", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "responsibledisclosure@mattermost.com", "label": "responsibledisclosure@mattermost.com", "shape": "dot", "title": "responsibledisclosure@mattermost.com", "value": 3}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2000", "label": "CVE-2023-2000", "shape": "dot", "title": "CVE-2023-2000", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security.cna@qualcomm.com", "label": "security.cna@qualcomm.com", "shape": "dot", "title": "security.cna@qualcomm.com", "value": 13}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21642", "label": "CVE-2023-21642", "shape": "dot", "title": "CVE-2023-21642", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-40505", "label": "CVE-2022-40505", "shape": "dot", "title": "CVE-2022-40505", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-40508", "label": "CVE-2022-40508", "shape": "dot", "title": "CVE-2022-40508", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-33304", "label": "CVE-2022-33304", "shape": "dot", "title": "CVE-2022-33304", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-33305", "label": "CVE-2022-33305", "shape": "dot", "title": "CVE-2022-33305", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-34144", "label": "CVE-2022-34144", "shape": "dot", "title": "CVE-2022-34144", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-33281", "label": "CVE-2022-33281", "shape": "dot", "title": "CVE-2022-33281", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-33292", "label": "CVE-2022-33292", "shape": "dot", "title": "CVE-2022-33292", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-25713", "label": "CVE-2022-25713", "shape": "dot", "title": "CVE-2022-25713", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25797", "label": "CVE-2023-25797", "shape": "dot", "title": "CVE-2023-25797", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25792", "label": "CVE-2023-25792", "shape": "dot", "title": "CVE-2023-25792", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25787", "label": "CVE-2023-25787", "shape": "dot", "title": "CVE-2023-25787", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@acronis.com", "label": "security@acronis.com", "shape": "dot", "title": "security@acronis.com", "value": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-3405", "label": "CVE-2022-3405", "shape": "dot", "title": "CVE-2022-3405", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-30995", "label": "CVE-2022-30995", "shape": "dot", "title": "CVE-2022-30995", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23790", "label": "CVE-2023-23790", "shape": "dot", "title": "CVE-2023-23790", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "secure@dell.com", "label": "secure@dell.com", "shape": "dot", "title": "secure@dell.com", "value": 4}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28070", "label": "CVE-2023-28070", "shape": "dot", "title": "CVE-2023-28070", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22691", "label": "CVE-2023-22691", "shape": "dot", "title": "CVE-2023-22691", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2013-10026", "label": "CVE-2013-10026", "shape": "dot", "title": "CVE-2013-10026", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2477", "label": "CVE-2023-2477", "shape": "dot", "title": "CVE-2023-2477", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2476", "label": "CVE-2023-2476", "shape": "dot", "title": "CVE-2023-2476", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@devolutions.net", "label": "security@devolutions.net", "shape": "dot", "title": "security@devolutions.net", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2445", "label": "CVE-2023-2445", "shape": "dot", "title": "CVE-2023-2445", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2475", "label": "CVE-2023-2475", "shape": "dot", "title": "CVE-2023-2475", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2474", "label": "CVE-2023-2474", "shape": "dot", "title": "CVE-2023-2474", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2473", "label": "CVE-2023-2473", "shape": "dot", "title": "CVE-2023-2473", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@apache.org", "label": "security@apache.org", "shape": "dot", "title": "security@apache.org", "value": 15}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46365", "label": "CVE-2022-46365", "shape": "dot", "title": "CVE-2022-46365", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45801", "label": "CVE-2022-45801", "shape": "dot", "title": "CVE-2022-45801", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45802", "label": "CVE-2022-45802", "shape": "dot", "title": "CVE-2022-45802", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@octopus.com", "label": "security@octopus.com", "shape": "dot", "title": "security@octopus.com", "value": 3}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2247", "label": "CVE-2023-2247", "shape": "dot", "title": "CVE-2023-2247", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30869", "label": "CVE-2023-30869", "shape": "dot", "title": "CVE-2023-30869", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-33273", "label": "CVE-2022-33273", "shape": "dot", "title": "CVE-2022-33273", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security-advisories@github.com", "label": "security-advisories@github.com", "shape": "dot", "title": "security-advisories@github.com", "value": 56}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30859", "label": "CVE-2023-30859", "shape": "dot", "title": "CVE-2023-30859", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@checkmk.com", "label": "security@checkmk.com", "shape": "dot", "title": "security@checkmk.com", "value": 4}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31207", "label": "CVE-2023-31207", "shape": "dot", "title": "CVE-2023-31207", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "cve@gitlab.com", "label": "cve@gitlab.com", "shape": "dot", "title": "cve@gitlab.com", "value": 14}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0155", "label": "CVE-2023-0155", "shape": "dot", "title": "CVE-2023-0155", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0485", "label": "CVE-2023-0485", "shape": "dot", "title": "CVE-2023-0485", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2069", "label": "CVE-2023-2069", "shape": "dot", "title": "CVE-2023-2069", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1836", "label": "CVE-2023-1836", "shape": "dot", "title": "CVE-2023-1836", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@lenovo.com", "label": "psirt@lenovo.com", "shape": "dot", "title": "psirt@lenovo.com", "value": 5}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48186", "label": "CVE-2022-48186", "shape": "dot", "title": "CVE-2022-48186", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@amd.com", "label": "psirt@amd.com", "shape": "dot", "title": "psirt@amd.com", "value": 26}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20524", "label": "CVE-2023-20524", "shape": "dot", "title": "CVE-2023-20524", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-26371", "label": "CVE-2021-26371", "shape": "dot", "title": "CVE-2021-26371", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46754", "label": "CVE-2021-46754", "shape": "dot", "title": "CVE-2021-46754", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46755", "label": "CVE-2021-46755", "shape": "dot", "title": "CVE-2021-46755", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-26406", "label": "CVE-2021-26406", "shape": "dot", "title": "CVE-2021-26406", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46756", "label": "CVE-2021-46756", "shape": "dot", "title": "CVE-2021-46756", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46759", "label": "CVE-2021-46759", "shape": "dot", "title": "CVE-2021-46759", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46760", "label": "CVE-2021-46760", "shape": "dot", "title": "CVE-2021-46760", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-26379", "label": "CVE-2021-26379", "shape": "dot", "title": "CVE-2021-26379", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46762", "label": "CVE-2021-46762", "shape": "dot", "title": "CVE-2021-46762", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46763", "label": "CVE-2021-46763", "shape": "dot", "title": "CVE-2021-46763", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46764", "label": "CVE-2021-46764", "shape": "dot", "title": "CVE-2021-46764", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46765", "label": "CVE-2021-46765", "shape": "dot", "title": "CVE-2021-46765", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46769", "label": "CVE-2021-46769", "shape": "dot", "title": "CVE-2021-46769", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46773", "label": "CVE-2021-46773", "shape": "dot", "title": "CVE-2021-46773", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46775", "label": "CVE-2021-46775", "shape": "dot", "title": "CVE-2021-46775", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46753", "label": "CVE-2021-46753", "shape": "dot", "title": "CVE-2021-46753", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46792", "label": "CVE-2021-46792", "shape": "dot", "title": "CVE-2021-46792", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-23818", "label": "CVE-2022-23818", "shape": "dot", "title": "CVE-2022-23818", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20520", "label": "CVE-2023-20520", "shape": "dot", "title": "CVE-2023-20520", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46794", "label": "CVE-2021-46794", "shape": "dot", "title": "CVE-2021-46794", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-26354", "label": "CVE-2021-26354", "shape": "dot", "title": "CVE-2021-26354", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-46749", "label": "CVE-2021-46749", "shape": "dot", "title": "CVE-2021-46749", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-26365", "label": "CVE-2021-26365", "shape": "dot", "title": "CVE-2021-26365", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0896", "label": "CVE-2023-0896", "shape": "dot", "title": "CVE-2023-0896", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1965", "label": "CVE-2023-1965", "shape": "dot", "title": "CVE-2023-1965", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1265", "label": "CVE-2023-1265", "shape": "dot", "title": "CVE-2023-1265", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1204", "label": "CVE-2023-1204", "shape": "dot", "title": "CVE-2023-1204", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22637", "label": "CVE-2023-22637", "shape": "dot", "title": "CVE-2023-22637", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2182", "label": "CVE-2023-2182", "shape": "dot", "title": "CVE-2023-2182", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1178", "label": "CVE-2023-1178", "shape": "dot", "title": "CVE-2023-1178", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0805", "label": "CVE-2023-0805", "shape": "dot", "title": "CVE-2023-0805", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0756", "label": "CVE-2023-0756", "shape": "dot", "title": "CVE-2023-0756", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4376", "label": "CVE-2022-4376", "shape": "dot", "title": "CVE-2022-4376", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2018-25085", "label": "CVE-2018-25085", "shape": "dot", "title": "CVE-2018-25085", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@huntr.dev", "label": "security@huntr.dev", "shape": "dot", "title": "security@huntr.dev", "value": 30}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2427", "label": "CVE-2023-2427", "shape": "dot", "title": "CVE-2023-2427", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2516", "label": "CVE-2023-2516", "shape": "dot", "title": "CVE-2023-2516", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2550", "label": "CVE-2023-2550", "shape": "dot", "title": "CVE-2023-2550", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2551", "label": "CVE-2023-2551", "shape": "dot", "title": "CVE-2023-2551", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2552", "label": "CVE-2023-2552", "shape": "dot", "title": "CVE-2023-2552", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26517", "label": "CVE-2023-26517", "shape": "dot", "title": "CVE-2023-26517", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2553", "label": "CVE-2023-2553", "shape": "dot", "title": "CVE-2023-2553", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24400", "label": "CVE-2023-24400", "shape": "dot", "title": "CVE-2023-24400", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23668", "label": "CVE-2023-23668", "shape": "dot", "title": "CVE-2023-23668", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26519", "label": "CVE-2023-26519", "shape": "dot", "title": "CVE-2023-26519", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25491", "label": "CVE-2023-25491", "shape": "dot", "title": "CVE-2023-25491", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45812", "label": "CVE-2022-45812", "shape": "dot", "title": "CVE-2022-45812", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25021", "label": "CVE-2023-25021", "shape": "dot", "title": "CVE-2023-25021", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25052", "label": "CVE-2023-25052", "shape": "dot", "title": "CVE-2023-25052", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28169", "label": "CVE-2023-28169", "shape": "dot", "title": "CVE-2023-28169", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25452", "label": "CVE-2023-25452", "shape": "dot", "title": "CVE-2023-25452", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26016", "label": "CVE-2023-26016", "shape": "dot", "title": "CVE-2023-26016", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25962", "label": "CVE-2023-25962", "shape": "dot", "title": "CVE-2023-25962", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30861", "label": "CVE-2023-30861", "shape": "dot", "title": "CVE-2023-30861", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "chrome-cve-admin@google.com", "label": "chrome-cve-admin@google.com", "shape": "dot", "title": "chrome-cve-admin@google.com", "value": 18}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2464", "label": "CVE-2023-2464", "shape": "dot", "title": "CVE-2023-2464", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2465", "label": "CVE-2023-2465", "shape": "dot", "title": "CVE-2023-2465", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2466", "label": "CVE-2023-2466", "shape": "dot", "title": "CVE-2023-2466", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2467", "label": "CVE-2023-2467", "shape": "dot", "title": "CVE-2023-2467", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2468", "label": "CVE-2023-2468", "shape": "dot", "title": "CVE-2023-2468", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2461", "label": "CVE-2023-2461", "shape": "dot", "title": "CVE-2023-2461", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2459", "label": "CVE-2023-2459", "shape": "dot", "title": "CVE-2023-2459", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2463", "label": "CVE-2023-2463", "shape": "dot", "title": "CVE-2023-2463", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2462", "label": "CVE-2023-2462", "shape": "dot", "title": "CVE-2023-2462", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2460", "label": "CVE-2023-2460", "shape": "dot", "title": "CVE-2023-2460", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0683", "label": "CVE-2023-0683", "shape": "dot", "title": "CVE-2023-0683", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25492", "label": "CVE-2023-25492", "shape": "dot", "title": "CVE-2023-25492", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security-alert@hpe.com", "label": "security-alert@hpe.com", "shape": "dot", "title": "security-alert@hpe.com", "value": 24}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28092", "label": "CVE-2023-28092", "shape": "dot", "title": "CVE-2023-28092", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "secure@intel.com", "label": "secure@intel.com", "shape": "dot", "title": "secure@intel.com", "value": 94}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-36391", "label": "CVE-2022-36391", "shape": "dot", "title": "CVE-2022-36391", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27386", "label": "CVE-2023-27386", "shape": "dot", "title": "CVE-2023-27386", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-36339", "label": "CVE-2022-36339", "shape": "dot", "title": "CVE-2022-36339", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-34855", "label": "CVE-2022-34855", "shape": "dot", "title": "CVE-2022-34855", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-34848", "label": "CVE-2022-34848", "shape": "dot", "title": "CVE-2022-34848", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-34147", "label": "CVE-2022-34147", "shape": "dot", "title": "CVE-2022-34147", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-32578", "label": "CVE-2022-32578", "shape": "dot", "title": "CVE-2022-32578", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-32577", "label": "CVE-2022-32577", "shape": "dot", "title": "CVE-2022-32577", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25179", "label": "CVE-2023-25179", "shape": "dot", "title": "CVE-2023-25179", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-31477", "label": "CVE-2022-31477", "shape": "dot", "title": "CVE-2022-31477", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27382", "label": "CVE-2023-27382", "shape": "dot", "title": "CVE-2023-27382", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22440", "label": "CVE-2023-22440", "shape": "dot", "title": "CVE-2023-22440", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-28699", "label": "CVE-2022-28699", "shape": "dot", "title": "CVE-2022-28699", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22355", "label": "CVE-2023-22355", "shape": "dot", "title": "CVE-2023-22355", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-27180", "label": "CVE-2022-27180", "shape": "dot", "title": "CVE-2022-27180", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22312", "label": "CVE-2023-22312", "shape": "dot", "title": "CVE-2023-22312", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28410", "label": "CVE-2023-28410", "shape": "dot", "title": "CVE-2023-28410", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-32576", "label": "CVE-2022-32576", "shape": "dot", "title": "CVE-2022-32576", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22447", "label": "CVE-2023-22447", "shape": "dot", "title": "CVE-2023-22447", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23573", "label": "CVE-2023-23573", "shape": "dot", "title": "CVE-2023-23573", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-38101", "label": "CVE-2022-38101", "shape": "dot", "title": "CVE-2022-38101", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46656", "label": "CVE-2022-46656", "shape": "dot", "title": "CVE-2022-46656", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46645", "label": "CVE-2022-46645", "shape": "dot", "title": "CVE-2022-46645", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25771", "label": "CVE-2023-25771", "shape": "dot", "title": "CVE-2023-25771", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25772", "label": "CVE-2023-25772", "shape": "dot", "title": "CVE-2023-25772", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-43507", "label": "CVE-2022-43507", "shape": "dot", "title": "CVE-2022-43507", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-43474", "label": "CVE-2022-43474", "shape": "dot", "title": "CVE-2022-43474", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41982", "label": "CVE-2022-41982", "shape": "dot", "title": "CVE-2022-41982", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41801", "label": "CVE-2022-41801", "shape": "dot", "title": "CVE-2022-41801", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41769", "label": "CVE-2022-41769", "shape": "dot", "title": "CVE-2022-41769", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41693", "label": "CVE-2022-41693", "shape": "dot", "title": "CVE-2022-41693", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41690", "label": "CVE-2022-41690", "shape": "dot", "title": "CVE-2022-41690", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41687", "label": "CVE-2022-41687", "shape": "dot", "title": "CVE-2022-41687", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41646", "label": "CVE-2022-41646", "shape": "dot", "title": "CVE-2022-41646", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41628", "label": "CVE-2022-41628", "shape": "dot", "title": "CVE-2022-41628", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41610", "label": "CVE-2022-41610", "shape": "dot", "title": "CVE-2022-41610", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-40971", "label": "CVE-2022-40971", "shape": "dot", "title": "CVE-2022-40971", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-40207", "label": "CVE-2022-40207", "shape": "dot", "title": "CVE-2022-40207", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-38787", "label": "CVE-2022-38787", "shape": "dot", "title": "CVE-2022-38787", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27298", "label": "CVE-2023-27298", "shape": "dot", "title": "CVE-2023-27298", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-37327", "label": "CVE-2022-37327", "shape": "dot", "title": "CVE-2022-37327", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41998", "label": "CVE-2022-41998", "shape": "dot", "title": "CVE-2022-41998", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46279", "label": "CVE-2022-46279", "shape": "dot", "title": "CVE-2022-46279", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26268", "label": "CVE-2023-26268", "shape": "dot", "title": "CVE-2023-26268", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30619", "label": "CVE-2023-30619", "shape": "dot", "title": "CVE-2023-30619", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26012", "label": "CVE-2023-26012", "shape": "dot", "title": "CVE-2023-26012", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26010", "label": "CVE-2023-26010", "shape": "dot", "title": "CVE-2023-26010", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@us.ibm.com", "label": "psirt@us.ibm.com", "shape": "dot", "title": "psirt@us.ibm.com", "value": 21}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24958", "label": "CVE-2023-24958", "shape": "dot", "title": "CVE-2023-24958", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4568", "label": "CVE-2022-4568", "shape": "dot", "title": "CVE-2022-4568", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "prodsec@nozominetworks.com", "label": "prodsec@nozominetworks.com", "shape": "dot", "title": "prodsec@nozominetworks.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4259", "label": "CVE-2022-4259", "shape": "dot", "title": "CVE-2022-4259", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "info@cert.vde.com", "label": "info@cert.vde.com", "shape": "dot", "title": "info@cert.vde.com", "value": 20}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2017-20184", "label": "CVE-2017-20184", "shape": "dot", "title": "CVE-2017-20184", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@suse.com", "label": "security@suse.com", "shape": "dot", "title": "security@suse.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22651", "label": "CVE-2023-22651", "shape": "dot", "title": "CVE-2023-22651", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25934", "label": "CVE-2023-25934", "shape": "dot", "title": "CVE-2023-25934", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "report@snyk.io", "label": "report@snyk.io", "shape": "dot", "title": "report@snyk.io", "value": 2}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26125", "label": "CVE-2023-26125", "shape": "dot", "title": "CVE-2023-26125", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23470", "label": "CVE-2023-23470", "shape": "dot", "title": "CVE-2023-23470", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47434", "label": "CVE-2022-47434", "shape": "dot", "title": "CVE-2022-47434", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47449", "label": "CVE-2022-47449", "shape": "dot", "title": "CVE-2022-47449", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "mobile.security@samsung.com", "label": "mobile.security@samsung.com", "shape": "dot", "title": "mobile.security@samsung.com", "value": 28}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21486", "label": "CVE-2023-21486", "shape": "dot", "title": "CVE-2023-21486", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21485", "label": "CVE-2023-21485", "shape": "dot", "title": "CVE-2023-21485", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21484", "label": "CVE-2023-21484", "shape": "dot", "title": "CVE-2023-21484", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21487", "label": "CVE-2023-21487", "shape": "dot", "title": "CVE-2023-21487", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21490", "label": "CVE-2023-21490", "shape": "dot", "title": "CVE-2023-21490", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21491", "label": "CVE-2023-21491", "shape": "dot", "title": "CVE-2023-21491", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21492", "label": "CVE-2023-21492", "shape": "dot", "title": "CVE-2023-21492", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21489", "label": "CVE-2023-21489", "shape": "dot", "title": "CVE-2023-21489", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21488", "label": "CVE-2023-21488", "shape": "dot", "title": "CVE-2023-21488", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21493", "label": "CVE-2023-21493", "shape": "dot", "title": "CVE-2023-21493", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "f5sirt@f5.com", "label": "f5sirt@f5.com", "shape": "dot", "title": "f5sirt@f5.com", "value": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22372", "label": "CVE-2023-22372", "shape": "dot", "title": "CVE-2023-22372", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24461", "label": "CVE-2023-24461", "shape": "dot", "title": "CVE-2023-24461", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24594", "label": "CVE-2023-24594", "shape": "dot", "title": "CVE-2023-24594", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27378", "label": "CVE-2023-27378", "shape": "dot", "title": "CVE-2023-27378", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28406", "label": "CVE-2023-28406", "shape": "dot", "title": "CVE-2023-28406", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28742", "label": "CVE-2023-28742", "shape": "dot", "title": "CVE-2023-28742", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29163", "label": "CVE-2023-29163", "shape": "dot", "title": "CVE-2023-29163", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28724", "label": "CVE-2023-28724", "shape": "dot", "title": "CVE-2023-28724", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28656", "label": "CVE-2023-28656", "shape": "dot", "title": "CVE-2023-28656", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2523", "label": "CVE-2023-2523", "shape": "dot", "title": "CVE-2023-2523", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2524", "label": "CVE-2023-2524", "shape": "dot", "title": "CVE-2023-2524", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@cisco.com", "label": "psirt@cisco.com", "shape": "dot", "title": "psirt@cisco.com", "value": 28}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20126", "label": "CVE-2023-20126", "shape": "dot", "title": "CVE-2023-20126", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21501", "label": "CVE-2023-21501", "shape": "dot", "title": "CVE-2023-21501", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "disclosure@synopsys.com", "label": "disclosure@synopsys.com", "shape": "dot", "title": "disclosure@synopsys.com", "value": 7}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25826", "label": "CVE-2023-25826", "shape": "dot", "title": "CVE-2023-25826", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29240", "label": "CVE-2023-29240", "shape": "dot", "title": "CVE-2023-29240", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21505", "label": "CVE-2023-21505", "shape": "dot", "title": "CVE-2023-21505", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30550", "label": "CVE-2023-30550", "shape": "dot", "title": "CVE-2023-30550", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21502", "label": "CVE-2023-21502", "shape": "dot", "title": "CVE-2023-21502", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2519", "label": "CVE-2023-2519", "shape": "dot", "title": "CVE-2023-2519", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25827", "label": "CVE-2023-25827", "shape": "dot", "title": "CVE-2023-25827", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2520", "label": "CVE-2023-2520", "shape": "dot", "title": "CVE-2023-2520", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2521", "label": "CVE-2023-2521", "shape": "dot", "title": "CVE-2023-2521", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32007", "label": "CVE-2023-32007", "shape": "dot", "title": "CVE-2023-32007", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21506", "label": "CVE-2023-21506", "shape": "dot", "title": "CVE-2023-21506", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21507", "label": "CVE-2023-21507", "shape": "dot", "title": "CVE-2023-21507", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21495", "label": "CVE-2023-21495", "shape": "dot", "title": "CVE-2023-21495", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27993", "label": "CVE-2023-27993", "shape": "dot", "title": "CVE-2023-27993", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26203", "label": "CVE-2023-26203", "shape": "dot", "title": "CVE-2023-26203", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22640", "label": "CVE-2023-22640", "shape": "dot", "title": "CVE-2023-22640", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@wdc.com", "label": "psirt@wdc.com", "shape": "dot", "title": "psirt@wdc.com", "value": 9}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-36330", "label": "CVE-2022-36330", "shape": "dot", "title": "CVE-2022-36330", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21510", "label": "CVE-2023-21510", "shape": "dot", "title": "CVE-2023-21510", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21509", "label": "CVE-2023-21509", "shape": "dot", "title": "CVE-2023-21509", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21511", "label": "CVE-2023-21511", "shape": "dot", "title": "CVE-2023-21511", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21508", "label": "CVE-2023-21508", "shape": "dot", "title": "CVE-2023-21508", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21503", "label": "CVE-2023-21503", "shape": "dot", "title": "CVE-2023-21503", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21504", "label": "CVE-2023-21504", "shape": "dot", "title": "CVE-2023-21504", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21499", "label": "CVE-2023-21499", "shape": "dot", "title": "CVE-2023-21499", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "patrick@puiterwijk.org", "label": "patrick@puiterwijk.org", "shape": "dot", "title": "patrick@puiterwijk.org", "value": 2}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30944", "label": "CVE-2023-30944", "shape": "dot", "title": "CVE-2023-30944", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30943", "label": "CVE-2023-30943", "shape": "dot", "title": "CVE-2023-30943", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@unisoc.com", "label": "security@unisoc.com", "shape": "dot", "title": "security@unisoc.com", "value": 66}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48233", "label": "CVE-2022-48233", "shape": "dot", "title": "CVE-2022-48233", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48241", "label": "CVE-2022-48241", "shape": "dot", "title": "CVE-2022-48241", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48244", "label": "CVE-2022-48244", "shape": "dot", "title": "CVE-2022-48244", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48234", "label": "CVE-2022-48234", "shape": "dot", "title": "CVE-2022-48234", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48370", "label": "CVE-2022-48370", "shape": "dot", "title": "CVE-2022-48370", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48246", "label": "CVE-2022-48246", "shape": "dot", "title": "CVE-2022-48246", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48247", "label": "CVE-2022-48247", "shape": "dot", "title": "CVE-2022-48247", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48245", "label": "CVE-2022-48245", "shape": "dot", "title": "CVE-2022-48245", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48368", "label": "CVE-2022-48368", "shape": "dot", "title": "CVE-2022-48368", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48242", "label": "CVE-2022-48242", "shape": "dot", "title": "CVE-2022-48242", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48369", "label": "CVE-2022-48369", "shape": "dot", "title": "CVE-2022-48369", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48250", "label": "CVE-2022-48250", "shape": "dot", "title": "CVE-2022-48250", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48249", "label": "CVE-2022-48249", "shape": "dot", "title": "CVE-2022-48249", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48231", "label": "CVE-2022-48231", "shape": "dot", "title": "CVE-2022-48231", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48243", "label": "CVE-2022-48243", "shape": "dot", "title": "CVE-2022-48243", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48232", "label": "CVE-2022-48232", "shape": "dot", "title": "CVE-2022-48232", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "product-security@apple.com", "label": "product-security@apple.com", "shape": "dot", "title": "product-security@apple.com", "value": 64}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23526", "label": "CVE-2023-23526", "shape": "dot", "title": "CVE-2023-23526", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23534", "label": "CVE-2023-23534", "shape": "dot", "title": "CVE-2023-23534", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48248", "label": "CVE-2022-48248", "shape": "dot", "title": "CVE-2022-48248", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23523", "label": "CVE-2023-23523", "shape": "dot", "title": "CVE-2023-23523", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23527", "label": "CVE-2023-23527", "shape": "dot", "title": "CVE-2023-23527", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23537", "label": "CVE-2023-23537", "shape": "dot", "title": "CVE-2023-23537", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21494", "label": "CVE-2023-21494", "shape": "dot", "title": "CVE-2023-21494", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21496", "label": "CVE-2023-21496", "shape": "dot", "title": "CVE-2023-21496", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@puppet.com", "label": "security@puppet.com", "shape": "dot", "title": "security@puppet.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1894", "label": "CVE-2023-1894", "shape": "dot", "title": "CVE-2023-1894", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21497", "label": "CVE-2023-21497", "shape": "dot", "title": "CVE-2023-21497", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21498", "label": "CVE-2023-21498", "shape": "dot", "title": "CVE-2023-21498", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2522", "label": "CVE-2023-2522", "shape": "dot", "title": "CVE-2023-2522", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21500", "label": "CVE-2023-21500", "shape": "dot", "title": "CVE-2023-21500", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-29841", "label": "CVE-2022-29841", "shape": "dot", "title": "CVE-2022-29841", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2649", "label": "CVE-2023-2649", "shape": "dot", "title": "CVE-2023-2649", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2646", "label": "CVE-2023-2646", "shape": "dot", "title": "CVE-2023-2646", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2645", "label": "CVE-2023-2645", "shape": "dot", "title": "CVE-2023-2645", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2644", "label": "CVE-2023-2644", "shape": "dot", "title": "CVE-2023-2644", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@elastic.co", "label": "security@elastic.co", "shape": "dot", "title": "security@elastic.co", "value": 3}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31415", "label": "CVE-2023-31415", "shape": "dot", "title": "CVE-2023-31415", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31414", "label": "CVE-2023-31414", "shape": "dot", "title": "CVE-2023-31414", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31413", "label": "CVE-2023-31413", "shape": "dot", "title": "CVE-2023-31413", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-40331", "label": "CVE-2021-40331", "shape": "dot", "title": "CVE-2021-40331", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-38707", "label": "CVE-2022-38707", "shape": "dot", "title": "CVE-2022-38707", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45048", "label": "CVE-2022-45048", "shape": "dot", "title": "CVE-2022-45048", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-43919", "label": "CVE-2022-43919", "shape": "dot", "title": "CVE-2022-43919", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22874", "label": "CVE-2023-22874", "shape": "dot", "title": "CVE-2023-22874", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28068", "label": "CVE-2023-28068", "shape": "dot", "title": "CVE-2023-28068", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2554", "label": "CVE-2023-2554", "shape": "dot", "title": "CVE-2023-2554", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "secure@microsoft.com", "label": "secure@microsoft.com", "shape": "dot", "title": "secure@microsoft.com", "value": 39}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29350", "label": "CVE-2023-29350", "shape": "dot", "title": "CVE-2023-29350", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29354", "label": "CVE-2023-29354", "shape": "dot", "title": "CVE-2023-29354", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23494", "label": "CVE-2023-23494", "shape": "dot", "title": "CVE-2023-23494", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23528", "label": "CVE-2023-23528", "shape": "dot", "title": "CVE-2023-23528", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23538", "label": "CVE-2023-23538", "shape": "dot", "title": "CVE-2023-23538", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23533", "label": "CVE-2023-23533", "shape": "dot", "title": "CVE-2023-23533", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2531", "label": "CVE-2023-2531", "shape": "dot", "title": "CVE-2023-2531", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2017-20183", "label": "CVE-2017-20183", "shape": "dot", "title": "CVE-2017-20183", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45860", "label": "CVE-2022-45860", "shape": "dot", "title": "CVE-2022-45860", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45859", "label": "CVE-2022-45859", "shape": "dot", "title": "CVE-2022-45859", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45858", "label": "CVE-2022-45858", "shape": "dot", "title": "CVE-2022-45858", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-43950", "label": "CVE-2022-43950", "shape": "dot", "title": "CVE-2022-43950", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2565", "label": "CVE-2023-2565", "shape": "dot", "title": "CVE-2023-2565", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0268", "label": "CVE-2023-0268", "shape": "dot", "title": "CVE-2023-0268", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0267", "label": "CVE-2023-0267", "shape": "dot", "title": "CVE-2023-0267", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4118", "label": "CVE-2022-4118", "shape": "dot", "title": "CVE-2022-4118", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-43877", "label": "CVE-2022-43877", "shape": "dot", "title": "CVE-2022-43877", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-22313", "label": "CVE-2022-22313", "shape": "dot", "title": "CVE-2022-22313", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2560", "label": "CVE-2023-2560", "shape": "dot", "title": "CVE-2023-2560", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47439", "label": "CVE-2022-47439", "shape": "dot", "title": "CVE-2022-47439", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45065", "label": "CVE-2022-45065", "shape": "dot", "title": "CVE-2022-45065", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47437", "label": "CVE-2022-47437", "shape": "dot", "title": "CVE-2022-47437", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30434", "label": "CVE-2023-30434", "shape": "dot", "title": "CVE-2023-30434", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1660", "label": "CVE-2023-1660", "shape": "dot", "title": "CVE-2023-1660", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1651", "label": "CVE-2023-1651", "shape": "dot", "title": "CVE-2023-1651", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1649", "label": "CVE-2023-1649", "shape": "dot", "title": "CVE-2023-1649", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1806", "label": "CVE-2023-1806", "shape": "dot", "title": "CVE-2023-1806", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28493", "label": "CVE-2023-28493", "shape": "dot", "title": "CVE-2023-28493", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24408", "label": "CVE-2023-24408", "shape": "dot", "title": "CVE-2023-24408", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22710", "label": "CVE-2023-22710", "shape": "dot", "title": "CVE-2023-22710", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23894", "label": "CVE-2023-23894", "shape": "dot", "title": "CVE-2023-23894", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24376", "label": "CVE-2023-24376", "shape": "dot", "title": "CVE-2023-24376", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "cna@cyber.gov.il", "label": "cna@cyber.gov.il", "shape": "dot", "title": "cna@cyber.gov.il", "value": 9}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31183", "label": "CVE-2023-31183", "shape": "dot", "title": "CVE-2023-31183", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48237", "label": "CVE-2022-48237", "shape": "dot", "title": "CVE-2022-48237", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48236", "label": "CVE-2022-48236", "shape": "dot", "title": "CVE-2022-48236", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48235", "label": "CVE-2022-48235", "shape": "dot", "title": "CVE-2022-48235", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48372", "label": "CVE-2022-48372", "shape": "dot", "title": "CVE-2022-48372", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48373", "label": "CVE-2022-48373", "shape": "dot", "title": "CVE-2022-48373", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48374", "label": "CVE-2022-48374", "shape": "dot", "title": "CVE-2022-48374", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48239", "label": "CVE-2022-48239", "shape": "dot", "title": "CVE-2022-48239", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48240", "label": "CVE-2022-48240", "shape": "dot", "title": "CVE-2022-48240", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48238", "label": "CVE-2022-48238", "shape": "dot", "title": "CVE-2022-48238", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27934", "label": "CVE-2023-27934", "shape": "dot", "title": "CVE-2023-27934", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27935", "label": "CVE-2023-27935", "shape": "dot", "title": "CVE-2023-27935", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48371", "label": "CVE-2022-48371", "shape": "dot", "title": "CVE-2022-48371", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27936", "label": "CVE-2023-27936", "shape": "dot", "title": "CVE-2023-27936", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27938", "label": "CVE-2023-27938", "shape": "dot", "title": "CVE-2023-27938", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27937", "label": "CVE-2023-27937", "shape": "dot", "title": "CVE-2023-27937", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26285", "label": "CVE-2023-26285", "shape": "dot", "title": "CVE-2023-26285", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2020-4914", "label": "CVE-2020-4914", "shape": "dot", "title": "CVE-2020-4914", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2566", "label": "CVE-2023-2566", "shape": "dot", "title": "CVE-2023-2566", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29247", "label": "CVE-2023-29247", "shape": "dot", "title": "CVE-2023-29247", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46799", "label": "CVE-2022-46799", "shape": "dot", "title": "CVE-2022-46799", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25754", "label": "CVE-2023-25754", "shape": "dot", "title": "CVE-2023-25754", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1650", "label": "CVE-2023-1650", "shape": "dot", "title": "CVE-2023-1650", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31146", "label": "CVE-2023-31146", "shape": "dot", "title": "CVE-2023-31146", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2665", "label": "CVE-2023-2665", "shape": "dot", "title": "CVE-2023-2665", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2666", "label": "CVE-2023-2666", "shape": "dot", "title": "CVE-2023-2666", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27554", "label": "CVE-2023-27554", "shape": "dot", "title": "CVE-2023-27554", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "PSIRT@rockwellautomation.com", "label": "PSIRT@rockwellautomation.com", "shape": "dot", "title": "PSIRT@rockwellautomation.com", "value": 16}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1834", "label": "CVE-2023-1834", "shape": "dot", "title": "CVE-2023-1834", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "support@hackerone.com", "label": "support@hackerone.com", "shape": "dot", "title": "support@hackerone.com", "value": 14}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28359", "label": "CVE-2023-28359", "shape": "dot", "title": "CVE-2023-28359", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28356", "label": "CVE-2023-28356", "shape": "dot", "title": "CVE-2023-28356", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32075", "label": "CVE-2023-32075", "shape": "dot", "title": "CVE-2023-32075", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29195", "label": "CVE-2023-29195", "shape": "dot", "title": "CVE-2023-29195", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32059", "label": "CVE-2023-32059", "shape": "dot", "title": "CVE-2023-32059", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32058", "label": "CVE-2023-32058", "shape": "dot", "title": "CVE-2023-32058", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@golang.org", "label": "security@golang.org", "shape": "dot", "title": "security@golang.org", "value": 3}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24540", "label": "CVE-2023-24540", "shape": "dot", "title": "CVE-2023-24540", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24539", "label": "CVE-2023-24539", "shape": "dot", "title": "CVE-2023-24539", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2444", "label": "CVE-2023-2444", "shape": "dot", "title": "CVE-2023-2444", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2443", "label": "CVE-2023-2443", "shape": "dot", "title": "CVE-2023-2443", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29400", "label": "CVE-2023-29400", "shape": "dot", "title": "CVE-2023-29400", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-39036", "label": "CVE-2021-39036", "shape": "dot", "title": "CVE-2021-39036", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28325", "label": "CVE-2023-28325", "shape": "dot", "title": "CVE-2023-28325", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28357", "label": "CVE-2023-28357", "shape": "dot", "title": "CVE-2023-28357", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28358", "label": "CVE-2023-28358", "shape": "dot", "title": "CVE-2023-28358", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28360", "label": "CVE-2023-28360", "shape": "dot", "title": "CVE-2023-28360", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28361", "label": "CVE-2023-28361", "shape": "dot", "title": "CVE-2023-28361", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32082", "label": "CVE-2023-32082", "shape": "dot", "title": "CVE-2023-32082", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1011", "label": "CVE-2023-1011", "shape": "dot", "title": "CVE-2023-1011", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0894", "label": "CVE-2023-0894", "shape": "dot", "title": "CVE-2023-0894", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46858", "label": "CVE-2022-46858", "shape": "dot", "title": "CVE-2022-46858", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46844", "label": "CVE-2022-46844", "shape": "dot", "title": "CVE-2022-46844", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46864", "label": "CVE-2022-46864", "shape": "dot", "title": "CVE-2022-46864", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1347", "label": "CVE-2023-1347", "shape": "dot", "title": "CVE-2023-1347", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31039", "label": "CVE-2023-31039", "shape": "dot", "title": "CVE-2023-31039", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-43866", "label": "CVE-2022-43866", "shape": "dot", "title": "CVE-2022-43866", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23525", "label": "CVE-2023-23525", "shape": "dot", "title": "CVE-2023-23525", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27942", "label": "CVE-2023-27942", "shape": "dot", "title": "CVE-2023-27942", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27941", "label": "CVE-2023-27941", "shape": "dot", "title": "CVE-2023-27941", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-39161", "label": "CVE-2022-39161", "shape": "dot", "title": "CVE-2022-39161", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23536", "label": "CVE-2023-23536", "shape": "dot", "title": "CVE-2023-23536", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27870", "label": "CVE-2023-27870", "shape": "dot", "title": "CVE-2023-27870", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2616", "label": "CVE-2023-2616", "shape": "dot", "title": "CVE-2023-2616", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2619", "label": "CVE-2023-2619", "shape": "dot", "title": "CVE-2023-2619", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2610", "label": "CVE-2023-2610", "shape": "dot", "title": "CVE-2023-2610", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46822", "label": "CVE-2022-46822", "shape": "dot", "title": "CVE-2022-46822", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23862", "label": "CVE-2023-23862", "shape": "dot", "title": "CVE-2023-23862", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23883", "label": "CVE-2023-23883", "shape": "dot", "title": "CVE-2023-23883", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23884", "label": "CVE-2023-23884", "shape": "dot", "title": "CVE-2023-23884", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23734", "label": "CVE-2023-23734", "shape": "dot", "title": "CVE-2023-23734", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24372", "label": "CVE-2023-24372", "shape": "dot", "title": "CVE-2023-24372", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23733", "label": "CVE-2023-23733", "shape": "dot", "title": "CVE-2023-23733", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23732", "label": "CVE-2023-23732", "shape": "dot", "title": "CVE-2023-23732", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41640", "label": "CVE-2022-41640", "shape": "dot", "title": "CVE-2022-41640", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23664", "label": "CVE-2023-23664", "shape": "dot", "title": "CVE-2023-23664", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23863", "label": "CVE-2023-23863", "shape": "dot", "title": "CVE-2023-23863", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23793", "label": "CVE-2023-23793", "shape": "dot", "title": "CVE-2023-23793", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2590", "label": "CVE-2023-2590", "shape": "dot", "title": "CVE-2023-2590", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48383", "label": "CVE-2022-48383", "shape": "dot", "title": "CVE-2022-48383", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0522", "label": "CVE-2023-0522", "shape": "dot", "title": "CVE-2023-0522", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48382", "label": "CVE-2022-48382", "shape": "dot", "title": "CVE-2022-48382", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48381", "label": "CVE-2022-48381", "shape": "dot", "title": "CVE-2022-48381", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@sick.de", "label": "psirt@sick.de", "shape": "dot", "title": "psirt@sick.de", "value": 9}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23444", "label": "CVE-2023-23444", "shape": "dot", "title": "CVE-2023-23444", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2677", "label": "CVE-2023-2677", "shape": "dot", "title": "CVE-2023-2677", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2678", "label": "CVE-2023-2678", "shape": "dot", "title": "CVE-2023-2678", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2682", "label": "CVE-2023-2682", "shape": "dot", "title": "CVE-2023-2682", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32081", "label": "CVE-2023-32081", "shape": "dot", "title": "CVE-2023-32081", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "cna@cloudflare.com", "label": "cna@cloudflare.com", "shape": "dot", "title": "cna@cloudflare.com", "value": 2}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2512", "label": "CVE-2023-2512", "shape": "dot", "title": "CVE-2023-2512", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2514", "label": "CVE-2023-2514", "shape": "dot", "title": "CVE-2023-2514", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2515", "label": "CVE-2023-2515", "shape": "dot", "title": "CVE-2023-2515", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32073", "label": "CVE-2023-32073", "shape": "dot", "title": "CVE-2023-32073", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2674", "label": "CVE-2023-2674", "shape": "dot", "title": "CVE-2023-2674", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2676", "label": "CVE-2023-2676", "shape": "dot", "title": "CVE-2023-2676", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "ics-cert@hq.dhs.gov", "label": "ics-cert@hq.dhs.gov", "shape": "dot", "title": "ics-cert@hq.dhs.gov", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1934", "label": "CVE-2023-1934", "shape": "dot", "title": "CVE-2023-1934", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28936", "label": "CVE-2023-28936", "shape": "dot", "title": "CVE-2023-28936", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28520", "label": "CVE-2023-28520", "shape": "dot", "title": "CVE-2023-28520", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28522", "label": "CVE-2023-28522", "shape": "dot", "title": "CVE-2023-28522", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29246", "label": "CVE-2023-29246", "shape": "dot", "title": "CVE-2023-29246", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29032", "label": "CVE-2023-29032", "shape": "dot", "title": "CVE-2023-29032", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48378", "label": "CVE-2022-48378", "shape": "dot", "title": "CVE-2022-48378", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48379", "label": "CVE-2022-48379", "shape": "dot", "title": "CVE-2022-48379", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2564", "label": "CVE-2023-2564", "shape": "dot", "title": "CVE-2023-2564", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48380", "label": "CVE-2022-48380", "shape": "dot", "title": "CVE-2022-48380", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21665", "label": "CVE-2023-21665", "shape": "dot", "title": "CVE-2023-21665", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48376", "label": "CVE-2022-48376", "shape": "dot", "title": "CVE-2022-48376", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48377", "label": "CVE-2022-48377", "shape": "dot", "title": "CVE-2022-48377", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48375", "label": "CVE-2022-48375", "shape": "dot", "title": "CVE-2022-48375", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "cve-requests@bitdefender.com", "label": "cve-requests@bitdefender.com", "shape": "dot", "title": "cve-requests@bitdefender.com", "value": 3}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1383", "label": "CVE-2023-1383", "shape": "dot", "title": "CVE-2023-1383", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-44420", "label": "CVE-2022-44420", "shape": "dot", "title": "CVE-2022-44420", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-44419", "label": "CVE-2022-44419", "shape": "dot", "title": "CVE-2022-44419", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-39089", "label": "CVE-2022-39089", "shape": "dot", "title": "CVE-2022-39089", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-38685", "label": "CVE-2022-38685", "shape": "dot", "title": "CVE-2022-38685", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0280", "label": "CVE-2023-0280", "shape": "dot", "title": "CVE-2023-0280", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22787", "label": "CVE-2023-22787", "shape": "dot", "title": "CVE-2023-22787", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0603", "label": "CVE-2023-0603", "shape": "dot", "title": "CVE-2023-0603", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22791", "label": "CVE-2023-22791", "shape": "dot", "title": "CVE-2023-22791", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0768", "label": "CVE-2023-0768", "shape": "dot", "title": "CVE-2023-0768", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0544", "label": "CVE-2023-0544", "shape": "dot", "title": "CVE-2023-0544", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22790", "label": "CVE-2023-22790", "shape": "dot", "title": "CVE-2023-22790", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22789", "label": "CVE-2023-22789", "shape": "dot", "title": "CVE-2023-22789", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22788", "label": "CVE-2023-22788", "shape": "dot", "title": "CVE-2023-22788", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47492", "label": "CVE-2022-47492", "shape": "dot", "title": "CVE-2022-47492", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1384", "label": "CVE-2023-1384", "shape": "dot", "title": "CVE-2023-1384", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47493", "label": "CVE-2022-47493", "shape": "dot", "title": "CVE-2022-47493", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1385", "label": "CVE-2023-1385", "shape": "dot", "title": "CVE-2023-1385", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47490", "label": "CVE-2022-47490", "shape": "dot", "title": "CVE-2022-47490", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48384", "label": "CVE-2022-48384", "shape": "dot", "title": "CVE-2022-48384", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47334", "label": "CVE-2022-47334", "shape": "dot", "title": "CVE-2022-47334", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2016-15031", "label": "CVE-2016-15031", "shape": "dot", "title": "CVE-2016-15031", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30551", "label": "CVE-2023-30551", "shape": "dot", "title": "CVE-2023-30551", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30855", "label": "CVE-2023-30855", "shape": "dot", "title": "CVE-2023-30855", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2583", "label": "CVE-2023-2583", "shape": "dot", "title": "CVE-2023-2583", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1905", "label": "CVE-2023-1905", "shape": "dot", "title": "CVE-2023-1905", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2114", "label": "CVE-2023-2114", "shape": "dot", "title": "CVE-2023-2114", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22779", "label": "CVE-2023-22779", "shape": "dot", "title": "CVE-2023-22779", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22780", "label": "CVE-2023-22780", "shape": "dot", "title": "CVE-2023-22780", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22781", "label": "CVE-2023-22781", "shape": "dot", "title": "CVE-2023-22781", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22782", "label": "CVE-2023-22782", "shape": "dot", "title": "CVE-2023-22782", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22783", "label": "CVE-2023-22783", "shape": "dot", "title": "CVE-2023-22783", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "office@cyberdanube.com", "label": "office@cyberdanube.com", "shape": "dot", "title": "office@cyberdanube.com", "value": 3}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2575", "label": "CVE-2023-2575", "shape": "dot", "title": "CVE-2023-2575", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2574", "label": "CVE-2023-2574", "shape": "dot", "title": "CVE-2023-2574", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2573", "label": "CVE-2023-2573", "shape": "dot", "title": "CVE-2023-2573", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21666", "label": "CVE-2023-21666", "shape": "dot", "title": "CVE-2023-21666", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-40504", "label": "CVE-2022-40504", "shape": "dot", "title": "CVE-2022-40504", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22786", "label": "CVE-2023-22786", "shape": "dot", "title": "CVE-2023-22786", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22785", "label": "CVE-2023-22785", "shape": "dot", "title": "CVE-2023-22785", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22784", "label": "CVE-2023-22784", "shape": "dot", "title": "CVE-2023-22784", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0948", "label": "CVE-2023-0948", "shape": "dot", "title": "CVE-2023-0948", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1979", "label": "CVE-2023-1979", "shape": "dot", "title": "CVE-2023-1979", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27953", "label": "CVE-2023-27953", "shape": "dot", "title": "CVE-2023-27953", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27929", "label": "CVE-2023-27929", "shape": "dot", "title": "CVE-2023-27929", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27954", "label": "CVE-2023-27954", "shape": "dot", "title": "CVE-2023-27954", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27943", "label": "CVE-2023-27943", "shape": "dot", "title": "CVE-2023-27943", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27931", "label": "CVE-2023-27931", "shape": "dot", "title": "CVE-2023-27931", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27957", "label": "CVE-2023-27957", "shape": "dot", "title": "CVE-2023-27957", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "help@fluidattacks.com", "label": "help@fluidattacks.com", "shape": "dot", "title": "help@fluidattacks.com", "value": 6}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1094", "label": "CVE-2023-1094", "shape": "dot", "title": "CVE-2023-1094", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27959", "label": "CVE-2023-27959", "shape": "dot", "title": "CVE-2023-27959", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27955", "label": "CVE-2023-27955", "shape": "dot", "title": "CVE-2023-27955", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27967", "label": "CVE-2023-27967", "shape": "dot", "title": "CVE-2023-27967", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27968", "label": "CVE-2023-27968", "shape": "dot", "title": "CVE-2023-27968", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30790", "label": "CVE-2023-30790", "shape": "dot", "title": "CVE-2023-30790", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30789", "label": "CVE-2023-30789", "shape": "dot", "title": "CVE-2023-30789", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30788", "label": "CVE-2023-30788", "shape": "dot", "title": "CVE-2023-30788", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30787", "label": "CVE-2023-30787", "shape": "dot", "title": "CVE-2023-30787", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31180", "label": "CVE-2023-31180", "shape": "dot", "title": "CVE-2023-31180", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31181", "label": "CVE-2023-31181", "shape": "dot", "title": "CVE-2023-31181", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "cna@sap.com", "label": "cna@sap.com", "shape": "dot", "title": "cna@sap.com", "value": 14}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29188", "label": "CVE-2023-29188", "shape": "dot", "title": "CVE-2023-29188", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28764", "label": "CVE-2023-28764", "shape": "dot", "title": "CVE-2023-28764", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28762", "label": "CVE-2023-28762", "shape": "dot", "title": "CVE-2023-28762", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27949", "label": "CVE-2023-27949", "shape": "dot", "title": "CVE-2023-27949", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27946", "label": "CVE-2023-27946", "shape": "dot", "title": "CVE-2023-27946", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27958", "label": "CVE-2023-27958", "shape": "dot", "title": "CVE-2023-27958", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27961", "label": "CVE-2023-27961", "shape": "dot", "title": "CVE-2023-27961", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28189", "label": "CVE-2023-28189", "shape": "dot", "title": "CVE-2023-28189", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28192", "label": "CVE-2023-28192", "shape": "dot", "title": "CVE-2023-28192", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28200", "label": "CVE-2023-28200", "shape": "dot", "title": "CVE-2023-28200", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28190", "label": "CVE-2023-28190", "shape": "dot", "title": "CVE-2023-28190", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27944", "label": "CVE-2023-27944", "shape": "dot", "title": "CVE-2023-27944", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28180", "label": "CVE-2023-28180", "shape": "dot", "title": "CVE-2023-28180", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27932", "label": "CVE-2023-27932", "shape": "dot", "title": "CVE-2023-27932", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27933", "label": "CVE-2023-27933", "shape": "dot", "title": "CVE-2023-27933", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27952", "label": "CVE-2023-27952", "shape": "dot", "title": "CVE-2023-27952", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27951", "label": "CVE-2023-27951", "shape": "dot", "title": "CVE-2023-27951", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2591", "label": "CVE-2023-2591", "shape": "dot", "title": "CVE-2023-2591", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22685", "label": "CVE-2023-22685", "shape": "dot", "title": "CVE-2023-22685", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32306", "label": "CVE-2023-32306", "shape": "dot", "title": "CVE-2023-32306", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23810", "label": "CVE-2023-23810", "shape": "dot", "title": "CVE-2023-23810", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29242", "label": "CVE-2023-29242", "shape": "dot", "title": "CVE-2023-29242", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23867", "label": "CVE-2023-23867", "shape": "dot", "title": "CVE-2023-23867", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47381", "label": "CVE-2022-47381", "shape": "dot", "title": "CVE-2022-47381", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47388", "label": "CVE-2022-47388", "shape": "dot", "title": "CVE-2022-47388", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47387", "label": "CVE-2022-47387", "shape": "dot", "title": "CVE-2022-47387", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47380", "label": "CVE-2022-47380", "shape": "dot", "title": "CVE-2022-47380", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2458", "label": "CVE-2023-2458", "shape": "dot", "title": "CVE-2023-2458", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22690", "label": "CVE-2023-22690", "shape": "dot", "title": "CVE-2023-22690", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22684", "label": "CVE-2023-22684", "shape": "dot", "title": "CVE-2023-22684", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47386", "label": "CVE-2022-47386", "shape": "dot", "title": "CVE-2022-47386", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47385", "label": "CVE-2022-47385", "shape": "dot", "title": "CVE-2022-47385", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@autodesk.com", "label": "psirt@autodesk.com", "shape": "dot", "title": "psirt@autodesk.com", "value": 5}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25005", "label": "CVE-2023-25005", "shape": "dot", "title": "CVE-2023-25005", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25006", "label": "CVE-2023-25006", "shape": "dot", "title": "CVE-2023-25006", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47384", "label": "CVE-2022-47384", "shape": "dot", "title": "CVE-2022-47384", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47383", "label": "CVE-2022-47383", "shape": "dot", "title": "CVE-2022-47383", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2457", "label": "CVE-2023-2457", "shape": "dot", "title": "CVE-2023-2457", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32305", "label": "CVE-2023-32305", "shape": "dot", "title": "CVE-2023-32305", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32303", "label": "CVE-2023-32303", "shape": "dot", "title": "CVE-2023-32303", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47389", "label": "CVE-2022-47389", "shape": "dot", "title": "CVE-2022-47389", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47379", "label": "CVE-2022-47379", "shape": "dot", "title": "CVE-2022-47379", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47378", "label": "CVE-2022-47378", "shape": "dot", "title": "CVE-2022-47378", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23445", "label": "CVE-2023-23445", "shape": "dot", "title": "CVE-2023-23445", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@vmware.com", "label": "security@vmware.com", "shape": "dot", "title": "security@vmware.com", "value": 4}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20877", "label": "CVE-2023-20877", "shape": "dot", "title": "CVE-2023-20877", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20878", "label": "CVE-2023-20878", "shape": "dot", "title": "CVE-2023-20878", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "secalert@redhat.com", "label": "secalert@redhat.com", "shape": "dot", "title": "secalert@redhat.com", "value": 14}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2088", "label": "CVE-2023-2088", "shape": "dot", "title": "CVE-2023-2088", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23447", "label": "CVE-2023-23447", "shape": "dot", "title": "CVE-2023-23447", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23448", "label": "CVE-2023-23448", "shape": "dot", "title": "CVE-2023-23448", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23449", "label": "CVE-2023-23449", "shape": "dot", "title": "CVE-2023-23449", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22717", "label": "CVE-2023-22717", "shape": "dot", "title": "CVE-2023-22717", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20880", "label": "CVE-2023-20880", "shape": "dot", "title": "CVE-2023-20880", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22706", "label": "CVE-2023-22706", "shape": "dot", "title": "CVE-2023-22706", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23450", "label": "CVE-2023-23450", "shape": "dot", "title": "CVE-2023-23450", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47393", "label": "CVE-2022-47393", "shape": "dot", "title": "CVE-2022-47393", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47392", "label": "CVE-2022-47392", "shape": "dot", "title": "CVE-2022-47392", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23654", "label": "CVE-2023-23654", "shape": "dot", "title": "CVE-2023-23654", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47391", "label": "CVE-2022-47391", "shape": "dot", "title": "CVE-2022-47391", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23674", "label": "CVE-2023-23674", "shape": "dot", "title": "CVE-2023-23674", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23683", "label": "CVE-2023-23683", "shape": "dot", "title": "CVE-2023-23683", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23688", "label": "CVE-2023-23688", "shape": "dot", "title": "CVE-2023-23688", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47390", "label": "CVE-2022-47390", "shape": "dot", "title": "CVE-2022-47390", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22703", "label": "CVE-2023-22703", "shape": "dot", "title": "CVE-2023-22703", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23446", "label": "CVE-2023-23446", "shape": "dot", "title": "CVE-2023-23446", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20879", "label": "CVE-2023-20879", "shape": "dot", "title": "CVE-2023-20879", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47382", "label": "CVE-2022-47382", "shape": "dot", "title": "CVE-2022-47382", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22318", "label": "CVE-2023-22318", "shape": "dot", "title": "CVE-2023-22318", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2181", "label": "CVE-2023-2181", "shape": "dot", "title": "CVE-2023-2181", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31197", "label": "CVE-2023-31197", "shape": "dot", "title": "CVE-2023-31197", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31199", "label": "CVE-2023-31199", "shape": "dot", "title": "CVE-2023-31199", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4048", "label": "CVE-2022-4048", "shape": "dot", "title": "CVE-2022-4048", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31408", "label": "CVE-2023-31408", "shape": "dot", "title": "CVE-2023-31408", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1698", "label": "CVE-2023-1698", "shape": "dot", "title": "CVE-2023-1698", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2699", "label": "CVE-2023-2699", "shape": "dot", "title": "CVE-2023-2699", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security-alert@netapp.com", "label": "security-alert@netapp.com", "shape": "dot", "title": "security-alert@netapp.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1096", "label": "CVE-2023-1096", "shape": "dot", "title": "CVE-2023-1096", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31409", "label": "CVE-2023-31409", "shape": "dot", "title": "CVE-2023-31409", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2698", "label": "CVE-2023-2698", "shape": "dot", "title": "CVE-2023-2698", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-22508", "label": "CVE-2022-22508", "shape": "dot", "title": "CVE-2022-22508", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2697", "label": "CVE-2023-2697", "shape": "dot", "title": "CVE-2023-2697", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2696", "label": "CVE-2023-2696", "shape": "dot", "title": "CVE-2023-2696", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25958", "label": "CVE-2023-25958", "shape": "dot", "title": "CVE-2023-25958", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25009", "label": "CVE-2023-25009", "shape": "dot", "title": "CVE-2023-25009", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25927", "label": "CVE-2023-25927", "shape": "dot", "title": "CVE-2023-25927", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30768", "label": "CVE-2023-30768", "shape": "dot", "title": "CVE-2023-30768", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2689", "label": "CVE-2023-2689", "shape": "dot", "title": "CVE-2023-2689", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2690", "label": "CVE-2023-2690", "shape": "dot", "title": "CVE-2023-2690", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2691", "label": "CVE-2023-2691", "shape": "dot", "title": "CVE-2023-2691", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2695", "label": "CVE-2023-2695", "shape": "dot", "title": "CVE-2023-2695", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2692", "label": "CVE-2023-2692", "shape": "dot", "title": "CVE-2023-2692", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25007", "label": "CVE-2023-25007", "shape": "dot", "title": "CVE-2023-25007", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2694", "label": "CVE-2023-2694", "shape": "dot", "title": "CVE-2023-2694", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25008", "label": "CVE-2023-25008", "shape": "dot", "title": "CVE-2023-25008", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27863", "label": "CVE-2023-27863", "shape": "dot", "title": "CVE-2023-27863", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2693", "label": "CVE-2023-2693", "shape": "dot", "title": "CVE-2023-2693", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30763", "label": "CVE-2023-30763", "shape": "dot", "title": "CVE-2023-30763", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-44433", "label": "CVE-2022-44433", "shape": "dot", "title": "CVE-2022-44433", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47488", "label": "CVE-2022-47488", "shape": "dot", "title": "CVE-2022-47488", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47486", "label": "CVE-2022-47486", "shape": "dot", "title": "CVE-2022-47486", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47487", "label": "CVE-2022-47487", "shape": "dot", "title": "CVE-2022-47487", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47485", "label": "CVE-2022-47485", "shape": "dot", "title": "CVE-2022-47485", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47469", "label": "CVE-2022-47469", "shape": "dot", "title": "CVE-2022-47469", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47340", "label": "CVE-2022-47340", "shape": "dot", "title": "CVE-2022-47340", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47470", "label": "CVE-2022-47470", "shape": "dot", "title": "CVE-2022-47470", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28201", "label": "CVE-2023-28201", "shape": "dot", "title": "CVE-2023-28201", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28194", "label": "CVE-2023-28194", "shape": "dot", "title": "CVE-2023-28194", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0644", "label": "CVE-2023-0644", "shape": "dot", "title": "CVE-2023-0644", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0763", "label": "CVE-2023-0763", "shape": "dot", "title": "CVE-2023-0763", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0762", "label": "CVE-2023-0762", "shape": "dot", "title": "CVE-2023-0762", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0761", "label": "CVE-2023-0761", "shape": "dot", "title": "CVE-2023-0761", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1835", "label": "CVE-2023-1835", "shape": "dot", "title": "CVE-2023-1835", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1839", "label": "CVE-2023-1839", "shape": "dot", "title": "CVE-2023-1839", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0600", "label": "CVE-2023-0600", "shape": "dot", "title": "CVE-2023-0600", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2180", "label": "CVE-2023-2180", "shape": "dot", "title": "CVE-2023-2180", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0812", "label": "CVE-2023-0812", "shape": "dot", "title": "CVE-2023-0812", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4774", "label": "CVE-2022-4774", "shape": "dot", "title": "CVE-2022-4774", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1019", "label": "CVE-2023-1019", "shape": "dot", "title": "CVE-2023-1019", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1915", "label": "CVE-2023-1915", "shape": "dot", "title": "CVE-2023-1915", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0892", "label": "CVE-2023-0892", "shape": "dot", "title": "CVE-2023-0892", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0233", "label": "CVE-2023-0233", "shape": "dot", "title": "CVE-2023-0233", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1207", "label": "CVE-2023-1207", "shape": "dot", "title": "CVE-2023-1207", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1890", "label": "CVE-2023-1890", "shape": "dot", "title": "CVE-2023-1890", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0490", "label": "CVE-2023-0490", "shape": "dot", "title": "CVE-2023-0490", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1596", "label": "CVE-2023-1596", "shape": "dot", "title": "CVE-2023-1596", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23682", "label": "CVE-2023-23682", "shape": "dot", "title": "CVE-2023-23682", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0520", "label": "CVE-2023-0520", "shape": "dot", "title": "CVE-2023-0520", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2009", "label": "CVE-2023-2009", "shape": "dot", "title": "CVE-2023-2009", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2179", "label": "CVE-2023-2179", "shape": "dot", "title": "CVE-2023-2179", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1549", "label": "CVE-2023-1549", "shape": "dot", "title": "CVE-2023-1549", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47498", "label": "CVE-2022-47498", "shape": "dot", "title": "CVE-2022-47498", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47497", "label": "CVE-2022-47497", "shape": "dot", "title": "CVE-2022-47497", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47499", "label": "CVE-2022-47499", "shape": "dot", "title": "CVE-2022-47499", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47495", "label": "CVE-2022-47495", "shape": "dot", "title": "CVE-2022-47495", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47496", "label": "CVE-2022-47496", "shape": "dot", "title": "CVE-2022-47496", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47494", "label": "CVE-2022-47494", "shape": "dot", "title": "CVE-2022-47494", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47489", "label": "CVE-2022-47489", "shape": "dot", "title": "CVE-2022-47489", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47491", "label": "CVE-2022-47491", "shape": "dot", "title": "CVE-2022-47491", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48389", "label": "CVE-2022-48389", "shape": "dot", "title": "CVE-2022-48389", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48386", "label": "CVE-2022-48386", "shape": "dot", "title": "CVE-2022-48386", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48387", "label": "CVE-2022-48387", "shape": "dot", "title": "CVE-2022-48387", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48385", "label": "CVE-2022-48385", "shape": "dot", "title": "CVE-2022-48385", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-48388", "label": "CVE-2022-48388", "shape": "dot", "title": "CVE-2022-48388", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28178", "label": "CVE-2023-28178", "shape": "dot", "title": "CVE-2023-28178", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27970", "label": "CVE-2023-27970", "shape": "dot", "title": "CVE-2023-27970", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27960", "label": "CVE-2023-27960", "shape": "dot", "title": "CVE-2023-27960", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27962", "label": "CVE-2023-27962", "shape": "dot", "title": "CVE-2023-27962", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@wordfence.com", "label": "security@wordfence.com", "shape": "dot", "title": "security@wordfence.com", "value": 11}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4537", "label": "CVE-2022-4537", "shape": "dot", "title": "CVE-2022-4537", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47937", "label": "CVE-2022-47937", "shape": "dot", "title": "CVE-2022-47937", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27969", "label": "CVE-2023-27969", "shape": "dot", "title": "CVE-2023-27969", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28182", "label": "CVE-2023-28182", "shape": "dot", "title": "CVE-2023-28182", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27966", "label": "CVE-2023-27966", "shape": "dot", "title": "CVE-2023-27966", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27965", "label": "CVE-2023-27965", "shape": "dot", "title": "CVE-2023-27965", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27956", "label": "CVE-2023-27956", "shape": "dot", "title": "CVE-2023-27956", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27963", "label": "CVE-2023-27963", "shape": "dot", "title": "CVE-2023-27963", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0421", "label": "CVE-2023-0421", "shape": "dot", "title": "CVE-2023-0421", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31038", "label": "CVE-2023-31038", "shape": "dot", "title": "CVE-2023-31038", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24957", "label": "CVE-2023-24957", "shape": "dot", "title": "CVE-2023-24957", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31182", "label": "CVE-2023-31182", "shape": "dot", "title": "CVE-2023-31182", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "product-security@axis.com", "label": "product-security@axis.com", "shape": "dot", "title": "product-security@axis.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21404", "label": "CVE-2023-21404", "shape": "dot", "title": "CVE-2023-21404", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2478", "label": "CVE-2023-2478", "shape": "dot", "title": "CVE-2023-2478", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31123", "label": "CVE-2023-31123", "shape": "dot", "title": "CVE-2023-31123", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31179", "label": "CVE-2023-31179", "shape": "dot", "title": "CVE-2023-31179", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31178", "label": "CVE-2023-31178", "shape": "dot", "title": "CVE-2023-31178", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24507", "label": "CVE-2023-24507", "shape": "dot", "title": "CVE-2023-24507", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32112", "label": "CVE-2023-32112", "shape": "dot", "title": "CVE-2023-32112", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32111", "label": "CVE-2023-32111", "shape": "dot", "title": "CVE-2023-32111", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31404", "label": "CVE-2023-31404", "shape": "dot", "title": "CVE-2023-31404", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31406", "label": "CVE-2023-31406", "shape": "dot", "title": "CVE-2023-31406", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31407", "label": "CVE-2023-31407", "shape": "dot", "title": "CVE-2023-31407", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30744", "label": "CVE-2023-30744", "shape": "dot", "title": "CVE-2023-30744", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29022", "label": "CVE-2023-29022", "shape": "dot", "title": "CVE-2023-29022", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29026", "label": "CVE-2023-29026", "shape": "dot", "title": "CVE-2023-29026", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29025", "label": "CVE-2023-29025", "shape": "dot", "title": "CVE-2023-29025", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29024", "label": "CVE-2023-29024", "shape": "dot", "title": "CVE-2023-29024", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29023", "label": "CVE-2023-29023", "shape": "dot", "title": "CVE-2023-29023", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29028", "label": "CVE-2023-29028", "shape": "dot", "title": "CVE-2023-29028", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29029", "label": "CVE-2023-29029", "shape": "dot", "title": "CVE-2023-29029", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29030", "label": "CVE-2023-29030", "shape": "dot", "title": "CVE-2023-29030", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29031", "label": "CVE-2023-29031", "shape": "dot", "title": "CVE-2023-29031", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29027", "label": "CVE-2023-29027", "shape": "dot", "title": "CVE-2023-29027", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30743", "label": "CVE-2023-30743", "shape": "dot", "title": "CVE-2023-30743", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30742", "label": "CVE-2023-30742", "shape": "dot", "title": "CVE-2023-30742", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30741", "label": "CVE-2023-30741", "shape": "dot", "title": "CVE-2023-30741", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30740", "label": "CVE-2023-30740", "shape": "dot", "title": "CVE-2023-30740", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32113", "label": "CVE-2023-32113", "shape": "dot", "title": "CVE-2023-32113", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "vulnreport@tenable.com", "label": "vulnreport@tenable.com", "shape": "dot", "title": "vulnreport@tenable.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2582", "label": "CVE-2023-2582", "shape": "dot", "title": "CVE-2023-2582", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2513", "label": "CVE-2023-2513", "shape": "dot", "title": "CVE-2023-2513", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23647", "label": "CVE-2023-23647", "shape": "dot", "title": "CVE-2023-23647", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24506", "label": "CVE-2023-24506", "shape": "dot", "title": "CVE-2023-24506", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31129", "label": "CVE-2023-31129", "shape": "dot", "title": "CVE-2023-31129", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24905", "label": "CVE-2023-24905", "shape": "dot", "title": "CVE-2023-24905", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31140", "label": "CVE-2023-31140", "shape": "dot", "title": "CVE-2023-31140", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30844", "label": "CVE-2023-30844", "shape": "dot", "title": "CVE-2023-30844", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31127", "label": "CVE-2023-31127", "shape": "dot", "title": "CVE-2023-31127", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24932", "label": "CVE-2023-24932", "shape": "dot", "title": "CVE-2023-24932", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24505", "label": "CVE-2023-24505", "shape": "dot", "title": "CVE-2023-24505", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31133", "label": "CVE-2023-31133", "shape": "dot", "title": "CVE-2023-31133", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "productcert@siemens.com", "label": "productcert@siemens.com", "shape": "dot", "title": "productcert@siemens.com", "value": 15}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29128", "label": "CVE-2023-29128", "shape": "dot", "title": "CVE-2023-29128", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24939", "label": "CVE-2023-24939", "shape": "dot", "title": "CVE-2023-24939", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24904", "label": "CVE-2023-24904", "shape": "dot", "title": "CVE-2023-24904", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30840", "label": "CVE-2023-30840", "shape": "dot", "title": "CVE-2023-30840", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29107", "label": "CVE-2023-29107", "shape": "dot", "title": "CVE-2023-29107", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24901", "label": "CVE-2023-24901", "shape": "dot", "title": "CVE-2023-24901", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31125", "label": "CVE-2023-31125", "shape": "dot", "title": "CVE-2023-31125", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29106", "label": "CVE-2023-29106", "shape": "dot", "title": "CVE-2023-29106", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24902", "label": "CVE-2023-24902", "shape": "dot", "title": "CVE-2023-24902", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29105", "label": "CVE-2023-29105", "shape": "dot", "title": "CVE-2023-29105", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29104", "label": "CVE-2023-29104", "shape": "dot", "title": "CVE-2023-29104", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29103", "label": "CVE-2023-29103", "shape": "dot", "title": "CVE-2023-29103", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24898", "label": "CVE-2023-24898", "shape": "dot", "title": "CVE-2023-24898", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24903", "label": "CVE-2023-24903", "shape": "dot", "title": "CVE-2023-24903", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24900", "label": "CVE-2023-24900", "shape": "dot", "title": "CVE-2023-24900", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24899", "label": "CVE-2023-24899", "shape": "dot", "title": "CVE-2023-24899", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27410", "label": "CVE-2023-27410", "shape": "dot", "title": "CVE-2023-27410", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27409", "label": "CVE-2023-27409", "shape": "dot", "title": "CVE-2023-27409", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27408", "label": "CVE-2023-27408", "shape": "dot", "title": "CVE-2023-27408", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27407", "label": "CVE-2023-27407", "shape": "dot", "title": "CVE-2023-27407", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31141", "label": "CVE-2023-31141", "shape": "dot", "title": "CVE-2023-31141", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2596", "label": "CVE-2023-2596", "shape": "dot", "title": "CVE-2023-2596", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2594", "label": "CVE-2023-2594", "shape": "dot", "title": "CVE-2023-2594", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2595", "label": "CVE-2023-2595", "shape": "dot", "title": "CVE-2023-2595", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@esri.com", "label": "psirt@esri.com", "shape": "dot", "title": "psirt@esri.com", "value": 6}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25830", "label": "CVE-2023-25830", "shape": "dot", "title": "CVE-2023-25830", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28832", "label": "CVE-2023-28832", "shape": "dot", "title": "CVE-2023-28832", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25829", "label": "CVE-2023-25829", "shape": "dot", "title": "CVE-2023-25829", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24948", "label": "CVE-2023-24948", "shape": "dot", "title": "CVE-2023-24948", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24949", "label": "CVE-2023-24949", "shape": "dot", "title": "CVE-2023-24949", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24950", "label": "CVE-2023-24950", "shape": "dot", "title": "CVE-2023-24950", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24946", "label": "CVE-2023-24946", "shape": "dot", "title": "CVE-2023-24946", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24945", "label": "CVE-2023-24945", "shape": "dot", "title": "CVE-2023-24945", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24947", "label": "CVE-2023-24947", "shape": "dot", "title": "CVE-2023-24947", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24943", "label": "CVE-2023-24943", "shape": "dot", "title": "CVE-2023-24943", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24944", "label": "CVE-2023-24944", "shape": "dot", "title": "CVE-2023-24944", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24940", "label": "CVE-2023-24940", "shape": "dot", "title": "CVE-2023-24940", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24941", "label": "CVE-2023-24941", "shape": "dot", "title": "CVE-2023-24941", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24942", "label": "CVE-2023-24942", "shape": "dot", "title": "CVE-2023-24942", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29335", "label": "CVE-2023-29335", "shape": "dot", "title": "CVE-2023-29335", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29333", "label": "CVE-2023-29333", "shape": "dot", "title": "CVE-2023-29333", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29325", "label": "CVE-2023-29325", "shape": "dot", "title": "CVE-2023-29325", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29324", "label": "CVE-2023-29324", "shape": "dot", "title": "CVE-2023-29324", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28283", "label": "CVE-2023-28283", "shape": "dot", "title": "CVE-2023-28283", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28290", "label": "CVE-2023-28290", "shape": "dot", "title": "CVE-2023-28290", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28251", "label": "CVE-2023-28251", "shape": "dot", "title": "CVE-2023-28251", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23701", "label": "CVE-2023-23701", "shape": "dot", "title": "CVE-2023-23701", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23788", "label": "CVE-2023-23788", "shape": "dot", "title": "CVE-2023-23788", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22711", "label": "CVE-2023-22711", "shape": "dot", "title": "CVE-2023-22711", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-33961", "label": "CVE-2022-33961", "shape": "dot", "title": "CVE-2022-33961", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46817", "label": "CVE-2022-46817", "shape": "dot", "title": "CVE-2022-46817", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30746", "label": "CVE-2023-30746", "shape": "dot", "title": "CVE-2023-30746", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23812", "label": "CVE-2023-23812", "shape": "dot", "title": "CVE-2023-23812", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23789", "label": "CVE-2023-23789", "shape": "dot", "title": "CVE-2023-23789", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@android.com", "label": "security@android.com", "shape": "dot", "title": "security@android.com", "value": 15}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21102", "label": "CVE-2023-21102", "shape": "dot", "title": "CVE-2023-21102", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21103", "label": "CVE-2023-21103", "shape": "dot", "title": "CVE-2023-21103", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21104", "label": "CVE-2023-21104", "shape": "dot", "title": "CVE-2023-21104", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@mediatek.com", "label": "security@mediatek.com", "shape": "dot", "title": "security@mediatek.com", "value": 25}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20719", "label": "CVE-2023-20719", "shape": "dot", "title": "CVE-2023-20719", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23727", "label": "CVE-2023-23727", "shape": "dot", "title": "CVE-2023-23727", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20718", "label": "CVE-2023-20718", "shape": "dot", "title": "CVE-2023-20718", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21116", "label": "CVE-2023-21116", "shape": "dot", "title": "CVE-2023-21116", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20717", "label": "CVE-2023-20717", "shape": "dot", "title": "CVE-2023-20717", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20711", "label": "CVE-2023-20711", "shape": "dot", "title": "CVE-2023-20711", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2548", "label": "CVE-2023-2548", "shape": "dot", "title": "CVE-2023-2548", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31145", "label": "CVE-2023-31145", "shape": "dot", "title": "CVE-2023-31145", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20710", "label": "CVE-2023-20710", "shape": "dot", "title": "CVE-2023-20710", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20694", "label": "CVE-2023-20694", "shape": "dot", "title": "CVE-2023-20694", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21112", "label": "CVE-2023-21112", "shape": "dot", "title": "CVE-2023-21112", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31131", "label": "CVE-2023-31131", "shape": "dot", "title": "CVE-2023-31131", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20709", "label": "CVE-2023-20709", "shape": "dot", "title": "CVE-2023-20709", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20695", "label": "CVE-2023-20695", "shape": "dot", "title": "CVE-2023-20695", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21111", "label": "CVE-2023-21111", "shape": "dot", "title": "CVE-2023-21111", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21110", "label": "CVE-2023-21110", "shape": "dot", "title": "CVE-2023-21110", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21109", "label": "CVE-2023-21109", "shape": "dot", "title": "CVE-2023-21109", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20705", "label": "CVE-2023-20705", "shape": "dot", "title": "CVE-2023-20705", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20706", "label": "CVE-2023-20706", "shape": "dot", "title": "CVE-2023-20706", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21107", "label": "CVE-2023-21107", "shape": "dot", "title": "CVE-2023-21107", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20930", "label": "CVE-2023-20930", "shape": "dot", "title": "CVE-2023-20930", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20707", "label": "CVE-2023-20707", "shape": "dot", "title": "CVE-2023-20707", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20697", "label": "CVE-2023-20697", "shape": "dot", "title": "CVE-2023-20697", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20696", "label": "CVE-2023-20696", "shape": "dot", "title": "CVE-2023-20696", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20708", "label": "CVE-2023-20708", "shape": "dot", "title": "CVE-2023-20708", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21106", "label": "CVE-2023-21106", "shape": "dot", "title": "CVE-2023-21106", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-0877", "label": "CVE-2021-0877", "shape": "dot", "title": "CVE-2021-0877", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32068", "label": "CVE-2023-32068", "shape": "dot", "title": "CVE-2023-32068", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20698", "label": "CVE-2023-20698", "shape": "dot", "title": "CVE-2023-20698", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20699", "label": "CVE-2023-20699", "shape": "dot", "title": "CVE-2023-20699", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23720", "label": "CVE-2023-23720", "shape": "dot", "title": "CVE-2023-23720", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23709", "label": "CVE-2023-23709", "shape": "dot", "title": "CVE-2023-23709", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23673", "label": "CVE-2023-23673", "shape": "dot", "title": "CVE-2023-23673", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20701", "label": "CVE-2023-20701", "shape": "dot", "title": "CVE-2023-20701", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20721", "label": "CVE-2023-20721", "shape": "dot", "title": "CVE-2023-20721", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2124", "label": "CVE-2023-2124", "shape": "dot", "title": "CVE-2023-2124", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23657", "label": "CVE-2023-23657", "shape": "dot", "title": "CVE-2023-23657", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20673", "label": "CVE-2023-20673", "shape": "dot", "title": "CVE-2023-20673", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21117", "label": "CVE-2023-21117", "shape": "dot", "title": "CVE-2023-21117", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23641", "label": "CVE-2023-23641", "shape": "dot", "title": "CVE-2023-23641", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2710", "label": "CVE-2023-2710", "shape": "dot", "title": "CVE-2023-2710", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2708", "label": "CVE-2023-2708", "shape": "dot", "title": "CVE-2023-2708", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20700", "label": "CVE-2023-20700", "shape": "dot", "title": "CVE-2023-20700", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20722", "label": "CVE-2023-20722", "shape": "dot", "title": "CVE-2023-20722", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2700", "label": "CVE-2023-2700", "shape": "dot", "title": "CVE-2023-2700", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20726", "label": "CVE-2023-20726", "shape": "dot", "title": "CVE-2023-20726", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "cybersecurity@schneider-electric.com", "label": "cybersecurity@schneider-electric.com", "shape": "dot", "title": "cybersecurity@schneider-electric.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2161", "label": "CVE-2023-2161", "shape": "dot", "title": "CVE-2023-2161", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23703", "label": "CVE-2023-23703", "shape": "dot", "title": "CVE-2023-23703", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23676", "label": "CVE-2023-23676", "shape": "dot", "title": "CVE-2023-23676", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20914", "label": "CVE-2023-20914", "shape": "dot", "title": "CVE-2023-20914", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@synology.com", "label": "security@synology.com", "shape": "dot", "title": "security@synology.com", "value": 2}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32956", "label": "CVE-2023-32956", "shape": "dot", "title": "CVE-2023-32956", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32955", "label": "CVE-2023-32955", "shape": "dot", "title": "CVE-2023-32955", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32314", "label": "CVE-2023-32314", "shape": "dot", "title": "CVE-2023-32314", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32313", "label": "CVE-2023-32313", "shape": "dot", "title": "CVE-2023-32313", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32309", "label": "CVE-2023-32309", "shape": "dot", "title": "CVE-2023-32309", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2499", "label": "CVE-2023-2499", "shape": "dot", "title": "CVE-2023-2499", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20704", "label": "CVE-2023-20704", "shape": "dot", "title": "CVE-2023-20704", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20703", "label": "CVE-2023-20703", "shape": "dot", "title": "CVE-2023-20703", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32308", "label": "CVE-2023-32308", "shape": "dot", "title": "CVE-2023-32308", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20720", "label": "CVE-2023-20720", "shape": "dot", "title": "CVE-2023-20720", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-21118", "label": "CVE-2023-21118", "shape": "dot", "title": "CVE-2023-21118", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27928", "label": "CVE-2023-27928", "shape": "dot", "title": "CVE-2023-27928", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2730", "label": "CVE-2023-2730", "shape": "dot", "title": "CVE-2023-2730", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23543", "label": "CVE-2023-23543", "shape": "dot", "title": "CVE-2023-23543", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-32970", "label": "CVE-2022-32970", "shape": "dot", "title": "CVE-2022-32970", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@otrs.com", "label": "security@otrs.com", "shape": "dot", "title": "security@otrs.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2534", "label": "CVE-2023-2534", "shape": "dot", "title": "CVE-2023-2534", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24392", "label": "CVE-2023-24392", "shape": "dot", "title": "CVE-2023-24392", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24418", "label": "CVE-2023-24418", "shape": "dot", "title": "CVE-2023-24418", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23786", "label": "CVE-2023-23786", "shape": "dot", "title": "CVE-2023-23786", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2614", "label": "CVE-2023-2614", "shape": "dot", "title": "CVE-2023-2614", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2615", "label": "CVE-2023-2615", "shape": "dot", "title": "CVE-2023-2615", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0514", "label": "CVE-2023-0514", "shape": "dot", "title": "CVE-2023-0514", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0526", "label": "CVE-2023-0526", "shape": "dot", "title": "CVE-2023-0526", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1408", "label": "CVE-2023-1408", "shape": "dot", "title": "CVE-2023-1408", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0542", "label": "CVE-2023-0542", "shape": "dot", "title": "CVE-2023-0542", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0537", "label": "CVE-2023-0537", "shape": "dot", "title": "CVE-2023-0537", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29343", "label": "CVE-2023-29343", "shape": "dot", "title": "CVE-2023-29343", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22813", "label": "CVE-2023-22813", "shape": "dot", "title": "CVE-2023-22813", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2609", "label": "CVE-2023-2609", "shape": "dot", "title": "CVE-2023-2609", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24955", "label": "CVE-2023-24955", "shape": "dot", "title": "CVE-2023-24955", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29338", "label": "CVE-2023-29338", "shape": "dot", "title": "CVE-2023-29338", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31138", "label": "CVE-2023-31138", "shape": "dot", "title": "CVE-2023-31138", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24954", "label": "CVE-2023-24954", "shape": "dot", "title": "CVE-2023-24954", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24953", "label": "CVE-2023-24953", "shape": "dot", "title": "CVE-2023-24953", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46861", "label": "CVE-2022-46861", "shape": "dot", "title": "CVE-2022-46861", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46819", "label": "CVE-2022-46819", "shape": "dot", "title": "CVE-2022-46819", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31136", "label": "CVE-2023-31136", "shape": "dot", "title": "CVE-2023-31136", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31137", "label": "CVE-2023-31137", "shape": "dot", "title": "CVE-2023-31137", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31139", "label": "CVE-2023-31139", "shape": "dot", "title": "CVE-2023-31139", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31143", "label": "CVE-2023-31143", "shape": "dot", "title": "CVE-2023-31143", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32060", "label": "CVE-2023-32060", "shape": "dot", "title": "CVE-2023-32060", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25834", "label": "CVE-2023-25834", "shape": "dot", "title": "CVE-2023-25834", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32069", "label": "CVE-2023-32069", "shape": "dot", "title": "CVE-2023-32069", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32071", "label": "CVE-2023-32071", "shape": "dot", "title": "CVE-2023-32071", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25833", "label": "CVE-2023-25833", "shape": "dot", "title": "CVE-2023-25833", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28127", "label": "CVE-2023-28127", "shape": "dot", "title": "CVE-2023-28127", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28126", "label": "CVE-2023-28126", "shape": "dot", "title": "CVE-2023-28126", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31134", "label": "CVE-2023-31134", "shape": "dot", "title": "CVE-2023-31134", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29460", "label": "CVE-2023-29460", "shape": "dot", "title": "CVE-2023-29460", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29461", "label": "CVE-2023-29461", "shape": "dot", "title": "CVE-2023-29461", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31126", "label": "CVE-2023-31126", "shape": "dot", "title": "CVE-2023-31126", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28125", "label": "CVE-2023-28125", "shape": "dot", "title": "CVE-2023-28125", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29340", "label": "CVE-2023-29340", "shape": "dot", "title": "CVE-2023-29340", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29341", "label": "CVE-2023-29341", "shape": "dot", "title": "CVE-2023-29341", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25832", "label": "CVE-2023-25832", "shape": "dot", "title": "CVE-2023-25832", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25831", "label": "CVE-2023-25831", "shape": "dot", "title": "CVE-2023-25831", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29336", "label": "CVE-2023-29336", "shape": "dot", "title": "CVE-2023-29336", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23542", "label": "CVE-2023-23542", "shape": "dot", "title": "CVE-2023-23542", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26126", "label": "CVE-2023-26126", "shape": "dot", "title": "CVE-2023-26126", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47590", "label": "CVE-2022-47590", "shape": "dot", "title": "CVE-2022-47590", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47600", "label": "CVE-2022-47600", "shape": "dot", "title": "CVE-2022-47600", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-26356", "label": "CVE-2021-26356", "shape": "dot", "title": "CVE-2021-26356", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47606", "label": "CVE-2022-47606", "shape": "dot", "title": "CVE-2022-47606", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47587", "label": "CVE-2022-47587", "shape": "dot", "title": "CVE-2022-47587", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47441", "label": "CVE-2022-47441", "shape": "dot", "title": "CVE-2022-47441", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45846", "label": "CVE-2022-45846", "shape": "dot", "title": "CVE-2022-45846", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23541", "label": "CVE-2023-23541", "shape": "dot", "title": "CVE-2023-23541", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31144", "label": "CVE-2023-31144", "shape": "dot", "title": "CVE-2023-31144", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23540", "label": "CVE-2023-23540", "shape": "dot", "title": "CVE-2023-23540", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46720", "label": "CVE-2022-46720", "shape": "dot", "title": "CVE-2022-46720", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28317", "label": "CVE-2023-28317", "shape": "dot", "title": "CVE-2023-28317", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1031", "label": "CVE-2023-1031", "shape": "dot", "title": "CVE-2023-1031", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28318", "label": "CVE-2023-28318", "shape": "dot", "title": "CVE-2023-28318", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2195", "label": "CVE-2023-2195", "shape": "dot", "title": "CVE-2023-2195", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "jenkinsci-cert@googlegroups.com", "label": "jenkinsci-cert@googlegroups.com", "shape": "dot", "title": "jenkinsci-cert@googlegroups.com", "value": 31}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32980", "label": "CVE-2023-32980", "shape": "dot", "title": "CVE-2023-32980", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30501", "label": "CVE-2023-30501", "shape": "dot", "title": "CVE-2023-30501", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30502", "label": "CVE-2023-30502", "shape": "dot", "title": "CVE-2023-30502", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32979", "label": "CVE-2023-32979", "shape": "dot", "title": "CVE-2023-32979", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30503", "label": "CVE-2023-30503", "shape": "dot", "title": "CVE-2023-30503", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30504", "label": "CVE-2023-30504", "shape": "dot", "title": "CVE-2023-30504", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30505", "label": "CVE-2023-30505", "shape": "dot", "title": "CVE-2023-30505", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30506", "label": "CVE-2023-30506", "shape": "dot", "title": "CVE-2023-30506", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32981", "label": "CVE-2023-32981", "shape": "dot", "title": "CVE-2023-32981", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32978", "label": "CVE-2023-32978", "shape": "dot", "title": "CVE-2023-32978", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-33000", "label": "CVE-2023-33000", "shape": "dot", "title": "CVE-2023-33000", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-33001", "label": "CVE-2023-33001", "shape": "dot", "title": "CVE-2023-33001", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30507", "label": "CVE-2023-30507", "shape": "dot", "title": "CVE-2023-30507", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-33002", "label": "CVE-2023-33002", "shape": "dot", "title": "CVE-2023-33002", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-33003", "label": "CVE-2023-33003", "shape": "dot", "title": "CVE-2023-33003", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32999", "label": "CVE-2023-32999", "shape": "dot", "title": "CVE-2023-32999", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28076", "label": "CVE-2023-28076", "shape": "dot", "title": "CVE-2023-28076", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29439", "label": "CVE-2023-29439", "shape": "dot", "title": "CVE-2023-29439", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-33007", "label": "CVE-2023-33007", "shape": "dot", "title": "CVE-2023-33007", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-33004", "label": "CVE-2023-33004", "shape": "dot", "title": "CVE-2023-33004", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-33006", "label": "CVE-2023-33006", "shape": "dot", "title": "CVE-2023-33006", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-33005", "label": "CVE-2023-33005", "shape": "dot", "title": "CVE-2023-33005", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32977", "label": "CVE-2023-32977", "shape": "dot", "title": "CVE-2023-32977", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30508", "label": "CVE-2023-30508", "shape": "dot", "title": "CVE-2023-30508", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2196", "label": "CVE-2023-2196", "shape": "dot", "title": "CVE-2023-2196", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30510", "label": "CVE-2023-30510", "shape": "dot", "title": "CVE-2023-30510", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32996", "label": "CVE-2023-32996", "shape": "dot", "title": "CVE-2023-32996", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32986", "label": "CVE-2023-32986", "shape": "dot", "title": "CVE-2023-32986", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32995", "label": "CVE-2023-32995", "shape": "dot", "title": "CVE-2023-32995", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32987", "label": "CVE-2023-32987", "shape": "dot", "title": "CVE-2023-32987", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32994", "label": "CVE-2023-32994", "shape": "dot", "title": "CVE-2023-32994", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32988", "label": "CVE-2023-32988", "shape": "dot", "title": "CVE-2023-32988", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32989", "label": "CVE-2023-32989", "shape": "dot", "title": "CVE-2023-32989", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32990", "label": "CVE-2023-32990", "shape": "dot", "title": "CVE-2023-32990", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32991", "label": "CVE-2023-32991", "shape": "dot", "title": "CVE-2023-32991", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32993", "label": "CVE-2023-32993", "shape": "dot", "title": "CVE-2023-32993", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2633", "label": "CVE-2023-2633", "shape": "dot", "title": "CVE-2023-2633", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2631", "label": "CVE-2023-2631", "shape": "dot", "title": "CVE-2023-2631", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30509", "label": "CVE-2023-30509", "shape": "dot", "title": "CVE-2023-30509", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32992", "label": "CVE-2023-32992", "shape": "dot", "title": "CVE-2023-32992", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2632", "label": "CVE-2023-2632", "shape": "dot", "title": "CVE-2023-2632", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2738", "label": "CVE-2023-2738", "shape": "dot", "title": "CVE-2023-2738", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2739", "label": "CVE-2023-2739", "shape": "dot", "title": "CVE-2023-2739", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2740", "label": "CVE-2023-2740", "shape": "dot", "title": "CVE-2023-2740", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32983", "label": "CVE-2023-32983", "shape": "dot", "title": "CVE-2023-32983", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32997", "label": "CVE-2023-32997", "shape": "dot", "title": "CVE-2023-32997", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32984", "label": "CVE-2023-32984", "shape": "dot", "title": "CVE-2023-32984", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32982", "label": "CVE-2023-32982", "shape": "dot", "title": "CVE-2023-32982", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32985", "label": "CVE-2023-32985", "shape": "dot", "title": "CVE-2023-32985", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32998", "label": "CVE-2023-32998", "shape": "dot", "title": "CVE-2023-32998", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0536", "label": "CVE-2023-0536", "shape": "dot", "title": "CVE-2023-0536", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28128", "label": "CVE-2023-28128", "shape": "dot", "title": "CVE-2023-28128", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "vultures@jpcert.or.jp", "label": "vultures@jpcert.or.jp", "shape": "dot", "title": "vultures@jpcert.or.jp", "value": 17}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27888", "label": "CVE-2023-27888", "shape": "dot", "title": "CVE-2023-27888", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27527", "label": "CVE-2023-27527", "shape": "dot", "title": "CVE-2023-27527", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22361", "label": "CVE-2023-22361", "shape": "dot", "title": "CVE-2023-22361", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28932", "label": "CVE-2023-28932", "shape": "dot", "title": "CVE-2023-28932", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22696", "label": "CVE-2023-22696", "shape": "dot", "title": "CVE-2023-22696", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23794", "label": "CVE-2023-23794", "shape": "dot", "title": "CVE-2023-23794", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23873", "label": "CVE-2023-23873", "shape": "dot", "title": "CVE-2023-23873", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24406", "label": "CVE-2023-24406", "shape": "dot", "title": "CVE-2023-24406", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27419", "label": "CVE-2023-27419", "shape": "dot", "title": "CVE-2023-27419", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27455", "label": "CVE-2023-27455", "shape": "dot", "title": "CVE-2023-27455", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29101", "label": "CVE-2023-29101", "shape": "dot", "title": "CVE-2023-29101", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-27856", "label": "CVE-2022-27856", "shape": "dot", "title": "CVE-2022-27856", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47137", "label": "CVE-2022-47137", "shape": "dot", "title": "CVE-2022-47137", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47423", "label": "CVE-2022-47423", "shape": "dot", "title": "CVE-2022-47423", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47436", "label": "CVE-2022-47436", "shape": "dot", "title": "CVE-2022-47436", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27510", "label": "CVE-2023-27510", "shape": "dot", "title": "CVE-2023-27510", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "xpdf@xpdfreader.com", "label": "xpdf@xpdfreader.com", "shape": "dot", "title": "xpdf@xpdfreader.com", "value": 3}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2664", "label": "CVE-2023-2664", "shape": "dot", "title": "CVE-2023-2664", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2663", "label": "CVE-2023-2663", "shape": "dot", "title": "CVE-2023-2663", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@selinc.com", "label": "security@selinc.com", "shape": "dot", "title": "security@selinc.com", "value": 20}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31160", "label": "CVE-2023-31160", "shape": "dot", "title": "CVE-2023-31160", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31208", "label": "CVE-2023-31208", "shape": "dot", "title": "CVE-2023-31208", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@xen.org", "label": "security@xen.org", "shape": "dot", "title": "security@xen.org", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-42336", "label": "CVE-2022-42336", "shape": "dot", "title": "CVE-2022-42336", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31159", "label": "CVE-2023-31159", "shape": "dot", "title": "CVE-2023-31159", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2706", "label": "CVE-2023-2706", "shape": "dot", "title": "CVE-2023-2706", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2608", "label": "CVE-2023-2608", "shape": "dot", "title": "CVE-2023-2608", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2752", "label": "CVE-2023-2752", "shape": "dot", "title": "CVE-2023-2752", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2753", "label": "CVE-2023-2753", "shape": "dot", "title": "CVE-2023-2753", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2756", "label": "CVE-2023-2756", "shape": "dot", "title": "CVE-2023-2756", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "cybersecurity@ch.abb.com", "label": "cybersecurity@ch.abb.com", "shape": "dot", "title": "cybersecurity@ch.abb.com", "value": 2}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0863", "label": "CVE-2023-0863", "shape": "dot", "title": "CVE-2023-0863", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2528", "label": "CVE-2023-2528", "shape": "dot", "title": "CVE-2023-2528", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0864", "label": "CVE-2023-0864", "shape": "dot", "title": "CVE-2023-0864", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@adobe.com", "label": "psirt@adobe.com", "shape": "dot", "title": "psirt@adobe.com", "value": 14}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29283", "label": "CVE-2023-29283", "shape": "dot", "title": "CVE-2023-29283", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29282", "label": "CVE-2023-29282", "shape": "dot", "title": "CVE-2023-29282", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29281", "label": "CVE-2023-29281", "shape": "dot", "title": "CVE-2023-29281", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27385", "label": "CVE-2023-27385", "shape": "dot", "title": "CVE-2023-27385", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29278", "label": "CVE-2023-29278", "shape": "dot", "title": "CVE-2023-29278", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29276", "label": "CVE-2023-29276", "shape": "dot", "title": "CVE-2023-29276", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29277", "label": "CVE-2023-29277", "shape": "dot", "title": "CVE-2023-29277", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29279", "label": "CVE-2023-29279", "shape": "dot", "title": "CVE-2023-29279", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29280", "label": "CVE-2023-29280", "shape": "dot", "title": "CVE-2023-29280", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29275", "label": "CVE-2023-29275", "shape": "dot", "title": "CVE-2023-29275", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29274", "label": "CVE-2023-29274", "shape": "dot", "title": "CVE-2023-29274", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29273", "label": "CVE-2023-29273", "shape": "dot", "title": "CVE-2023-29273", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2662", "label": "CVE-2023-2662", "shape": "dot", "title": "CVE-2023-2662", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27889", "label": "CVE-2023-27889", "shape": "dot", "title": "CVE-2023-27889", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27918", "label": "CVE-2023-27918", "shape": "dot", "title": "CVE-2023-27918", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2661", "label": "CVE-2023-2661", "shape": "dot", "title": "CVE-2023-2661", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2659", "label": "CVE-2023-2659", "shape": "dot", "title": "CVE-2023-2659", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2660", "label": "CVE-2023-2660", "shape": "dot", "title": "CVE-2023-2660", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2658", "label": "CVE-2023-2658", "shape": "dot", "title": "CVE-2023-2658", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22720", "label": "CVE-2023-22720", "shape": "dot", "title": "CVE-2023-22720", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2657", "label": "CVE-2023-2657", "shape": "dot", "title": "CVE-2023-2657", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29284", "label": "CVE-2023-29284", "shape": "dot", "title": "CVE-2023-29284", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29285", "label": "CVE-2023-29285", "shape": "dot", "title": "CVE-2023-29285", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29286", "label": "CVE-2023-29286", "shape": "dot", "title": "CVE-2023-29286", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2656", "label": "CVE-2023-2656", "shape": "dot", "title": "CVE-2023-2656", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2630", "label": "CVE-2023-2630", "shape": "dot", "title": "CVE-2023-2630", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32066", "label": "CVE-2023-32066", "shape": "dot", "title": "CVE-2023-32066", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4008", "label": "CVE-2022-4008", "shape": "dot", "title": "CVE-2022-4008", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28316", "label": "CVE-2023-28316", "shape": "dot", "title": "CVE-2023-28316", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30837", "label": "CVE-2023-30837", "shape": "dot", "title": "CVE-2023-30837", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30860", "label": "CVE-2023-30860", "shape": "dot", "title": "CVE-2023-30860", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22441", "label": "CVE-2023-22441", "shape": "dot", "title": "CVE-2023-22441", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2617", "label": "CVE-2023-2617", "shape": "dot", "title": "CVE-2023-2617", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2618", "label": "CVE-2023-2618", "shape": "dot", "title": "CVE-2023-2618", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23578", "label": "CVE-2023-23578", "shape": "dot", "title": "CVE-2023-23578", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23901", "label": "CVE-2023-23901", "shape": "dot", "title": "CVE-2023-23901", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24586", "label": "CVE-2023-24586", "shape": "dot", "title": "CVE-2023-24586", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25070", "label": "CVE-2023-25070", "shape": "dot", "title": "CVE-2023-25070", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25072", "label": "CVE-2023-25072", "shape": "dot", "title": "CVE-2023-25072", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27919", "label": "CVE-2023-27919", "shape": "dot", "title": "CVE-2023-27919", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25184", "label": "CVE-2023-25184", "shape": "dot", "title": "CVE-2023-25184", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31155", "label": "CVE-2023-31155", "shape": "dot", "title": "CVE-2023-31155", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30777", "label": "CVE-2023-30777", "shape": "dot", "title": "CVE-2023-30777", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31154", "label": "CVE-2023-31154", "shape": "dot", "title": "CVE-2023-31154", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23906", "label": "CVE-2023-23906", "shape": "dot", "title": "CVE-2023-23906", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31153", "label": "CVE-2023-31153", "shape": "dot", "title": "CVE-2023-31153", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@snowsoftware.com", "label": "security@snowsoftware.com", "shape": "dot", "title": "security@snowsoftware.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2679", "label": "CVE-2023-2679", "shape": "dot", "title": "CVE-2023-2679", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30438", "label": "CVE-2023-30438", "shape": "dot", "title": "CVE-2023-30438", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22348", "label": "CVE-2023-22348", "shape": "dot", "title": "CVE-2023-22348", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1732", "label": "CVE-2023-1732", "shape": "dot", "title": "CVE-2023-1732", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2479", "label": "CVE-2023-2479", "shape": "dot", "title": "CVE-2023-2479", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31166", "label": "CVE-2023-31166", "shape": "dot", "title": "CVE-2023-31166", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31165", "label": "CVE-2023-31165", "shape": "dot", "title": "CVE-2023-31165", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31164", "label": "CVE-2023-31164", "shape": "dot", "title": "CVE-2023-31164", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2745", "label": "CVE-2023-2745", "shape": "dot", "title": "CVE-2023-2745", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2629", "label": "CVE-2023-2629", "shape": "dot", "title": "CVE-2023-2629", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31163", "label": "CVE-2023-31163", "shape": "dot", "title": "CVE-2023-31163", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31158", "label": "CVE-2023-31158", "shape": "dot", "title": "CVE-2023-31158", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31157", "label": "CVE-2023-31157", "shape": "dot", "title": "CVE-2023-31157", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31156", "label": "CVE-2023-31156", "shape": "dot", "title": "CVE-2023-31156", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31151", "label": "CVE-2023-31151", "shape": "dot", "title": "CVE-2023-31151", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31148", "label": "CVE-2023-31148", "shape": "dot", "title": "CVE-2023-31148", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20046", "label": "CVE-2023-20046", "shape": "dot", "title": "CVE-2023-20046", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31149", "label": "CVE-2023-31149", "shape": "dot", "title": "CVE-2023-31149", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20098", "label": "CVE-2023-20098", "shape": "dot", "title": "CVE-2023-20098", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-29462", "label": "CVE-2023-29462", "shape": "dot", "title": "CVE-2023-29462", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30899", "label": "CVE-2023-30899", "shape": "dot", "title": "CVE-2023-30899", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30986", "label": "CVE-2023-30986", "shape": "dot", "title": "CVE-2023-30986", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30898", "label": "CVE-2023-30898", "shape": "dot", "title": "CVE-2023-30898", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30985", "label": "CVE-2023-30985", "shape": "dot", "title": "CVE-2023-30985", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31162", "label": "CVE-2023-31162", "shape": "dot", "title": "CVE-2023-31162", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31161", "label": "CVE-2023-31161", "shape": "dot", "title": "CVE-2023-31161", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31152", "label": "CVE-2023-31152", "shape": "dot", "title": "CVE-2023-31152", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31150", "label": "CVE-2023-31150", "shape": "dot", "title": "CVE-2023-31150", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "psirt@paloaltonetworks.com", "label": "psirt@paloaltonetworks.com", "shape": "dot", "title": "psirt@paloaltonetworks.com", "value": 2}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0008", "label": "CVE-2023-0008", "shape": "dot", "title": "CVE-2023-0008", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2310", "label": "CVE-2023-2310", "shape": "dot", "title": "CVE-2023-2310", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0007", "label": "CVE-2023-0007", "shape": "dot", "title": "CVE-2023-0007", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32070", "label": "CVE-2023-32070", "shape": "dot", "title": "CVE-2023-32070", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2642", "label": "CVE-2023-2642", "shape": "dot", "title": "CVE-2023-2642", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2641", "label": "CVE-2023-2641", "shape": "dot", "title": "CVE-2023-2641", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2653", "label": "CVE-2023-2653", "shape": "dot", "title": "CVE-2023-2653", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2652", "label": "CVE-2023-2652", "shape": "dot", "title": "CVE-2023-2652", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2648", "label": "CVE-2023-2648", "shape": "dot", "title": "CVE-2023-2648", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2643", "label": "CVE-2023-2643", "shape": "dot", "title": "CVE-2023-2643", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2647", "label": "CVE-2023-2647", "shape": "dot", "title": "CVE-2023-2647", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "security@asustor.com", "label": "security@asustor.com", "shape": "dot", "title": "security@asustor.com", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2509", "label": "CVE-2023-2509", "shape": "dot", "title": "CVE-2023-2509", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2722", "label": "CVE-2023-2722", "shape": "dot", "title": "CVE-2023-2722", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2725", "label": "CVE-2023-2725", "shape": "dot", "title": "CVE-2023-2725", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2724", "label": "CVE-2023-2724", "shape": "dot", "title": "CVE-2023-2724", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2721", "label": "CVE-2023-2721", "shape": "dot", "title": "CVE-2023-2721", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2723", "label": "CVE-2023-2723", "shape": "dot", "title": "CVE-2023-2723", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2726", "label": "CVE-2023-2726", "shape": "dot", "title": "CVE-2023-2726", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2156", "label": "CVE-2023-2156", "shape": "dot", "title": "CVE-2023-2156", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45450", "label": "CVE-2022-45450", "shape": "dot", "title": "CVE-2022-45450", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45452", "label": "CVE-2022-45452", "shape": "dot", "title": "CVE-2022-45452", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4418", "label": "CVE-2022-4418", "shape": "dot", "title": "CVE-2022-4418", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-26044", "label": "CVE-2023-26044", "shape": "dot", "title": "CVE-2023-26044", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45457", "label": "CVE-2022-45457", "shape": "dot", "title": "CVE-2022-45457", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20162", "label": "CVE-2023-20162", "shape": "dot", "title": "CVE-2023-20162", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20163", "label": "CVE-2023-20163", "shape": "dot", "title": "CVE-2023-20163", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23999", "label": "CVE-2023-23999", "shape": "dot", "title": "CVE-2023-23999", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20164", "label": "CVE-2023-20164", "shape": "dot", "title": "CVE-2023-20164", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20166", "label": "CVE-2023-20166", "shape": "dot", "title": "CVE-2023-20166", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20167", "label": "CVE-2023-20167", "shape": "dot", "title": "CVE-2023-20167", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20171", "label": "CVE-2023-20171", "shape": "dot", "title": "CVE-2023-20171", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20161", "label": "CVE-2023-20161", "shape": "dot", "title": "CVE-2023-20161", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23667", "label": "CVE-2023-23667", "shape": "dot", "title": "CVE-2023-23667", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20173", "label": "CVE-2023-20173", "shape": "dot", "title": "CVE-2023-20173", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20174", "label": "CVE-2023-20174", "shape": "dot", "title": "CVE-2023-20174", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20182", "label": "CVE-2023-20182", "shape": "dot", "title": "CVE-2023-20182", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20183", "label": "CVE-2023-20183", "shape": "dot", "title": "CVE-2023-20183", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20189", "label": "CVE-2023-20189", "shape": "dot", "title": "CVE-2023-20189", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2203", "label": "CVE-2023-2203", "shape": "dot", "title": "CVE-2023-2203", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2295", "label": "CVE-2023-2295", "shape": "dot", "title": "CVE-2023-2295", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20172", "label": "CVE-2023-20172", "shape": "dot", "title": "CVE-2023-20172", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45453", "label": "CVE-2022-45453", "shape": "dot", "title": "CVE-2022-45453", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-47157", "label": "CVE-2022-47157", "shape": "dot", "title": "CVE-2022-47157", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2491", "label": "CVE-2023-2491", "shape": "dot", "title": "CVE-2023-2491", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45458", "label": "CVE-2022-45458", "shape": "dot", "title": "CVE-2022-45458", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45459", "label": "CVE-2022-45459", "shape": "dot", "title": "CVE-2022-45459", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1859", "label": "CVE-2023-1859", "shape": "dot", "title": "CVE-2023-1859", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1972", "label": "CVE-2023-1972", "shape": "dot", "title": "CVE-2023-1972", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2319", "label": "CVE-2023-2319", "shape": "dot", "title": "CVE-2023-2319", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20003", "label": "CVE-2023-20003", "shape": "dot", "title": "CVE-2023-20003", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20024", "label": "CVE-2023-20024", "shape": "dot", "title": "CVE-2023-20024", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20160", "label": "CVE-2023-20160", "shape": "dot", "title": "CVE-2023-20160", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20077", "label": "CVE-2023-20077", "shape": "dot", "title": "CVE-2023-20077", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25698", "label": "CVE-2023-25698", "shape": "dot", "title": "CVE-2023-25698", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20106", "label": "CVE-2023-20106", "shape": "dot", "title": "CVE-2023-20106", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20110", "label": "CVE-2023-20110", "shape": "dot", "title": "CVE-2023-20110", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20156", "label": "CVE-2023-20156", "shape": "dot", "title": "CVE-2023-20156", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20157", "label": "CVE-2023-20157", "shape": "dot", "title": "CVE-2023-20157", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20158", "label": "CVE-2023-20158", "shape": "dot", "title": "CVE-2023-20158", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20159", "label": "CVE-2023-20159", "shape": "dot", "title": "CVE-2023-20159", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20087", "label": "CVE-2023-20087", "shape": "dot", "title": "CVE-2023-20087", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-20184", "label": "CVE-2023-20184", "shape": "dot", "title": "CVE-2023-20184", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-4870", "label": "CVE-2022-4870", "shape": "dot", "title": "CVE-2022-4870", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2757", "label": "CVE-2023-2757", "shape": "dot", "title": "CVE-2023-2757", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2782", "label": "CVE-2023-2782", "shape": "dot", "title": "CVE-2023-2782", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2780", "label": "CVE-2023-2780", "shape": "dot", "title": "CVE-2023-2780", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2731", "label": "CVE-2023-2731", "shape": "dot", "title": "CVE-2023-2731", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2776", "label": "CVE-2023-2776", "shape": "dot", "title": "CVE-2023-2776", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2775", "label": "CVE-2023-2775", "shape": "dot", "title": "CVE-2023-2775", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27423", "label": "CVE-2023-27423", "shape": "dot", "title": "CVE-2023-27423", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27430", "label": "CVE-2023-27430", "shape": "dot", "title": "CVE-2023-27430", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2774", "label": "CVE-2023-2774", "shape": "dot", "title": "CVE-2023-2774", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2773", "label": "CVE-2023-2773", "shape": "dot", "title": "CVE-2023-2773", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2772", "label": "CVE-2023-2772", "shape": "dot", "title": "CVE-2023-2772", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2771", "label": "CVE-2023-2771", "shape": "dot", "title": "CVE-2023-2771", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2770", "label": "CVE-2023-2770", "shape": "dot", "title": "CVE-2023-2770", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2769", "label": "CVE-2023-2769", "shape": "dot", "title": "CVE-2023-2769", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2768", "label": "CVE-2023-2768", "shape": "dot", "title": "CVE-2023-2768", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2766", "label": "CVE-2023-2766", "shape": "dot", "title": "CVE-2023-2766", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32515", "label": "CVE-2023-32515", "shape": "dot", "title": "CVE-2023-32515", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2765", "label": "CVE-2023-2765", "shape": "dot", "title": "CVE-2023-2765", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31233", "label": "CVE-2023-31233", "shape": "dot", "title": "CVE-2023-31233", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-31135", "label": "CVE-2023-31135", "shape": "dot", "title": "CVE-2023-31135", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30868", "label": "CVE-2023-30868", "shape": "dot", "title": "CVE-2023-30868", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30780", "label": "CVE-2023-30780", "shape": "dot", "title": "CVE-2023-30780", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30487", "label": "CVE-2023-30487", "shape": "dot", "title": "CVE-2023-30487", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28369", "label": "CVE-2023-28369", "shape": "dot", "title": "CVE-2023-28369", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-21804", "label": "CVE-2022-21804", "shape": "dot", "title": "CVE-2022-21804", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-21239", "label": "CVE-2022-21239", "shape": "dot", "title": "CVE-2022-21239", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-21162", "label": "CVE-2022-21162", "shape": "dot", "title": "CVE-2022-21162", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32243", "label": "CVE-2023-32243", "shape": "dot", "title": "CVE-2023-32243", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2021-26397", "label": "CVE-2021-26397", "shape": "dot", "title": "CVE-2021-26397", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-30338", "label": "CVE-2022-30338", "shape": "dot", "title": "CVE-2022-30338", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-29919", "label": "CVE-2022-29919", "shape": "dot", "title": "CVE-2022-29919", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-29508", "label": "CVE-2022-29508", "shape": "dot", "title": "CVE-2022-29508", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-25976", "label": "CVE-2022-25976", "shape": "dot", "title": "CVE-2022-25976", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-40685", "label": "CVE-2022-40685", "shape": "dot", "title": "CVE-2022-40685", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-40210", "label": "CVE-2022-40210", "shape": "dot", "title": "CVE-2022-40210", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41808", "label": "CVE-2022-41808", "shape": "dot", "title": "CVE-2022-41808", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41771", "label": "CVE-2022-41771", "shape": "dot", "title": "CVE-2022-41771", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41699", "label": "CVE-2022-41699", "shape": "dot", "title": "CVE-2022-41699", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32322", "label": "CVE-2023-32322", "shape": "dot", "title": "CVE-2023-32322", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2789", "label": "CVE-2023-2789", "shape": "dot", "title": "CVE-2023-2789", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2790", "label": "CVE-2023-2790", "shape": "dot", "title": "CVE-2023-2790", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2799", "label": "CVE-2023-2799", "shape": "dot", "title": "CVE-2023-2799", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2800", "label": "CVE-2023-2800", "shape": "dot", "title": "CVE-2023-2800", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-29840", "label": "CVE-2022-29840", "shape": "dot", "title": "CVE-2022-29840", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2490", "label": "CVE-2023-2490", "shape": "dot", "title": "CVE-2023-2490", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22661", "label": "CVE-2023-22661", "shape": "dot", "title": "CVE-2023-22661", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22443", "label": "CVE-2023-22443", "shape": "dot", "title": "CVE-2023-22443", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22442", "label": "CVE-2023-22442", "shape": "dot", "title": "CVE-2023-22442", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22379", "label": "CVE-2023-22379", "shape": "dot", "title": "CVE-2023-22379", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-22297", "label": "CVE-2023-22297", "shape": "dot", "title": "CVE-2023-22297", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-40974", "label": "CVE-2022-40974", "shape": "dot", "title": "CVE-2022-40974", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-38103", "label": "CVE-2022-38103", "shape": "dot", "title": "CVE-2022-38103", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-40972", "label": "CVE-2022-40972", "shape": "dot", "title": "CVE-2022-40972", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41621", "label": "CVE-2022-41621", "shape": "dot", "title": "CVE-2022-41621", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41979", "label": "CVE-2022-41979", "shape": "dot", "title": "CVE-2022-41979", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-42878", "label": "CVE-2022-42878", "shape": "dot", "title": "CVE-2022-42878", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-43465", "label": "CVE-2022-43465", "shape": "dot", "title": "CVE-2022-43465", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-43475", "label": "CVE-2022-43475", "shape": "dot", "title": "CVE-2022-43475", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-44610", "label": "CVE-2022-44610", "shape": "dot", "title": "CVE-2022-44610", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "product-security@silabs.com", "label": "product-security@silabs.com", "shape": "dot", "title": "product-security@silabs.com", "value": 8}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32098", "label": "CVE-2023-32098", "shape": "dot", "title": "CVE-2023-32098", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32096", "label": "CVE-2023-32096", "shape": "dot", "title": "CVE-2023-32096", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32097", "label": "CVE-2023-32097", "shape": "dot", "title": "CVE-2023-32097", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1132", "label": "CVE-2023-1132", "shape": "dot", "title": "CVE-2023-1132", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32100", "label": "CVE-2023-32100", "shape": "dot", "title": "CVE-2023-32100", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-36328", "label": "CVE-2022-36328", "shape": "dot", "title": "CVE-2022-36328", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-0965", "label": "CVE-2023-0965", "shape": "dot", "title": "CVE-2023-0965", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-36326", "label": "CVE-2022-36326", "shape": "dot", "title": "CVE-2022-36326", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2481", "label": "CVE-2023-2481", "shape": "dot", "title": "CVE-2023-2481", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32099", "label": "CVE-2023-32099", "shape": "dot", "title": "CVE-2023-32099", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-36327", "label": "CVE-2022-36327", "shape": "dot", "title": "CVE-2022-36327", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25460", "label": "CVE-2023-25460", "shape": "dot", "title": "CVE-2023-25460", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28414", "label": "CVE-2023-28414", "shape": "dot", "title": "CVE-2023-28414", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-33963", "label": "CVE-2022-33963", "shape": "dot", "title": "CVE-2022-33963", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-33894", "label": "CVE-2022-33894", "shape": "dot", "title": "CVE-2022-33894", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23535", "label": "CVE-2023-23535", "shape": "dot", "title": "CVE-2023-23535", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "productsecurity@jci.com", "label": "productsecurity@jci.com", "shape": "dot", "title": "productsecurity@jci.com", "value": 2}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2024", "label": "CVE-2023-2024", "shape": "dot", "title": "CVE-2023-2024", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2025", "label": "CVE-2023-2025", "shape": "dot", "title": "CVE-2023-2025", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28181", "label": "CVE-2023-28181", "shape": "dot", "title": "CVE-2023-28181", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-27945", "label": "CVE-2023-27945", "shape": "dot", "title": "CVE-2023-27945", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23532", "label": "CVE-2023-23532", "shape": "dot", "title": "CVE-2023-23532", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-29842", "label": "CVE-2022-29842", "shape": "dot", "title": "CVE-2022-29842", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32080", "label": "CVE-2023-32080", "shape": "dot", "title": "CVE-2023-32080", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-36329", "label": "CVE-2022-36329", "shape": "dot", "title": "CVE-2022-36329", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "cve-assign@fb.com", "label": "cve-assign@fb.com", "shape": "dot", "title": "cve-assign@fb.com", "value": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-36937", "label": "CVE-2022-36937", "shape": "dot", "title": "CVE-2022-36937", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32076", "label": "CVE-2023-32076", "shape": "dot", "title": "CVE-2023-32076", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "talos-cna@cisco.com", "label": "talos-cna@cisco.com", "shape": "dot", "title": "talos-cna@cisco.com", "value": 3}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41985", "label": "CVE-2022-41985", "shape": "dot", "title": "CVE-2022-41985", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46378", "label": "CVE-2022-46378", "shape": "dot", "title": "CVE-2022-46378", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-46377", "label": "CVE-2022-46377", "shape": "dot", "title": "CVE-2022-46377", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23556", "label": "CVE-2023-23556", "shape": "dot", "title": "CVE-2023-23556", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-30470", "label": "CVE-2023-30470", "shape": "dot", "title": "CVE-2023-30470", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25933", "label": "CVE-2023-25933", "shape": "dot", "title": "CVE-2023-25933", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1195", "label": "CVE-2023-1195", "shape": "dot", "title": "CVE-2023-1195", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23557", "label": "CVE-2023-23557", "shape": "dot", "title": "CVE-2023-23557", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23759", "label": "CVE-2023-23759", "shape": "dot", "title": "CVE-2023-23759", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24833", "label": "CVE-2023-24833", "shape": "dot", "title": "CVE-2023-24833", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28081", "label": "CVE-2023-28081", "shape": "dot", "title": "CVE-2023-28081", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28753", "label": "CVE-2023-28753", "shape": "dot", "title": "CVE-2023-28753", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24832", "label": "CVE-2023-24832", "shape": "dot", "title": "CVE-2023-24832", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-32766", "label": "CVE-2022-32766", "shape": "dot", "title": "CVE-2022-32766", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-38087", "label": "CVE-2022-38087", "shape": "dot", "title": "CVE-2022-38087", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-32582", "label": "CVE-2022-32582", "shape": "dot", "title": "CVE-2022-32582", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-37409", "label": "CVE-2022-37409", "shape": "dot", "title": "CVE-2022-37409", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23909", "label": "CVE-2023-23909", "shape": "dot", "title": "CVE-2023-23909", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-28411", "label": "CVE-2023-28411", "shape": "dot", "title": "CVE-2023-28411", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23910", "label": "CVE-2023-23910", "shape": "dot", "title": "CVE-2023-23910", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23569", "label": "CVE-2023-23569", "shape": "dot", "title": "CVE-2023-23569", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-44619", "label": "CVE-2022-44619", "shape": "dot", "title": "CVE-2022-44619", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-23580", "label": "CVE-2023-23580", "shape": "dot", "title": "CVE-2023-23580", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25175", "label": "CVE-2023-25175", "shape": "dot", "title": "CVE-2023-25175", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25545", "label": "CVE-2023-25545", "shape": "dot", "title": "CVE-2023-25545", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24475", "label": "CVE-2023-24475", "shape": "dot", "title": "CVE-2023-24475", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-45128", "label": "CVE-2022-45128", "shape": "dot", "title": "CVE-2022-45128", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-42465", "label": "CVE-2022-42465", "shape": "dot", "title": "CVE-2022-42465", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41784", "label": "CVE-2022-41784", "shape": "dot", "title": "CVE-2022-41784", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-41658", "label": "CVE-2022-41658", "shape": "dot", "title": "CVE-2022-41658", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-32680", "label": "CVE-2023-32680", "shape": "dot", "title": "CVE-2023-32680", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2022-35798", "label": "CVE-2022-35798", "shape": "dot", "title": "CVE-2022-35798", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25568", "label": "CVE-2023-25568", "shape": "dot", "title": "CVE-2023-25568", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-25776", "label": "CVE-2023-25776", "shape": "dot", "title": "CVE-2023-25776", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2672", "label": "CVE-2023-2672", "shape": "dot", "title": "CVE-2023-2672", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2671", "label": "CVE-2023-2671", "shape": "dot", "title": "CVE-2023-2671", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2667", "label": "CVE-2023-2667", "shape": "dot", "title": "CVE-2023-2667", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2668", "label": "CVE-2023-2668", "shape": "dot", "title": "CVE-2023-2668", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2670", "label": "CVE-2023-2670", "shape": "dot", "title": "CVE-2023-2670", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2669", "label": "CVE-2023-2669", "shape": "dot", "title": "CVE-2023-2669", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-24805", "label": "CVE-2023-24805", "shape": "dot", "title": "CVE-2023-24805", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1729", "label": "CVE-2023-1729", "shape": "dot", "title": "CVE-2023-1729", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-2704", "label": "CVE-2023-2704", "shape": "dot", "title": "CVE-2023-2704", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "Mitsubishielectric.Psirt@yd.MitsubishiElectric.co.jp", "label": "Mitsubishielectric.Psirt@yd.MitsubishiElectric.co.jp", "shape": "dot", "title": "Mitsubishielectric.Psirt@yd.MitsubishiElectric.co.jp", "value": 1}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "CVE-2023-1618", "label": "CVE-2023-1618", "shape": "dot", "title": "CVE-2023-1618", "value": 1}]);
edges = new vis.DataSet([{"from": "audit@patchstack.com", "to": "CVE-2023-25798", "value": "CVE-2023-25798"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25796", "value": "CVE-2023-25796"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23820", "value": "CVE-2023-23820"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22713", "value": "CVE-2023-22713"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25789", "value": "CVE-2023-25789"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23708", "value": "CVE-2023-23708"}, {"from": "audit@patchstack.com", "to": "CVE-2022-46852", "value": "CVE-2022-46852"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22683", "value": "CVE-2023-22683"}, {"from": "security@zyxel.com.tw", "to": "CVE-2023-22919", "value": "CVE-2023-22919"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25979", "value": "CVE-2023-25979"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23874", "value": "CVE-2023-23874"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23876", "value": "CVE-2023-23876"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23785", "value": "CVE-2023-23785"}, {"from": "security@zyxel.com.tw", "to": "CVE-2023-22922", "value": "CVE-2023-22922"}, {"from": "security@zyxel.com.tw", "to": "CVE-2023-22921", "value": "CVE-2023-22921"}, {"from": "security@google.com", "to": "CVE-2023-2235", "value": "CVE-2023-2235"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25783", "value": "CVE-2023-25783"}, {"from": "security@zyxel.com.tw", "to": "CVE-2023-22924", "value": "CVE-2023-22924"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25786", "value": "CVE-2023-25786"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25784", "value": "CVE-2023-25784"}, {"from": "security@zyxel.com.tw", "to": "CVE-2023-22923", "value": "CVE-2023-22923"}, {"from": "security@hashicorp.com", "to": "CVE-2023-2197", "value": "CVE-2023-2197"}, {"from": "security@google.com", "to": "CVE-2023-2236", "value": "CVE-2023-2236"}, {"from": "cna@vuldb.com", "to": "CVE-2015-10105", "value": "CVE-2015-10105"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25977", "value": "CVE-2023-25977"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25961", "value": "CVE-2023-25961"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23875", "value": "CVE-2023-23875"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25982", "value": "CVE-2023-25982"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23881", "value": "CVE-2023-23881"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25458", "value": "CVE-2023-25458"}, {"from": "audit@patchstack.com", "to": "CVE-2022-45818", "value": "CVE-2022-45818"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23723", "value": "CVE-2023-23723"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23830", "value": "CVE-2023-23830"}, {"from": "audit@patchstack.com", "to": "CVE-2023-26017", "value": "CVE-2023-26017"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25967", "value": "CVE-2023-25967"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23809", "value": "CVE-2023-23809"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23808", "value": "CVE-2023-23808"}, {"from": "psirt@fortinet.com", "to": "CVE-2023-27999", "value": "CVE-2023-27999"}, {"from": "cna@vuldb.com", "to": "CVE-2014-125100", "value": "CVE-2014-125100"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2451", "value": "CVE-2023-2451"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0891", "value": "CVE-2023-0891"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0924", "value": "CVE-2023-0924"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1021", "value": "CVE-2023-1021"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1090", "value": "CVE-2023-1090"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1525", "value": "CVE-2023-1525"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1125", "value": "CVE-2023-1125"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1554", "value": "CVE-2023-1554"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1614", "value": "CVE-2023-1614"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1546", "value": "CVE-2023-1546"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1669", "value": "CVE-2023-1669"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1730", "value": "CVE-2023-1730"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1804", "value": "CVE-2023-1804"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1805", "value": "CVE-2023-1805"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1809", "value": "CVE-2023-1809"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1196", "value": "CVE-2023-1196"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1911", "value": "CVE-2023-1911"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1861", "value": "CVE-2023-1861"}, {"from": "security@atlassian.com", "to": "CVE-2023-22503", "value": "CVE-2023-22503"}, {"from": "responsibledisclosure@mattermost.com", "to": "CVE-2023-2000", "value": "CVE-2023-2000"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2023-21642", "value": "CVE-2023-21642"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-40505", "value": "CVE-2022-40505"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-40508", "value": "CVE-2022-40508"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-33304", "value": "CVE-2022-33304"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-33305", "value": "CVE-2022-33305"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-34144", "value": "CVE-2022-34144"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-33281", "value": "CVE-2022-33281"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-33292", "value": "CVE-2022-33292"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-25713", "value": "CVE-2022-25713"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25797", "value": "CVE-2023-25797"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25792", "value": "CVE-2023-25792"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25787", "value": "CVE-2023-25787"}, {"from": "security@acronis.com", "to": "CVE-2022-3405", "value": "CVE-2022-3405"}, {"from": "security@acronis.com", "to": "CVE-2022-30995", "value": "CVE-2022-30995"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23790", "value": "CVE-2023-23790"}, {"from": "secure@dell.com", "to": "CVE-2023-28070", "value": "CVE-2023-28070"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22691", "value": "CVE-2023-22691"}, {"from": "cna@vuldb.com", "to": "CVE-2013-10026", "value": "CVE-2013-10026"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2477", "value": "CVE-2023-2477"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2476", "value": "CVE-2023-2476"}, {"from": "security@devolutions.net", "to": "CVE-2023-2445", "value": "CVE-2023-2445"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2475", "value": "CVE-2023-2475"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2474", "value": "CVE-2023-2474"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2473", "value": "CVE-2023-2473"}, {"from": "security@apache.org", "to": "CVE-2022-46365", "value": "CVE-2022-46365"}, {"from": "security@apache.org", "to": "CVE-2022-45801", "value": "CVE-2022-45801"}, {"from": "security@apache.org", "to": "CVE-2022-45802", "value": "CVE-2022-45802"}, {"from": "security@octopus.com", "to": "CVE-2023-2247", "value": "CVE-2023-2247"}, {"from": "audit@patchstack.com", "to": "CVE-2023-30869", "value": "CVE-2023-30869"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-33273", "value": "CVE-2022-33273"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30859", "value": "CVE-2023-30859"}, {"from": "security@checkmk.com", "to": "CVE-2023-31207", "value": "CVE-2023-31207"}, {"from": "cve@gitlab.com", "to": "CVE-2023-0155", "value": "CVE-2023-0155"}, {"from": "cve@gitlab.com", "to": "CVE-2023-0485", "value": "CVE-2023-0485"}, {"from": "cve@gitlab.com", "to": "CVE-2023-2069", "value": "CVE-2023-2069"}, {"from": "cve@gitlab.com", "to": "CVE-2023-1836", "value": "CVE-2023-1836"}, {"from": "psirt@lenovo.com", "to": "CVE-2022-48186", "value": "CVE-2022-48186"}, {"from": "psirt@amd.com", "to": "CVE-2023-20524", "value": "CVE-2023-20524"}, {"from": "psirt@amd.com", "to": "CVE-2021-26371", "value": "CVE-2021-26371"}, {"from": "psirt@amd.com", "to": "CVE-2021-46754", "value": "CVE-2021-46754"}, {"from": "psirt@amd.com", "to": "CVE-2021-46755", "value": "CVE-2021-46755"}, {"from": "psirt@amd.com", "to": "CVE-2021-26406", "value": "CVE-2021-26406"}, {"from": "psirt@amd.com", "to": "CVE-2021-46756", "value": "CVE-2021-46756"}, {"from": "psirt@amd.com", "to": "CVE-2021-46759", "value": "CVE-2021-46759"}, {"from": "psirt@amd.com", "to": "CVE-2021-46760", "value": "CVE-2021-46760"}, {"from": "psirt@amd.com", "to": "CVE-2021-26379", "value": "CVE-2021-26379"}, {"from": "psirt@amd.com", "to": "CVE-2021-46762", "value": "CVE-2021-46762"}, {"from": "psirt@amd.com", "to": "CVE-2021-46763", "value": "CVE-2021-46763"}, {"from": "psirt@amd.com", "to": "CVE-2021-46764", "value": "CVE-2021-46764"}, {"from": "psirt@amd.com", "to": "CVE-2021-46765", "value": "CVE-2021-46765"}, {"from": "psirt@amd.com", "to": "CVE-2021-46769", "value": "CVE-2021-46769"}, {"from": "psirt@amd.com", "to": "CVE-2021-46773", "value": "CVE-2021-46773"}, {"from": "psirt@amd.com", "to": "CVE-2021-46775", "value": "CVE-2021-46775"}, {"from": "psirt@amd.com", "to": "CVE-2021-46753", "value": "CVE-2021-46753"}, {"from": "psirt@amd.com", "to": "CVE-2021-46792", "value": "CVE-2021-46792"}, {"from": "psirt@amd.com", "to": "CVE-2022-23818", "value": "CVE-2022-23818"}, {"from": "psirt@amd.com", "to": "CVE-2023-20520", "value": "CVE-2023-20520"}, {"from": "psirt@amd.com", "to": "CVE-2021-46794", "value": "CVE-2021-46794"}, {"from": "psirt@amd.com", "to": "CVE-2021-26354", "value": "CVE-2021-26354"}, {"from": "psirt@amd.com", "to": "CVE-2021-46749", "value": "CVE-2021-46749"}, {"from": "psirt@amd.com", "to": "CVE-2021-26365", "value": "CVE-2021-26365"}, {"from": "psirt@lenovo.com", "to": "CVE-2023-0896", "value": "CVE-2023-0896"}, {"from": "cve@gitlab.com", "to": "CVE-2023-1965", "value": "CVE-2023-1965"}, {"from": "cve@gitlab.com", "to": "CVE-2023-1265", "value": "CVE-2023-1265"}, {"from": "cve@gitlab.com", "to": "CVE-2023-1204", "value": "CVE-2023-1204"}, {"from": "psirt@fortinet.com", "to": "CVE-2023-22637", "value": "CVE-2023-22637"}, {"from": "cve@gitlab.com", "to": "CVE-2023-2182", "value": "CVE-2023-2182"}, {"from": "cve@gitlab.com", "to": "CVE-2023-1178", "value": "CVE-2023-1178"}, {"from": "cve@gitlab.com", "to": "CVE-2023-0805", "value": "CVE-2023-0805"}, {"from": "cve@gitlab.com", "to": "CVE-2023-0756", "value": "CVE-2023-0756"}, {"from": "cve@gitlab.com", "to": "CVE-2022-4376", "value": "CVE-2022-4376"}, {"from": "cna@vuldb.com", "to": "CVE-2018-25085", "value": "CVE-2018-25085"}, {"from": "security@huntr.dev", "to": "CVE-2023-2427", "value": "CVE-2023-2427"}, {"from": "security@huntr.dev", "to": "CVE-2023-2516", "value": "CVE-2023-2516"}, {"from": "security@huntr.dev", "to": "CVE-2023-2550", "value": "CVE-2023-2550"}, {"from": "security@huntr.dev", "to": "CVE-2023-2551", "value": "CVE-2023-2551"}, {"from": "security@huntr.dev", "to": "CVE-2023-2552", "value": "CVE-2023-2552"}, {"from": "audit@patchstack.com", "to": "CVE-2023-26517", "value": "CVE-2023-26517"}, {"from": "security@huntr.dev", "to": "CVE-2023-2553", "value": "CVE-2023-2553"}, {"from": "audit@patchstack.com", "to": "CVE-2023-24400", "value": "CVE-2023-24400"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23668", "value": "CVE-2023-23668"}, {"from": "audit@patchstack.com", "to": "CVE-2023-26519", "value": "CVE-2023-26519"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25491", "value": "CVE-2023-25491"}, {"from": "audit@patchstack.com", "to": "CVE-2022-45812", "value": "CVE-2022-45812"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25021", "value": "CVE-2023-25021"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25052", "value": "CVE-2023-25052"}, {"from": "audit@patchstack.com", "to": "CVE-2023-28169", "value": "CVE-2023-28169"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25452", "value": "CVE-2023-25452"}, {"from": "audit@patchstack.com", "to": "CVE-2023-26016", "value": "CVE-2023-26016"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25962", "value": "CVE-2023-25962"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30861", "value": "CVE-2023-30861"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2464", "value": "CVE-2023-2464"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2465", "value": "CVE-2023-2465"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2466", "value": "CVE-2023-2466"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2467", "value": "CVE-2023-2467"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2468", "value": "CVE-2023-2468"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2461", "value": "CVE-2023-2461"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2459", "value": "CVE-2023-2459"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2463", "value": "CVE-2023-2463"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2462", "value": "CVE-2023-2462"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2460", "value": "CVE-2023-2460"}, {"from": "psirt@lenovo.com", "to": "CVE-2023-0683", "value": "CVE-2023-0683"}, {"from": "psirt@lenovo.com", "to": "CVE-2023-25492", "value": "CVE-2023-25492"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-28092", "value": "CVE-2023-28092"}, {"from": "secure@intel.com", "to": "CVE-2022-36391", "value": "CVE-2022-36391"}, {"from": "secure@intel.com", "to": "CVE-2023-27386", "value": "CVE-2023-27386"}, {"from": "secure@intel.com", "to": "CVE-2022-36339", "value": "CVE-2022-36339"}, {"from": "secure@intel.com", "to": "CVE-2022-34855", "value": "CVE-2022-34855"}, {"from": "secure@intel.com", "to": "CVE-2022-34848", "value": "CVE-2022-34848"}, {"from": "secure@intel.com", "to": "CVE-2022-34147", "value": "CVE-2022-34147"}, {"from": "secure@intel.com", "to": "CVE-2022-32578", "value": "CVE-2022-32578"}, {"from": "secure@intel.com", "to": "CVE-2022-32577", "value": "CVE-2022-32577"}, {"from": "secure@intel.com", "to": "CVE-2023-25179", "value": "CVE-2023-25179"}, {"from": "secure@intel.com", "to": "CVE-2022-31477", "value": "CVE-2022-31477"}, {"from": "secure@intel.com", "to": "CVE-2023-27382", "value": "CVE-2023-27382"}, {"from": "secure@intel.com", "to": "CVE-2023-22440", "value": "CVE-2023-22440"}, {"from": "secure@intel.com", "to": "CVE-2022-28699", "value": "CVE-2022-28699"}, {"from": "secure@intel.com", "to": "CVE-2023-22355", "value": "CVE-2023-22355"}, {"from": "secure@intel.com", "to": "CVE-2022-27180", "value": "CVE-2022-27180"}, {"from": "secure@intel.com", "to": "CVE-2023-22312", "value": "CVE-2023-22312"}, {"from": "secure@intel.com", "to": "CVE-2023-28410", "value": "CVE-2023-28410"}, {"from": "secure@intel.com", "to": "CVE-2022-32576", "value": "CVE-2022-32576"}, {"from": "secure@intel.com", "to": "CVE-2023-22447", "value": "CVE-2023-22447"}, {"from": "secure@intel.com", "to": "CVE-2023-23573", "value": "CVE-2023-23573"}, {"from": "secure@intel.com", "to": "CVE-2022-38101", "value": "CVE-2022-38101"}, {"from": "secure@intel.com", "to": "CVE-2022-46656", "value": "CVE-2022-46656"}, {"from": "secure@intel.com", "to": "CVE-2022-46645", "value": "CVE-2022-46645"}, {"from": "secure@intel.com", "to": "CVE-2023-25771", "value": "CVE-2023-25771"}, {"from": "secure@intel.com", "to": "CVE-2023-25772", "value": "CVE-2023-25772"}, {"from": "secure@intel.com", "to": "CVE-2022-43507", "value": "CVE-2022-43507"}, {"from": "secure@intel.com", "to": "CVE-2022-43474", "value": "CVE-2022-43474"}, {"from": "secure@intel.com", "to": "CVE-2022-41982", "value": "CVE-2022-41982"}, {"from": "secure@intel.com", "to": "CVE-2022-41801", "value": "CVE-2022-41801"}, {"from": "secure@intel.com", "to": "CVE-2022-41769", "value": "CVE-2022-41769"}, {"from": "secure@intel.com", "to": "CVE-2022-41693", "value": "CVE-2022-41693"}, {"from": "secure@intel.com", "to": "CVE-2022-41690", "value": "CVE-2022-41690"}, {"from": "secure@intel.com", "to": "CVE-2022-41687", "value": "CVE-2022-41687"}, {"from": "secure@intel.com", "to": "CVE-2022-41646", "value": "CVE-2022-41646"}, {"from": "secure@intel.com", "to": "CVE-2022-41628", "value": "CVE-2022-41628"}, {"from": "secure@intel.com", "to": "CVE-2022-41610", "value": "CVE-2022-41610"}, {"from": "secure@intel.com", "to": "CVE-2022-40971", "value": "CVE-2022-40971"}, {"from": "secure@intel.com", "to": "CVE-2022-40207", "value": "CVE-2022-40207"}, {"from": "secure@intel.com", "to": "CVE-2022-38787", "value": "CVE-2022-38787"}, {"from": "secure@intel.com", "to": "CVE-2023-27298", "value": "CVE-2023-27298"}, {"from": "secure@intel.com", "to": "CVE-2022-37327", "value": "CVE-2022-37327"}, {"from": "secure@intel.com", "to": "CVE-2022-41998", "value": "CVE-2022-41998"}, {"from": "secure@intel.com", "to": "CVE-2022-46279", "value": "CVE-2022-46279"}, {"from": "security@apache.org", "to": "CVE-2023-26268", "value": "CVE-2023-26268"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30619", "value": "CVE-2023-30619"}, {"from": "audit@patchstack.com", "to": "CVE-2023-26012", "value": "CVE-2023-26012"}, {"from": "audit@patchstack.com", "to": "CVE-2023-26010", "value": "CVE-2023-26010"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-24958", "value": "CVE-2023-24958"}, {"from": "psirt@lenovo.com", "to": "CVE-2022-4568", "value": "CVE-2022-4568"}, {"from": "prodsec@nozominetworks.com", "to": "CVE-2022-4259", "value": "CVE-2022-4259"}, {"from": "info@cert.vde.com", "to": "CVE-2017-20184", "value": "CVE-2017-20184"}, {"from": "security@suse.com", "to": "CVE-2023-22651", "value": "CVE-2023-22651"}, {"from": "secure@dell.com", "to": "CVE-2023-25934", "value": "CVE-2023-25934"}, {"from": "report@snyk.io", "to": "CVE-2023-26125", "value": "CVE-2023-26125"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-23470", "value": "CVE-2023-23470"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47434", "value": "CVE-2022-47434"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47449", "value": "CVE-2022-47449"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21486", "value": "CVE-2023-21486"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21485", "value": "CVE-2023-21485"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21484", "value": "CVE-2023-21484"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21487", "value": "CVE-2023-21487"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21490", "value": "CVE-2023-21490"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21491", "value": "CVE-2023-21491"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21492", "value": "CVE-2023-21492"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21489", "value": "CVE-2023-21489"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21488", "value": "CVE-2023-21488"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21493", "value": "CVE-2023-21493"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-22372", "value": "CVE-2023-22372"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-24461", "value": "CVE-2023-24461"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-24594", "value": "CVE-2023-24594"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-27378", "value": "CVE-2023-27378"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-28406", "value": "CVE-2023-28406"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-28742", "value": "CVE-2023-28742"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-29163", "value": "CVE-2023-29163"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-28724", "value": "CVE-2023-28724"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-28656", "value": "CVE-2023-28656"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2523", "value": "CVE-2023-2523"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2524", "value": "CVE-2023-2524"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20126", "value": "CVE-2023-20126"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21501", "value": "CVE-2023-21501"}, {"from": "disclosure@synopsys.com", "to": "CVE-2023-25826", "value": "CVE-2023-25826"}, {"from": "f5sirt@f5.com", "to": "CVE-2023-29240", "value": "CVE-2023-29240"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21505", "value": "CVE-2023-21505"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30550", "value": "CVE-2023-30550"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21502", "value": "CVE-2023-21502"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2519", "value": "CVE-2023-2519"}, {"from": "disclosure@synopsys.com", "to": "CVE-2023-25827", "value": "CVE-2023-25827"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2520", "value": "CVE-2023-2520"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2521", "value": "CVE-2023-2521"}, {"from": "security@apache.org", "to": "CVE-2023-32007", "value": "CVE-2023-32007"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21506", "value": "CVE-2023-21506"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21507", "value": "CVE-2023-21507"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21495", "value": "CVE-2023-21495"}, {"from": "psirt@fortinet.com", "to": "CVE-2023-27993", "value": "CVE-2023-27993"}, {"from": "psirt@fortinet.com", "to": "CVE-2023-26203", "value": "CVE-2023-26203"}, {"from": "psirt@fortinet.com", "to": "CVE-2023-22640", "value": "CVE-2023-22640"}, {"from": "psirt@wdc.com", "to": "CVE-2022-36330", "value": "CVE-2022-36330"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21510", "value": "CVE-2023-21510"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21509", "value": "CVE-2023-21509"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21511", "value": "CVE-2023-21511"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21508", "value": "CVE-2023-21508"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21503", "value": "CVE-2023-21503"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21504", "value": "CVE-2023-21504"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21499", "value": "CVE-2023-21499"}, {"from": "patrick@puiterwijk.org", "to": "CVE-2023-30944", "value": "CVE-2023-30944"}, {"from": "patrick@puiterwijk.org", "to": "CVE-2023-30943", "value": "CVE-2023-30943"}, {"from": "security@unisoc.com", "to": "CVE-2022-48233", "value": "CVE-2022-48233"}, {"from": "security@unisoc.com", "to": "CVE-2022-48241", "value": "CVE-2022-48241"}, {"from": "security@unisoc.com", "to": "CVE-2022-48244", "value": "CVE-2022-48244"}, {"from": "security@unisoc.com", "to": "CVE-2022-48234", "value": "CVE-2022-48234"}, {"from": "security@unisoc.com", "to": "CVE-2022-48370", "value": "CVE-2022-48370"}, {"from": "security@unisoc.com", "to": "CVE-2022-48246", "value": "CVE-2022-48246"}, {"from": "security@unisoc.com", "to": "CVE-2022-48247", "value": "CVE-2022-48247"}, {"from": "security@unisoc.com", "to": "CVE-2022-48245", "value": "CVE-2022-48245"}, {"from": "security@unisoc.com", "to": "CVE-2022-48368", "value": "CVE-2022-48368"}, {"from": "security@unisoc.com", "to": "CVE-2022-48242", "value": "CVE-2022-48242"}, {"from": "security@unisoc.com", "to": "CVE-2022-48369", "value": "CVE-2022-48369"}, {"from": "security@unisoc.com", "to": "CVE-2022-48250", "value": "CVE-2022-48250"}, {"from": "security@unisoc.com", "to": "CVE-2022-48249", "value": "CVE-2022-48249"}, {"from": "security@unisoc.com", "to": "CVE-2022-48231", "value": "CVE-2022-48231"}, {"from": "security@unisoc.com", "to": "CVE-2022-48243", "value": "CVE-2022-48243"}, {"from": "security@unisoc.com", "to": "CVE-2022-48232", "value": "CVE-2022-48232"}, {"from": "product-security@apple.com", "to": "CVE-2023-23526", "value": "CVE-2023-23526"}, {"from": "product-security@apple.com", "to": "CVE-2023-23534", "value": "CVE-2023-23534"}, {"from": "security@unisoc.com", "to": "CVE-2022-48248", "value": "CVE-2022-48248"}, {"from": "product-security@apple.com", "to": "CVE-2023-23523", "value": "CVE-2023-23523"}, {"from": "product-security@apple.com", "to": "CVE-2023-23527", "value": "CVE-2023-23527"}, {"from": "product-security@apple.com", "to": "CVE-2023-23537", "value": "CVE-2023-23537"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21494", "value": "CVE-2023-21494"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21496", "value": "CVE-2023-21496"}, {"from": "security@puppet.com", "to": "CVE-2023-1894", "value": "CVE-2023-1894"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21497", "value": "CVE-2023-21497"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21498", "value": "CVE-2023-21498"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2522", "value": "CVE-2023-2522"}, {"from": "mobile.security@samsung.com", "to": "CVE-2023-21500", "value": "CVE-2023-21500"}, {"from": "psirt@wdc.com", "to": "CVE-2022-29841", "value": "CVE-2022-29841"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2649", "value": "CVE-2023-2649"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2646", "value": "CVE-2023-2646"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2645", "value": "CVE-2023-2645"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2644", "value": "CVE-2023-2644"}, {"from": "security@elastic.co", "to": "CVE-2023-31415", "value": "CVE-2023-31415"}, {"from": "security@elastic.co", "to": "CVE-2023-31414", "value": "CVE-2023-31414"}, {"from": "security@elastic.co", "to": "CVE-2023-31413", "value": "CVE-2023-31413"}, {"from": "security@apache.org", "to": "CVE-2021-40331", "value": "CVE-2021-40331"}, {"from": "psirt@us.ibm.com", "to": "CVE-2022-38707", "value": "CVE-2022-38707"}, {"from": "security@apache.org", "to": "CVE-2022-45048", "value": "CVE-2022-45048"}, {"from": "psirt@us.ibm.com", "to": "CVE-2022-43919", "value": "CVE-2022-43919"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-22874", "value": "CVE-2023-22874"}, {"from": "secure@dell.com", "to": "CVE-2023-28068", "value": "CVE-2023-28068"}, {"from": "security@huntr.dev", "to": "CVE-2023-2554", "value": "CVE-2023-2554"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29350", "value": "CVE-2023-29350"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29354", "value": "CVE-2023-29354"}, {"from": "product-security@apple.com", "to": "CVE-2023-23494", "value": "CVE-2023-23494"}, {"from": "product-security@apple.com", "to": "CVE-2023-23528", "value": "CVE-2023-23528"}, {"from": "product-security@apple.com", "to": "CVE-2023-23538", "value": "CVE-2023-23538"}, {"from": "product-security@apple.com", "to": "CVE-2023-23533", "value": "CVE-2023-23533"}, {"from": "security@huntr.dev", "to": "CVE-2023-2531", "value": "CVE-2023-2531"}, {"from": "cna@vuldb.com", "to": "CVE-2017-20183", "value": "CVE-2017-20183"}, {"from": "psirt@fortinet.com", "to": "CVE-2022-45860", "value": "CVE-2022-45860"}, {"from": "psirt@fortinet.com", "to": "CVE-2022-45859", "value": "CVE-2022-45859"}, {"from": "psirt@fortinet.com", "to": "CVE-2022-45858", "value": "CVE-2022-45858"}, {"from": "psirt@fortinet.com", "to": "CVE-2022-43950", "value": "CVE-2022-43950"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2565", "value": "CVE-2023-2565"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0268", "value": "CVE-2023-0268"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0267", "value": "CVE-2023-0267"}, {"from": "contact@wpscan.com", "to": "CVE-2022-4118", "value": "CVE-2022-4118"}, {"from": "psirt@us.ibm.com", "to": "CVE-2022-43877", "value": "CVE-2022-43877"}, {"from": "psirt@us.ibm.com", "to": "CVE-2022-22313", "value": "CVE-2022-22313"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2560", "value": "CVE-2023-2560"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47439", "value": "CVE-2022-47439"}, {"from": "audit@patchstack.com", "to": "CVE-2022-45065", "value": "CVE-2022-45065"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47437", "value": "CVE-2022-47437"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-30434", "value": "CVE-2023-30434"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1660", "value": "CVE-2023-1660"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1651", "value": "CVE-2023-1651"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1649", "value": "CVE-2023-1649"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1806", "value": "CVE-2023-1806"}, {"from": "audit@patchstack.com", "to": "CVE-2023-28493", "value": "CVE-2023-28493"}, {"from": "audit@patchstack.com", "to": "CVE-2023-24408", "value": "CVE-2023-24408"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22710", "value": "CVE-2023-22710"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23894", "value": "CVE-2023-23894"}, {"from": "audit@patchstack.com", "to": "CVE-2023-24376", "value": "CVE-2023-24376"}, {"from": "cna@cyber.gov.il", "to": "CVE-2023-31183", "value": "CVE-2023-31183"}, {"from": "security@unisoc.com", "to": "CVE-2022-48237", "value": "CVE-2022-48237"}, {"from": "security@unisoc.com", "to": "CVE-2022-48236", "value": "CVE-2022-48236"}, {"from": "security@unisoc.com", "to": "CVE-2022-48235", "value": "CVE-2022-48235"}, {"from": "security@unisoc.com", "to": "CVE-2022-48372", "value": "CVE-2022-48372"}, {"from": "security@unisoc.com", "to": "CVE-2022-48373", "value": "CVE-2022-48373"}, {"from": "security@unisoc.com", "to": "CVE-2022-48374", "value": "CVE-2022-48374"}, {"from": "security@unisoc.com", "to": "CVE-2022-48239", "value": "CVE-2022-48239"}, {"from": "security@unisoc.com", "to": "CVE-2022-48240", "value": "CVE-2022-48240"}, {"from": "security@unisoc.com", "to": "CVE-2022-48238", "value": "CVE-2022-48238"}, {"from": "product-security@apple.com", "to": "CVE-2023-27934", "value": "CVE-2023-27934"}, {"from": "product-security@apple.com", "to": "CVE-2023-27935", "value": "CVE-2023-27935"}, {"from": "security@unisoc.com", "to": "CVE-2022-48371", "value": "CVE-2022-48371"}, {"from": "product-security@apple.com", "to": "CVE-2023-27936", "value": "CVE-2023-27936"}, {"from": "product-security@apple.com", "to": "CVE-2023-27938", "value": "CVE-2023-27938"}, {"from": "product-security@apple.com", "to": "CVE-2023-27937", "value": "CVE-2023-27937"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-26285", "value": "CVE-2023-26285"}, {"from": "psirt@us.ibm.com", "to": "CVE-2020-4914", "value": "CVE-2020-4914"}, {"from": "security@huntr.dev", "to": "CVE-2023-2566", "value": "CVE-2023-2566"}, {"from": "security@apache.org", "to": "CVE-2023-29247", "value": "CVE-2023-29247"}, {"from": "audit@patchstack.com", "to": "CVE-2022-46799", "value": "CVE-2022-46799"}, {"from": "security@apache.org", "to": "CVE-2023-25754", "value": "CVE-2023-25754"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1650", "value": "CVE-2023-1650"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31146", "value": "CVE-2023-31146"}, {"from": "security@huntr.dev", "to": "CVE-2023-2665", "value": "CVE-2023-2665"}, {"from": "security@huntr.dev", "to": "CVE-2023-2666", "value": "CVE-2023-2666"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-27554", "value": "CVE-2023-27554"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-1834", "value": "CVE-2023-1834"}, {"from": "support@hackerone.com", "to": "CVE-2023-28359", "value": "CVE-2023-28359"}, {"from": "support@hackerone.com", "to": "CVE-2023-28356", "value": "CVE-2023-28356"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32075", "value": "CVE-2023-32075"}, {"from": "security-advisories@github.com", "to": "CVE-2023-29195", "value": "CVE-2023-29195"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32059", "value": "CVE-2023-32059"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32058", "value": "CVE-2023-32058"}, {"from": "security@golang.org", "to": "CVE-2023-24540", "value": "CVE-2023-24540"}, {"from": "security@golang.org", "to": "CVE-2023-24539", "value": "CVE-2023-24539"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-2444", "value": "CVE-2023-2444"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-2443", "value": "CVE-2023-2443"}, {"from": "security@golang.org", "to": "CVE-2023-29400", "value": "CVE-2023-29400"}, {"from": "psirt@us.ibm.com", "to": "CVE-2021-39036", "value": "CVE-2021-39036"}, {"from": "support@hackerone.com", "to": "CVE-2023-28325", "value": "CVE-2023-28325"}, {"from": "support@hackerone.com", "to": "CVE-2023-28357", "value": "CVE-2023-28357"}, {"from": "support@hackerone.com", "to": "CVE-2023-28358", "value": "CVE-2023-28358"}, {"from": "support@hackerone.com", "to": "CVE-2023-28360", "value": "CVE-2023-28360"}, {"from": "support@hackerone.com", "to": "CVE-2023-28361", "value": "CVE-2023-28361"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32082", "value": "CVE-2023-32082"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1011", "value": "CVE-2023-1011"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0894", "value": "CVE-2023-0894"}, {"from": "audit@patchstack.com", "to": "CVE-2022-46858", "value": "CVE-2022-46858"}, {"from": "audit@patchstack.com", "to": "CVE-2022-46844", "value": "CVE-2022-46844"}, {"from": "audit@patchstack.com", "to": "CVE-2022-46864", "value": "CVE-2022-46864"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1347", "value": "CVE-2023-1347"}, {"from": "security@apache.org", "to": "CVE-2023-31039", "value": "CVE-2023-31039"}, {"from": "psirt@us.ibm.com", "to": "CVE-2022-43866", "value": "CVE-2022-43866"}, {"from": "product-security@apple.com", "to": "CVE-2023-23525", "value": "CVE-2023-23525"}, {"from": "product-security@apple.com", "to": "CVE-2023-27942", "value": "CVE-2023-27942"}, {"from": "product-security@apple.com", "to": "CVE-2023-27941", "value": "CVE-2023-27941"}, {"from": "psirt@us.ibm.com", "to": "CVE-2022-39161", "value": "CVE-2022-39161"}, {"from": "product-security@apple.com", "to": "CVE-2023-23536", "value": "CVE-2023-23536"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-27870", "value": "CVE-2023-27870"}, {"from": "security@huntr.dev", "to": "CVE-2023-2616", "value": "CVE-2023-2616"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2619", "value": "CVE-2023-2619"}, {"from": "security@huntr.dev", "to": "CVE-2023-2610", "value": "CVE-2023-2610"}, {"from": "audit@patchstack.com", "to": "CVE-2022-46822", "value": "CVE-2022-46822"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23862", "value": "CVE-2023-23862"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23883", "value": "CVE-2023-23883"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23884", "value": "CVE-2023-23884"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23734", "value": "CVE-2023-23734"}, {"from": "audit@patchstack.com", "to": "CVE-2023-24372", "value": "CVE-2023-24372"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23733", "value": "CVE-2023-23733"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23732", "value": "CVE-2023-23732"}, {"from": "audit@patchstack.com", "to": "CVE-2022-41640", "value": "CVE-2022-41640"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23664", "value": "CVE-2023-23664"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23863", "value": "CVE-2023-23863"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23793", "value": "CVE-2023-23793"}, {"from": "security@huntr.dev", "to": "CVE-2023-2590", "value": "CVE-2023-2590"}, {"from": "security@unisoc.com", "to": "CVE-2022-48383", "value": "CVE-2022-48383"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0522", "value": "CVE-2023-0522"}, {"from": "security@unisoc.com", "to": "CVE-2022-48382", "value": "CVE-2022-48382"}, {"from": "security@unisoc.com", "to": "CVE-2022-48381", "value": "CVE-2022-48381"}, {"from": "psirt@sick.de", "to": "CVE-2023-23444", "value": "CVE-2023-23444"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2677", "value": "CVE-2023-2677"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2678", "value": "CVE-2023-2678"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2682", "value": "CVE-2023-2682"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32081", "value": "CVE-2023-32081"}, {"from": "cna@cloudflare.com", "to": "CVE-2023-2512", "value": "CVE-2023-2512"}, {"from": "responsibledisclosure@mattermost.com", "to": "CVE-2023-2514", "value": "CVE-2023-2514"}, {"from": "responsibledisclosure@mattermost.com", "to": "CVE-2023-2515", "value": "CVE-2023-2515"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32073", "value": "CVE-2023-32073"}, {"from": "security@huntr.dev", "to": "CVE-2023-2674", "value": "CVE-2023-2674"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2676", "value": "CVE-2023-2676"}, {"from": "ics-cert@hq.dhs.gov", "to": "CVE-2023-1934", "value": "CVE-2023-1934"}, {"from": "security@apache.org", "to": "CVE-2023-28936", "value": "CVE-2023-28936"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-28520", "value": "CVE-2023-28520"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-28522", "value": "CVE-2023-28522"}, {"from": "security@apache.org", "to": "CVE-2023-29246", "value": "CVE-2023-29246"}, {"from": "security@apache.org", "to": "CVE-2023-29032", "value": "CVE-2023-29032"}, {"from": "security@unisoc.com", "to": "CVE-2022-48378", "value": "CVE-2022-48378"}, {"from": "security@unisoc.com", "to": "CVE-2022-48379", "value": "CVE-2022-48379"}, {"from": "security@huntr.dev", "to": "CVE-2023-2564", "value": "CVE-2023-2564"}, {"from": "security@unisoc.com", "to": "CVE-2022-48380", "value": "CVE-2022-48380"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2023-21665", "value": "CVE-2023-21665"}, {"from": "security@unisoc.com", "to": "CVE-2022-48376", "value": "CVE-2022-48376"}, {"from": "security@unisoc.com", "to": "CVE-2022-48377", "value": "CVE-2022-48377"}, {"from": "security@unisoc.com", "to": "CVE-2022-48375", "value": "CVE-2022-48375"}, {"from": "cve-requests@bitdefender.com", "to": "CVE-2023-1383", "value": "CVE-2023-1383"}, {"from": "security@unisoc.com", "to": "CVE-2022-44420", "value": "CVE-2022-44420"}, {"from": "security@unisoc.com", "to": "CVE-2022-44419", "value": "CVE-2022-44419"}, {"from": "security@unisoc.com", "to": "CVE-2022-39089", "value": "CVE-2022-39089"}, {"from": "security@unisoc.com", "to": "CVE-2022-38685", "value": "CVE-2022-38685"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0280", "value": "CVE-2023-0280"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22787", "value": "CVE-2023-22787"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0603", "value": "CVE-2023-0603"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22791", "value": "CVE-2023-22791"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0768", "value": "CVE-2023-0768"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0544", "value": "CVE-2023-0544"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22790", "value": "CVE-2023-22790"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22789", "value": "CVE-2023-22789"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22788", "value": "CVE-2023-22788"}, {"from": "security@unisoc.com", "to": "CVE-2022-47492", "value": "CVE-2022-47492"}, {"from": "cve-requests@bitdefender.com", "to": "CVE-2023-1384", "value": "CVE-2023-1384"}, {"from": "security@unisoc.com", "to": "CVE-2022-47493", "value": "CVE-2022-47493"}, {"from": "cve-requests@bitdefender.com", "to": "CVE-2023-1385", "value": "CVE-2023-1385"}, {"from": "security@unisoc.com", "to": "CVE-2022-47490", "value": "CVE-2022-47490"}, {"from": "security@unisoc.com", "to": "CVE-2022-48384", "value": "CVE-2022-48384"}, {"from": "security@unisoc.com", "to": "CVE-2022-47334", "value": "CVE-2022-47334"}, {"from": "cna@vuldb.com", "to": "CVE-2016-15031", "value": "CVE-2016-15031"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30551", "value": "CVE-2023-30551"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30855", "value": "CVE-2023-30855"}, {"from": "security@huntr.dev", "to": "CVE-2023-2583", "value": "CVE-2023-2583"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1905", "value": "CVE-2023-1905"}, {"from": "contact@wpscan.com", "to": "CVE-2023-2114", "value": "CVE-2023-2114"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22779", "value": "CVE-2023-22779"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22780", "value": "CVE-2023-22780"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22781", "value": "CVE-2023-22781"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22782", "value": "CVE-2023-22782"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22783", "value": "CVE-2023-22783"}, {"from": "office@cyberdanube.com", "to": "CVE-2023-2575", "value": "CVE-2023-2575"}, {"from": "office@cyberdanube.com", "to": "CVE-2023-2574", "value": "CVE-2023-2574"}, {"from": "office@cyberdanube.com", "to": "CVE-2023-2573", "value": "CVE-2023-2573"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2023-21666", "value": "CVE-2023-21666"}, {"from": "security.cna@qualcomm.com", "to": "CVE-2022-40504", "value": "CVE-2022-40504"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22786", "value": "CVE-2023-22786"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22785", "value": "CVE-2023-22785"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-22784", "value": "CVE-2023-22784"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0948", "value": "CVE-2023-0948"}, {"from": "security@google.com", "to": "CVE-2023-1979", "value": "CVE-2023-1979"}, {"from": "product-security@apple.com", "to": "CVE-2023-27953", "value": "CVE-2023-27953"}, {"from": "product-security@apple.com", "to": "CVE-2023-27929", "value": "CVE-2023-27929"}, {"from": "product-security@apple.com", "to": "CVE-2023-27954", "value": "CVE-2023-27954"}, {"from": "product-security@apple.com", "to": "CVE-2023-27943", "value": "CVE-2023-27943"}, {"from": "product-security@apple.com", "to": "CVE-2023-27931", "value": "CVE-2023-27931"}, {"from": "product-security@apple.com", "to": "CVE-2023-27957", "value": "CVE-2023-27957"}, {"from": "help@fluidattacks.com", "to": "CVE-2023-1094", "value": "CVE-2023-1094"}, {"from": "product-security@apple.com", "to": "CVE-2023-27959", "value": "CVE-2023-27959"}, {"from": "product-security@apple.com", "to": "CVE-2023-27955", "value": "CVE-2023-27955"}, {"from": "product-security@apple.com", "to": "CVE-2023-27967", "value": "CVE-2023-27967"}, {"from": "product-security@apple.com", "to": "CVE-2023-27968", "value": "CVE-2023-27968"}, {"from": "help@fluidattacks.com", "to": "CVE-2023-30790", "value": "CVE-2023-30790"}, {"from": "help@fluidattacks.com", "to": "CVE-2023-30789", "value": "CVE-2023-30789"}, {"from": "help@fluidattacks.com", "to": "CVE-2023-30788", "value": "CVE-2023-30788"}, {"from": "help@fluidattacks.com", "to": "CVE-2023-30787", "value": "CVE-2023-30787"}, {"from": "cna@cyber.gov.il", "to": "CVE-2023-31180", "value": "CVE-2023-31180"}, {"from": "cna@cyber.gov.il", "to": "CVE-2023-31181", "value": "CVE-2023-31181"}, {"from": "cna@sap.com", "to": "CVE-2023-29188", "value": "CVE-2023-29188"}, {"from": "cna@sap.com", "to": "CVE-2023-28764", "value": "CVE-2023-28764"}, {"from": "cna@sap.com", "to": "CVE-2023-28762", "value": "CVE-2023-28762"}, {"from": "product-security@apple.com", "to": "CVE-2023-27949", "value": "CVE-2023-27949"}, {"from": "product-security@apple.com", "to": "CVE-2023-27946", "value": "CVE-2023-27946"}, {"from": "product-security@apple.com", "to": "CVE-2023-27958", "value": "CVE-2023-27958"}, {"from": "product-security@apple.com", "to": "CVE-2023-27961", "value": "CVE-2023-27961"}, {"from": "product-security@apple.com", "to": "CVE-2023-28189", "value": "CVE-2023-28189"}, {"from": "product-security@apple.com", "to": "CVE-2023-28192", "value": "CVE-2023-28192"}, {"from": "product-security@apple.com", "to": "CVE-2023-28200", "value": "CVE-2023-28200"}, {"from": "product-security@apple.com", "to": "CVE-2023-28190", "value": "CVE-2023-28190"}, {"from": "product-security@apple.com", "to": "CVE-2023-27944", "value": "CVE-2023-27944"}, {"from": "product-security@apple.com", "to": "CVE-2023-28180", "value": "CVE-2023-28180"}, {"from": "product-security@apple.com", "to": "CVE-2023-27932", "value": "CVE-2023-27932"}, {"from": "product-security@apple.com", "to": "CVE-2023-27933", "value": "CVE-2023-27933"}, {"from": "product-security@apple.com", "to": "CVE-2023-27952", "value": "CVE-2023-27952"}, {"from": "product-security@apple.com", "to": "CVE-2023-27951", "value": "CVE-2023-27951"}, {"from": "security@huntr.dev", "to": "CVE-2023-2591", "value": "CVE-2023-2591"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22685", "value": "CVE-2023-22685"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32306", "value": "CVE-2023-32306"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23810", "value": "CVE-2023-23810"}, {"from": "secure@intel.com", "to": "CVE-2023-29242", "value": "CVE-2023-29242"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23867", "value": "CVE-2023-23867"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47381", "value": "CVE-2022-47381"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47388", "value": "CVE-2022-47388"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47387", "value": "CVE-2022-47387"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47380", "value": "CVE-2022-47380"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2458", "value": "CVE-2023-2458"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22690", "value": "CVE-2023-22690"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22684", "value": "CVE-2023-22684"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47386", "value": "CVE-2022-47386"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47385", "value": "CVE-2022-47385"}, {"from": "psirt@autodesk.com", "to": "CVE-2023-25005", "value": "CVE-2023-25005"}, {"from": "psirt@autodesk.com", "to": "CVE-2023-25006", "value": "CVE-2023-25006"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47384", "value": "CVE-2022-47384"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47383", "value": "CVE-2022-47383"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2457", "value": "CVE-2023-2457"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32305", "value": "CVE-2023-32305"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32303", "value": "CVE-2023-32303"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47389", "value": "CVE-2022-47389"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47379", "value": "CVE-2022-47379"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47378", "value": "CVE-2022-47378"}, {"from": "psirt@sick.de", "to": "CVE-2023-23445", "value": "CVE-2023-23445"}, {"from": "security@vmware.com", "to": "CVE-2023-20877", "value": "CVE-2023-20877"}, {"from": "security@vmware.com", "to": "CVE-2023-20878", "value": "CVE-2023-20878"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2088", "value": "CVE-2023-2088"}, {"from": "psirt@sick.de", "to": "CVE-2023-23447", "value": "CVE-2023-23447"}, {"from": "psirt@sick.de", "to": "CVE-2023-23448", "value": "CVE-2023-23448"}, {"from": "psirt@sick.de", "to": "CVE-2023-23449", "value": "CVE-2023-23449"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22717", "value": "CVE-2023-22717"}, {"from": "security@vmware.com", "to": "CVE-2023-20880", "value": "CVE-2023-20880"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22706", "value": "CVE-2023-22706"}, {"from": "psirt@sick.de", "to": "CVE-2023-23450", "value": "CVE-2023-23450"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47393", "value": "CVE-2022-47393"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47392", "value": "CVE-2022-47392"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23654", "value": "CVE-2023-23654"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47391", "value": "CVE-2022-47391"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23674", "value": "CVE-2023-23674"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23683", "value": "CVE-2023-23683"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23688", "value": "CVE-2023-23688"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47390", "value": "CVE-2022-47390"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22703", "value": "CVE-2023-22703"}, {"from": "psirt@sick.de", "to": "CVE-2023-23446", "value": "CVE-2023-23446"}, {"from": "security@vmware.com", "to": "CVE-2023-20879", "value": "CVE-2023-20879"}, {"from": "info@cert.vde.com", "to": "CVE-2022-47382", "value": "CVE-2022-47382"}, {"from": "security@checkmk.com", "to": "CVE-2023-22318", "value": "CVE-2023-22318"}, {"from": "cve@gitlab.com", "to": "CVE-2023-2181", "value": "CVE-2023-2181"}, {"from": "secure@intel.com", "to": "CVE-2023-31197", "value": "CVE-2023-31197"}, {"from": "secure@intel.com", "to": "CVE-2023-31199", "value": "CVE-2023-31199"}, {"from": "info@cert.vde.com", "to": "CVE-2022-4048", "value": "CVE-2022-4048"}, {"from": "psirt@sick.de", "to": "CVE-2023-31408", "value": "CVE-2023-31408"}, {"from": "info@cert.vde.com", "to": "CVE-2023-1698", "value": "CVE-2023-1698"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2699", "value": "CVE-2023-2699"}, {"from": "security-alert@netapp.com", "to": "CVE-2023-1096", "value": "CVE-2023-1096"}, {"from": "psirt@sick.de", "to": "CVE-2023-31409", "value": "CVE-2023-31409"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2698", "value": "CVE-2023-2698"}, {"from": "info@cert.vde.com", "to": "CVE-2022-22508", "value": "CVE-2022-22508"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2697", "value": "CVE-2023-2697"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2696", "value": "CVE-2023-2696"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25958", "value": "CVE-2023-25958"}, {"from": "psirt@autodesk.com", "to": "CVE-2023-25009", "value": "CVE-2023-25009"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-25927", "value": "CVE-2023-25927"}, {"from": "secure@intel.com", "to": "CVE-2023-30768", "value": "CVE-2023-30768"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2689", "value": "CVE-2023-2689"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2690", "value": "CVE-2023-2690"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2691", "value": "CVE-2023-2691"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2695", "value": "CVE-2023-2695"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2692", "value": "CVE-2023-2692"}, {"from": "psirt@autodesk.com", "to": "CVE-2023-25007", "value": "CVE-2023-25007"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2694", "value": "CVE-2023-2694"}, {"from": "psirt@autodesk.com", "to": "CVE-2023-25008", "value": "CVE-2023-25008"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-27863", "value": "CVE-2023-27863"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2693", "value": "CVE-2023-2693"}, {"from": "secure@intel.com", "to": "CVE-2023-30763", "value": "CVE-2023-30763"}, {"from": "security@unisoc.com", "to": "CVE-2022-44433", "value": "CVE-2022-44433"}, {"from": "security@unisoc.com", "to": "CVE-2022-47488", "value": "CVE-2022-47488"}, {"from": "security@unisoc.com", "to": "CVE-2022-47486", "value": "CVE-2022-47486"}, {"from": "security@unisoc.com", "to": "CVE-2022-47487", "value": "CVE-2022-47487"}, {"from": "security@unisoc.com", "to": "CVE-2022-47485", "value": "CVE-2022-47485"}, {"from": "security@unisoc.com", "to": "CVE-2022-47469", "value": "CVE-2022-47469"}, {"from": "security@unisoc.com", "to": "CVE-2022-47340", "value": "CVE-2022-47340"}, {"from": "security@unisoc.com", "to": "CVE-2022-47470", "value": "CVE-2022-47470"}, {"from": "product-security@apple.com", "to": "CVE-2023-28201", "value": "CVE-2023-28201"}, {"from": "product-security@apple.com", "to": "CVE-2023-28194", "value": "CVE-2023-28194"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0644", "value": "CVE-2023-0644"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0763", "value": "CVE-2023-0763"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0762", "value": "CVE-2023-0762"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0761", "value": "CVE-2023-0761"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1835", "value": "CVE-2023-1835"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1839", "value": "CVE-2023-1839"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0600", "value": "CVE-2023-0600"}, {"from": "contact@wpscan.com", "to": "CVE-2023-2180", "value": "CVE-2023-2180"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0812", "value": "CVE-2023-0812"}, {"from": "contact@wpscan.com", "to": "CVE-2022-4774", "value": "CVE-2022-4774"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1019", "value": "CVE-2023-1019"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1915", "value": "CVE-2023-1915"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0892", "value": "CVE-2023-0892"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0233", "value": "CVE-2023-0233"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1207", "value": "CVE-2023-1207"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1890", "value": "CVE-2023-1890"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0490", "value": "CVE-2023-0490"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1596", "value": "CVE-2023-1596"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23682", "value": "CVE-2023-23682"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0520", "value": "CVE-2023-0520"}, {"from": "contact@wpscan.com", "to": "CVE-2023-2009", "value": "CVE-2023-2009"}, {"from": "contact@wpscan.com", "to": "CVE-2023-2179", "value": "CVE-2023-2179"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1549", "value": "CVE-2023-1549"}, {"from": "security@unisoc.com", "to": "CVE-2022-47498", "value": "CVE-2022-47498"}, {"from": "security@unisoc.com", "to": "CVE-2022-47497", "value": "CVE-2022-47497"}, {"from": "security@unisoc.com", "to": "CVE-2022-47499", "value": "CVE-2022-47499"}, {"from": "security@unisoc.com", "to": "CVE-2022-47495", "value": "CVE-2022-47495"}, {"from": "security@unisoc.com", "to": "CVE-2022-47496", "value": "CVE-2022-47496"}, {"from": "security@unisoc.com", "to": "CVE-2022-47494", "value": "CVE-2022-47494"}, {"from": "security@unisoc.com", "to": "CVE-2022-47489", "value": "CVE-2022-47489"}, {"from": "security@unisoc.com", "to": "CVE-2022-47491", "value": "CVE-2022-47491"}, {"from": "security@unisoc.com", "to": "CVE-2022-48389", "value": "CVE-2022-48389"}, {"from": "security@unisoc.com", "to": "CVE-2022-48386", "value": "CVE-2022-48386"}, {"from": "security@unisoc.com", "to": "CVE-2022-48387", "value": "CVE-2022-48387"}, {"from": "security@unisoc.com", "to": "CVE-2022-48385", "value": "CVE-2022-48385"}, {"from": "security@unisoc.com", "to": "CVE-2022-48388", "value": "CVE-2022-48388"}, {"from": "product-security@apple.com", "to": "CVE-2023-28178", "value": "CVE-2023-28178"}, {"from": "product-security@apple.com", "to": "CVE-2023-27970", "value": "CVE-2023-27970"}, {"from": "product-security@apple.com", "to": "CVE-2023-27960", "value": "CVE-2023-27960"}, {"from": "product-security@apple.com", "to": "CVE-2023-27962", "value": "CVE-2023-27962"}, {"from": "security@wordfence.com", "to": "CVE-2022-4537", "value": "CVE-2022-4537"}, {"from": "security@apache.org", "to": "CVE-2022-47937", "value": "CVE-2022-47937"}, {"from": "product-security@apple.com", "to": "CVE-2023-27969", "value": "CVE-2023-27969"}, {"from": "product-security@apple.com", "to": "CVE-2023-28182", "value": "CVE-2023-28182"}, {"from": "product-security@apple.com", "to": "CVE-2023-27966", "value": "CVE-2023-27966"}, {"from": "product-security@apple.com", "to": "CVE-2023-27965", "value": "CVE-2023-27965"}, {"from": "product-security@apple.com", "to": "CVE-2023-27956", "value": "CVE-2023-27956"}, {"from": "product-security@apple.com", "to": "CVE-2023-27963", "value": "CVE-2023-27963"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0421", "value": "CVE-2023-0421"}, {"from": "security@apache.org", "to": "CVE-2023-31038", "value": "CVE-2023-31038"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-24957", "value": "CVE-2023-24957"}, {"from": "cna@cyber.gov.il", "to": "CVE-2023-31182", "value": "CVE-2023-31182"}, {"from": "product-security@axis.com", "to": "CVE-2023-21404", "value": "CVE-2023-21404"}, {"from": "cve@gitlab.com", "to": "CVE-2023-2478", "value": "CVE-2023-2478"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31123", "value": "CVE-2023-31123"}, {"from": "cna@cyber.gov.il", "to": "CVE-2023-31179", "value": "CVE-2023-31179"}, {"from": "cna@cyber.gov.il", "to": "CVE-2023-31178", "value": "CVE-2023-31178"}, {"from": "cna@cyber.gov.il", "to": "CVE-2023-24507", "value": "CVE-2023-24507"}, {"from": "cna@sap.com", "to": "CVE-2023-32112", "value": "CVE-2023-32112"}, {"from": "cna@sap.com", "to": "CVE-2023-32111", "value": "CVE-2023-32111"}, {"from": "cna@sap.com", "to": "CVE-2023-31404", "value": "CVE-2023-31404"}, {"from": "cna@sap.com", "to": "CVE-2023-31406", "value": "CVE-2023-31406"}, {"from": "cna@sap.com", "to": "CVE-2023-31407", "value": "CVE-2023-31407"}, {"from": "cna@sap.com", "to": "CVE-2023-30744", "value": "CVE-2023-30744"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29022", "value": "CVE-2023-29022"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29026", "value": "CVE-2023-29026"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29025", "value": "CVE-2023-29025"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29024", "value": "CVE-2023-29024"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29023", "value": "CVE-2023-29023"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29028", "value": "CVE-2023-29028"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29029", "value": "CVE-2023-29029"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29030", "value": "CVE-2023-29030"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29031", "value": "CVE-2023-29031"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29027", "value": "CVE-2023-29027"}, {"from": "cna@sap.com", "to": "CVE-2023-30743", "value": "CVE-2023-30743"}, {"from": "cna@sap.com", "to": "CVE-2023-30742", "value": "CVE-2023-30742"}, {"from": "cna@sap.com", "to": "CVE-2023-30741", "value": "CVE-2023-30741"}, {"from": "cna@sap.com", "to": "CVE-2023-30740", "value": "CVE-2023-30740"}, {"from": "cna@sap.com", "to": "CVE-2023-32113", "value": "CVE-2023-32113"}, {"from": "vulnreport@tenable.com", "to": "CVE-2023-2582", "value": "CVE-2023-2582"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2513", "value": "CVE-2023-2513"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23647", "value": "CVE-2023-23647"}, {"from": "cna@cyber.gov.il", "to": "CVE-2023-24506", "value": "CVE-2023-24506"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31129", "value": "CVE-2023-31129"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24905", "value": "CVE-2023-24905"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31140", "value": "CVE-2023-31140"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30844", "value": "CVE-2023-30844"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31127", "value": "CVE-2023-31127"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24932", "value": "CVE-2023-24932"}, {"from": "cna@cyber.gov.il", "to": "CVE-2023-24505", "value": "CVE-2023-24505"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31133", "value": "CVE-2023-31133"}, {"from": "productcert@siemens.com", "to": "CVE-2023-29128", "value": "CVE-2023-29128"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24939", "value": "CVE-2023-24939"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24904", "value": "CVE-2023-24904"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30840", "value": "CVE-2023-30840"}, {"from": "productcert@siemens.com", "to": "CVE-2023-29107", "value": "CVE-2023-29107"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24901", "value": "CVE-2023-24901"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31125", "value": "CVE-2023-31125"}, {"from": "productcert@siemens.com", "to": "CVE-2023-29106", "value": "CVE-2023-29106"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24902", "value": "CVE-2023-24902"}, {"from": "productcert@siemens.com", "to": "CVE-2023-29105", "value": "CVE-2023-29105"}, {"from": "productcert@siemens.com", "to": "CVE-2023-29104", "value": "CVE-2023-29104"}, {"from": "productcert@siemens.com", "to": "CVE-2023-29103", "value": "CVE-2023-29103"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24898", "value": "CVE-2023-24898"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24903", "value": "CVE-2023-24903"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24900", "value": "CVE-2023-24900"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24899", "value": "CVE-2023-24899"}, {"from": "productcert@siemens.com", "to": "CVE-2023-27410", "value": "CVE-2023-27410"}, {"from": "productcert@siemens.com", "to": "CVE-2023-27409", "value": "CVE-2023-27409"}, {"from": "productcert@siemens.com", "to": "CVE-2023-27408", "value": "CVE-2023-27408"}, {"from": "productcert@siemens.com", "to": "CVE-2023-27407", "value": "CVE-2023-27407"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31141", "value": "CVE-2023-31141"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2596", "value": "CVE-2023-2596"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2594", "value": "CVE-2023-2594"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2595", "value": "CVE-2023-2595"}, {"from": "psirt@esri.com", "to": "CVE-2023-25830", "value": "CVE-2023-25830"}, {"from": "productcert@siemens.com", "to": "CVE-2023-28832", "value": "CVE-2023-28832"}, {"from": "psirt@esri.com", "to": "CVE-2023-25829", "value": "CVE-2023-25829"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24948", "value": "CVE-2023-24948"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24949", "value": "CVE-2023-24949"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24950", "value": "CVE-2023-24950"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24946", "value": "CVE-2023-24946"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24945", "value": "CVE-2023-24945"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24947", "value": "CVE-2023-24947"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24943", "value": "CVE-2023-24943"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24944", "value": "CVE-2023-24944"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24940", "value": "CVE-2023-24940"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24941", "value": "CVE-2023-24941"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24942", "value": "CVE-2023-24942"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29335", "value": "CVE-2023-29335"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29333", "value": "CVE-2023-29333"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29325", "value": "CVE-2023-29325"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29324", "value": "CVE-2023-29324"}, {"from": "secure@microsoft.com", "to": "CVE-2023-28283", "value": "CVE-2023-28283"}, {"from": "secure@microsoft.com", "to": "CVE-2023-28290", "value": "CVE-2023-28290"}, {"from": "secure@microsoft.com", "to": "CVE-2023-28251", "value": "CVE-2023-28251"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23701", "value": "CVE-2023-23701"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23788", "value": "CVE-2023-23788"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22711", "value": "CVE-2023-22711"}, {"from": "audit@patchstack.com", "to": "CVE-2022-33961", "value": "CVE-2022-33961"}, {"from": "audit@patchstack.com", "to": "CVE-2022-46817", "value": "CVE-2022-46817"}, {"from": "audit@patchstack.com", "to": "CVE-2023-30746", "value": "CVE-2023-30746"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23812", "value": "CVE-2023-23812"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23789", "value": "CVE-2023-23789"}, {"from": "security@android.com", "to": "CVE-2023-21102", "value": "CVE-2023-21102"}, {"from": "security@android.com", "to": "CVE-2023-21103", "value": "CVE-2023-21103"}, {"from": "security@android.com", "to": "CVE-2023-21104", "value": "CVE-2023-21104"}, {"from": "security@mediatek.com", "to": "CVE-2023-20719", "value": "CVE-2023-20719"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23727", "value": "CVE-2023-23727"}, {"from": "security@mediatek.com", "to": "CVE-2023-20718", "value": "CVE-2023-20718"}, {"from": "security@android.com", "to": "CVE-2023-21116", "value": "CVE-2023-21116"}, {"from": "security@mediatek.com", "to": "CVE-2023-20717", "value": "CVE-2023-20717"}, {"from": "security@mediatek.com", "to": "CVE-2023-20711", "value": "CVE-2023-20711"}, {"from": "security@wordfence.com", "to": "CVE-2023-2548", "value": "CVE-2023-2548"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31145", "value": "CVE-2023-31145"}, {"from": "security@mediatek.com", "to": "CVE-2023-20710", "value": "CVE-2023-20710"}, {"from": "security@mediatek.com", "to": "CVE-2023-20694", "value": "CVE-2023-20694"}, {"from": "security@android.com", "to": "CVE-2023-21112", "value": "CVE-2023-21112"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31131", "value": "CVE-2023-31131"}, {"from": "security@mediatek.com", "to": "CVE-2023-20709", "value": "CVE-2023-20709"}, {"from": "security@mediatek.com", "to": "CVE-2023-20695", "value": "CVE-2023-20695"}, {"from": "security@android.com", "to": "CVE-2023-21111", "value": "CVE-2023-21111"}, {"from": "security@android.com", "to": "CVE-2023-21110", "value": "CVE-2023-21110"}, {"from": "security@android.com", "to": "CVE-2023-21109", "value": "CVE-2023-21109"}, {"from": "security@mediatek.com", "to": "CVE-2023-20705", "value": "CVE-2023-20705"}, {"from": "security@mediatek.com", "to": "CVE-2023-20706", "value": "CVE-2023-20706"}, {"from": "security@android.com", "to": "CVE-2023-21107", "value": "CVE-2023-21107"}, {"from": "security@android.com", "to": "CVE-2023-20930", "value": "CVE-2023-20930"}, {"from": "security@mediatek.com", "to": "CVE-2023-20707", "value": "CVE-2023-20707"}, {"from": "security@mediatek.com", "to": "CVE-2023-20697", "value": "CVE-2023-20697"}, {"from": "security@mediatek.com", "to": "CVE-2023-20696", "value": "CVE-2023-20696"}, {"from": "security@mediatek.com", "to": "CVE-2023-20708", "value": "CVE-2023-20708"}, {"from": "security@android.com", "to": "CVE-2023-21106", "value": "CVE-2023-21106"}, {"from": "security@android.com", "to": "CVE-2021-0877", "value": "CVE-2021-0877"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32068", "value": "CVE-2023-32068"}, {"from": "security@mediatek.com", "to": "CVE-2023-20698", "value": "CVE-2023-20698"}, {"from": "security@mediatek.com", "to": "CVE-2023-20699", "value": "CVE-2023-20699"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23720", "value": "CVE-2023-23720"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23709", "value": "CVE-2023-23709"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23673", "value": "CVE-2023-23673"}, {"from": "security@mediatek.com", "to": "CVE-2023-20701", "value": "CVE-2023-20701"}, {"from": "security@mediatek.com", "to": "CVE-2023-20721", "value": "CVE-2023-20721"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2124", "value": "CVE-2023-2124"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23657", "value": "CVE-2023-23657"}, {"from": "security@mediatek.com", "to": "CVE-2023-20673", "value": "CVE-2023-20673"}, {"from": "security@android.com", "to": "CVE-2023-21117", "value": "CVE-2023-21117"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23641", "value": "CVE-2023-23641"}, {"from": "security@wordfence.com", "to": "CVE-2023-2710", "value": "CVE-2023-2710"}, {"from": "security@wordfence.com", "to": "CVE-2023-2708", "value": "CVE-2023-2708"}, {"from": "security@mediatek.com", "to": "CVE-2023-20700", "value": "CVE-2023-20700"}, {"from": "security@mediatek.com", "to": "CVE-2023-20722", "value": "CVE-2023-20722"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2700", "value": "CVE-2023-2700"}, {"from": "security@mediatek.com", "to": "CVE-2023-20726", "value": "CVE-2023-20726"}, {"from": "cybersecurity@schneider-electric.com", "to": "CVE-2023-2161", "value": "CVE-2023-2161"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23703", "value": "CVE-2023-23703"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23676", "value": "CVE-2023-23676"}, {"from": "security@android.com", "to": "CVE-2023-20914", "value": "CVE-2023-20914"}, {"from": "security@synology.com", "to": "CVE-2023-32956", "value": "CVE-2023-32956"}, {"from": "security@synology.com", "to": "CVE-2023-32955", "value": "CVE-2023-32955"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32314", "value": "CVE-2023-32314"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32313", "value": "CVE-2023-32313"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32309", "value": "CVE-2023-32309"}, {"from": "security@wordfence.com", "to": "CVE-2023-2499", "value": "CVE-2023-2499"}, {"from": "security@mediatek.com", "to": "CVE-2023-20704", "value": "CVE-2023-20704"}, {"from": "security@mediatek.com", "to": "CVE-2023-20703", "value": "CVE-2023-20703"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32308", "value": "CVE-2023-32308"}, {"from": "security@mediatek.com", "to": "CVE-2023-20720", "value": "CVE-2023-20720"}, {"from": "security@android.com", "to": "CVE-2023-21118", "value": "CVE-2023-21118"}, {"from": "product-security@apple.com", "to": "CVE-2023-27928", "value": "CVE-2023-27928"}, {"from": "security@huntr.dev", "to": "CVE-2023-2730", "value": "CVE-2023-2730"}, {"from": "product-security@apple.com", "to": "CVE-2023-23543", "value": "CVE-2023-23543"}, {"from": "audit@patchstack.com", "to": "CVE-2022-32970", "value": "CVE-2022-32970"}, {"from": "security@otrs.com", "to": "CVE-2023-2534", "value": "CVE-2023-2534"}, {"from": "audit@patchstack.com", "to": "CVE-2023-24392", "value": "CVE-2023-24392"}, {"from": "audit@patchstack.com", "to": "CVE-2023-24418", "value": "CVE-2023-24418"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23786", "value": "CVE-2023-23786"}, {"from": "security@huntr.dev", "to": "CVE-2023-2614", "value": "CVE-2023-2614"}, {"from": "security@huntr.dev", "to": "CVE-2023-2615", "value": "CVE-2023-2615"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0514", "value": "CVE-2023-0514"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0526", "value": "CVE-2023-0526"}, {"from": "contact@wpscan.com", "to": "CVE-2023-1408", "value": "CVE-2023-1408"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0542", "value": "CVE-2023-0542"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0537", "value": "CVE-2023-0537"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29343", "value": "CVE-2023-29343"}, {"from": "psirt@wdc.com", "to": "CVE-2023-22813", "value": "CVE-2023-22813"}, {"from": "security@huntr.dev", "to": "CVE-2023-2609", "value": "CVE-2023-2609"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24955", "value": "CVE-2023-24955"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29338", "value": "CVE-2023-29338"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31138", "value": "CVE-2023-31138"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24954", "value": "CVE-2023-24954"}, {"from": "secure@microsoft.com", "to": "CVE-2023-24953", "value": "CVE-2023-24953"}, {"from": "audit@patchstack.com", "to": "CVE-2022-46861", "value": "CVE-2022-46861"}, {"from": "audit@patchstack.com", "to": "CVE-2022-46819", "value": "CVE-2022-46819"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31136", "value": "CVE-2023-31136"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31137", "value": "CVE-2023-31137"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31139", "value": "CVE-2023-31139"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31143", "value": "CVE-2023-31143"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32060", "value": "CVE-2023-32060"}, {"from": "psirt@esri.com", "to": "CVE-2023-25834", "value": "CVE-2023-25834"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32069", "value": "CVE-2023-32069"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32071", "value": "CVE-2023-32071"}, {"from": "psirt@esri.com", "to": "CVE-2023-25833", "value": "CVE-2023-25833"}, {"from": "support@hackerone.com", "to": "CVE-2023-28127", "value": "CVE-2023-28127"}, {"from": "support@hackerone.com", "to": "CVE-2023-28126", "value": "CVE-2023-28126"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31134", "value": "CVE-2023-31134"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29460", "value": "CVE-2023-29460"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29461", "value": "CVE-2023-29461"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31126", "value": "CVE-2023-31126"}, {"from": "support@hackerone.com", "to": "CVE-2023-28125", "value": "CVE-2023-28125"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29340", "value": "CVE-2023-29340"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29341", "value": "CVE-2023-29341"}, {"from": "psirt@esri.com", "to": "CVE-2023-25832", "value": "CVE-2023-25832"}, {"from": "psirt@esri.com", "to": "CVE-2023-25831", "value": "CVE-2023-25831"}, {"from": "secure@microsoft.com", "to": "CVE-2023-29336", "value": "CVE-2023-29336"}, {"from": "product-security@apple.com", "to": "CVE-2023-23542", "value": "CVE-2023-23542"}, {"from": "report@snyk.io", "to": "CVE-2023-26126", "value": "CVE-2023-26126"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47590", "value": "CVE-2022-47590"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47600", "value": "CVE-2022-47600"}, {"from": "psirt@amd.com", "to": "CVE-2021-26356", "value": "CVE-2021-26356"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47606", "value": "CVE-2022-47606"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47587", "value": "CVE-2022-47587"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47441", "value": "CVE-2022-47441"}, {"from": "audit@patchstack.com", "to": "CVE-2022-45846", "value": "CVE-2022-45846"}, {"from": "product-security@apple.com", "to": "CVE-2023-23541", "value": "CVE-2023-23541"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31144", "value": "CVE-2023-31144"}, {"from": "product-security@apple.com", "to": "CVE-2023-23540", "value": "CVE-2023-23540"}, {"from": "product-security@apple.com", "to": "CVE-2022-46720", "value": "CVE-2022-46720"}, {"from": "support@hackerone.com", "to": "CVE-2023-28317", "value": "CVE-2023-28317"}, {"from": "help@fluidattacks.com", "to": "CVE-2023-1031", "value": "CVE-2023-1031"}, {"from": "support@hackerone.com", "to": "CVE-2023-28318", "value": "CVE-2023-28318"}, {"from": "disclosure@synopsys.com", "to": "CVE-2023-2195", "value": "CVE-2023-2195"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32980", "value": "CVE-2023-32980"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30501", "value": "CVE-2023-30501"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30502", "value": "CVE-2023-30502"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32979", "value": "CVE-2023-32979"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30503", "value": "CVE-2023-30503"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30504", "value": "CVE-2023-30504"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30505", "value": "CVE-2023-30505"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30506", "value": "CVE-2023-30506"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32981", "value": "CVE-2023-32981"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32978", "value": "CVE-2023-32978"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-33000", "value": "CVE-2023-33000"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-33001", "value": "CVE-2023-33001"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30507", "value": "CVE-2023-30507"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-33002", "value": "CVE-2023-33002"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-33003", "value": "CVE-2023-33003"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32999", "value": "CVE-2023-32999"}, {"from": "secure@dell.com", "to": "CVE-2023-28076", "value": "CVE-2023-28076"}, {"from": "audit@patchstack.com", "to": "CVE-2023-29439", "value": "CVE-2023-29439"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-33007", "value": "CVE-2023-33007"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-33004", "value": "CVE-2023-33004"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-33006", "value": "CVE-2023-33006"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-33005", "value": "CVE-2023-33005"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32977", "value": "CVE-2023-32977"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30508", "value": "CVE-2023-30508"}, {"from": "disclosure@synopsys.com", "to": "CVE-2023-2196", "value": "CVE-2023-2196"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30510", "value": "CVE-2023-30510"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32996", "value": "CVE-2023-32996"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32986", "value": "CVE-2023-32986"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32995", "value": "CVE-2023-32995"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32987", "value": "CVE-2023-32987"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32994", "value": "CVE-2023-32994"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32988", "value": "CVE-2023-32988"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32989", "value": "CVE-2023-32989"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32990", "value": "CVE-2023-32990"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32991", "value": "CVE-2023-32991"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32993", "value": "CVE-2023-32993"}, {"from": "disclosure@synopsys.com", "to": "CVE-2023-2633", "value": "CVE-2023-2633"}, {"from": "disclosure@synopsys.com", "to": "CVE-2023-2631", "value": "CVE-2023-2631"}, {"from": "security-alert@hpe.com", "to": "CVE-2023-30509", "value": "CVE-2023-30509"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32992", "value": "CVE-2023-32992"}, {"from": "disclosure@synopsys.com", "to": "CVE-2023-2632", "value": "CVE-2023-2632"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2738", "value": "CVE-2023-2738"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2739", "value": "CVE-2023-2739"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2740", "value": "CVE-2023-2740"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32983", "value": "CVE-2023-32983"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32997", "value": "CVE-2023-32997"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32984", "value": "CVE-2023-32984"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32982", "value": "CVE-2023-32982"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32985", "value": "CVE-2023-32985"}, {"from": "jenkinsci-cert@googlegroups.com", "to": "CVE-2023-32998", "value": "CVE-2023-32998"}, {"from": "contact@wpscan.com", "to": "CVE-2023-0536", "value": "CVE-2023-0536"}, {"from": "support@hackerone.com", "to": "CVE-2023-28128", "value": "CVE-2023-28128"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-27888", "value": "CVE-2023-27888"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-27527", "value": "CVE-2023-27527"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-22361", "value": "CVE-2023-22361"}, {"from": "audit@patchstack.com", "to": "CVE-2023-28932", "value": "CVE-2023-28932"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22696", "value": "CVE-2023-22696"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23794", "value": "CVE-2023-23794"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23873", "value": "CVE-2023-23873"}, {"from": "audit@patchstack.com", "to": "CVE-2023-24406", "value": "CVE-2023-24406"}, {"from": "audit@patchstack.com", "to": "CVE-2023-27419", "value": "CVE-2023-27419"}, {"from": "audit@patchstack.com", "to": "CVE-2023-27455", "value": "CVE-2023-27455"}, {"from": "audit@patchstack.com", "to": "CVE-2023-29101", "value": "CVE-2023-29101"}, {"from": "audit@patchstack.com", "to": "CVE-2022-27856", "value": "CVE-2022-27856"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47137", "value": "CVE-2022-47137"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47423", "value": "CVE-2022-47423"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47436", "value": "CVE-2022-47436"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-27510", "value": "CVE-2023-27510"}, {"from": "xpdf@xpdfreader.com", "to": "CVE-2023-2664", "value": "CVE-2023-2664"}, {"from": "xpdf@xpdfreader.com", "to": "CVE-2023-2663", "value": "CVE-2023-2663"}, {"from": "security@selinc.com", "to": "CVE-2023-31160", "value": "CVE-2023-31160"}, {"from": "security@checkmk.com", "to": "CVE-2023-31208", "value": "CVE-2023-31208"}, {"from": "security@xen.org", "to": "CVE-2022-42336", "value": "CVE-2022-42336"}, {"from": "security@selinc.com", "to": "CVE-2023-31159", "value": "CVE-2023-31159"}, {"from": "security@wordfence.com", "to": "CVE-2023-2706", "value": "CVE-2023-2706"}, {"from": "security@wordfence.com", "to": "CVE-2023-2608", "value": "CVE-2023-2608"}, {"from": "security@huntr.dev", "to": "CVE-2023-2752", "value": "CVE-2023-2752"}, {"from": "security@huntr.dev", "to": "CVE-2023-2753", "value": "CVE-2023-2753"}, {"from": "security@huntr.dev", "to": "CVE-2023-2756", "value": "CVE-2023-2756"}, {"from": "cybersecurity@ch.abb.com", "to": "CVE-2023-0863", "value": "CVE-2023-0863"}, {"from": "security@wordfence.com", "to": "CVE-2023-2528", "value": "CVE-2023-2528"}, {"from": "cybersecurity@ch.abb.com", "to": "CVE-2023-0864", "value": "CVE-2023-0864"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29283", "value": "CVE-2023-29283"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29282", "value": "CVE-2023-29282"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29281", "value": "CVE-2023-29281"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-27385", "value": "CVE-2023-27385"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29278", "value": "CVE-2023-29278"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29276", "value": "CVE-2023-29276"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29277", "value": "CVE-2023-29277"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29279", "value": "CVE-2023-29279"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29280", "value": "CVE-2023-29280"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29275", "value": "CVE-2023-29275"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29274", "value": "CVE-2023-29274"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29273", "value": "CVE-2023-29273"}, {"from": "xpdf@xpdfreader.com", "to": "CVE-2023-2662", "value": "CVE-2023-2662"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-27889", "value": "CVE-2023-27889"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-27918", "value": "CVE-2023-27918"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2661", "value": "CVE-2023-2661"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2659", "value": "CVE-2023-2659"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2660", "value": "CVE-2023-2660"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2658", "value": "CVE-2023-2658"}, {"from": "audit@patchstack.com", "to": "CVE-2023-22720", "value": "CVE-2023-22720"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2657", "value": "CVE-2023-2657"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29284", "value": "CVE-2023-29284"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29285", "value": "CVE-2023-29285"}, {"from": "psirt@adobe.com", "to": "CVE-2023-29286", "value": "CVE-2023-29286"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2656", "value": "CVE-2023-2656"}, {"from": "security@huntr.dev", "to": "CVE-2023-2630", "value": "CVE-2023-2630"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32066", "value": "CVE-2023-32066"}, {"from": "security@octopus.com", "to": "CVE-2022-4008", "value": "CVE-2022-4008"}, {"from": "support@hackerone.com", "to": "CVE-2023-28316", "value": "CVE-2023-28316"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30837", "value": "CVE-2023-30837"}, {"from": "security-advisories@github.com", "to": "CVE-2023-30860", "value": "CVE-2023-30860"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-22441", "value": "CVE-2023-22441"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2617", "value": "CVE-2023-2617"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2618", "value": "CVE-2023-2618"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-23578", "value": "CVE-2023-23578"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-23901", "value": "CVE-2023-23901"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-24586", "value": "CVE-2023-24586"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-25070", "value": "CVE-2023-25070"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-25072", "value": "CVE-2023-25072"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-27919", "value": "CVE-2023-27919"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-25184", "value": "CVE-2023-25184"}, {"from": "security@selinc.com", "to": "CVE-2023-31155", "value": "CVE-2023-31155"}, {"from": "audit@patchstack.com", "to": "CVE-2023-30777", "value": "CVE-2023-30777"}, {"from": "security@selinc.com", "to": "CVE-2023-31154", "value": "CVE-2023-31154"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-23906", "value": "CVE-2023-23906"}, {"from": "security@selinc.com", "to": "CVE-2023-31153", "value": "CVE-2023-31153"}, {"from": "security@snowsoftware.com", "to": "CVE-2023-2679", "value": "CVE-2023-2679"}, {"from": "psirt@us.ibm.com", "to": "CVE-2023-30438", "value": "CVE-2023-30438"}, {"from": "security@checkmk.com", "to": "CVE-2023-22348", "value": "CVE-2023-22348"}, {"from": "cna@cloudflare.com", "to": "CVE-2023-1732", "value": "CVE-2023-1732"}, {"from": "security@huntr.dev", "to": "CVE-2023-2479", "value": "CVE-2023-2479"}, {"from": "security@selinc.com", "to": "CVE-2023-31166", "value": "CVE-2023-31166"}, {"from": "security@selinc.com", "to": "CVE-2023-31165", "value": "CVE-2023-31165"}, {"from": "security@selinc.com", "to": "CVE-2023-31164", "value": "CVE-2023-31164"}, {"from": "security@wordfence.com", "to": "CVE-2023-2745", "value": "CVE-2023-2745"}, {"from": "security@huntr.dev", "to": "CVE-2023-2629", "value": "CVE-2023-2629"}, {"from": "security@selinc.com", "to": "CVE-2023-31163", "value": "CVE-2023-31163"}, {"from": "security@selinc.com", "to": "CVE-2023-31158", "value": "CVE-2023-31158"}, {"from": "security@selinc.com", "to": "CVE-2023-31157", "value": "CVE-2023-31157"}, {"from": "security@selinc.com", "to": "CVE-2023-31156", "value": "CVE-2023-31156"}, {"from": "security@selinc.com", "to": "CVE-2023-31151", "value": "CVE-2023-31151"}, {"from": "security@selinc.com", "to": "CVE-2023-31148", "value": "CVE-2023-31148"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20046", "value": "CVE-2023-20046"}, {"from": "security@selinc.com", "to": "CVE-2023-31149", "value": "CVE-2023-31149"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20098", "value": "CVE-2023-20098"}, {"from": "PSIRT@rockwellautomation.com", "to": "CVE-2023-29462", "value": "CVE-2023-29462"}, {"from": "productcert@siemens.com", "to": "CVE-2023-30899", "value": "CVE-2023-30899"}, {"from": "productcert@siemens.com", "to": "CVE-2023-30986", "value": "CVE-2023-30986"}, {"from": "productcert@siemens.com", "to": "CVE-2023-30898", "value": "CVE-2023-30898"}, {"from": "productcert@siemens.com", "to": "CVE-2023-30985", "value": "CVE-2023-30985"}, {"from": "security@selinc.com", "to": "CVE-2023-31162", "value": "CVE-2023-31162"}, {"from": "security@selinc.com", "to": "CVE-2023-31161", "value": "CVE-2023-31161"}, {"from": "security@selinc.com", "to": "CVE-2023-31152", "value": "CVE-2023-31152"}, {"from": "security@selinc.com", "to": "CVE-2023-31150", "value": "CVE-2023-31150"}, {"from": "psirt@paloaltonetworks.com", "to": "CVE-2023-0008", "value": "CVE-2023-0008"}, {"from": "security@selinc.com", "to": "CVE-2023-2310", "value": "CVE-2023-2310"}, {"from": "psirt@paloaltonetworks.com", "to": "CVE-2023-0007", "value": "CVE-2023-0007"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32070", "value": "CVE-2023-32070"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2642", "value": "CVE-2023-2642"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2641", "value": "CVE-2023-2641"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2653", "value": "CVE-2023-2653"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2652", "value": "CVE-2023-2652"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2648", "value": "CVE-2023-2648"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2643", "value": "CVE-2023-2643"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2647", "value": "CVE-2023-2647"}, {"from": "security@asustor.com", "to": "CVE-2023-2509", "value": "CVE-2023-2509"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2722", "value": "CVE-2023-2722"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2725", "value": "CVE-2023-2725"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2724", "value": "CVE-2023-2724"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2721", "value": "CVE-2023-2721"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2723", "value": "CVE-2023-2723"}, {"from": "chrome-cve-admin@google.com", "to": "CVE-2023-2726", "value": "CVE-2023-2726"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2156", "value": "CVE-2023-2156"}, {"from": "security@acronis.com", "to": "CVE-2022-45450", "value": "CVE-2022-45450"}, {"from": "security@acronis.com", "to": "CVE-2022-45452", "value": "CVE-2022-45452"}, {"from": "security@acronis.com", "to": "CVE-2022-4418", "value": "CVE-2022-4418"}, {"from": "security-advisories@github.com", "to": "CVE-2023-26044", "value": "CVE-2023-26044"}, {"from": "security@acronis.com", "to": "CVE-2022-45457", "value": "CVE-2022-45457"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20162", "value": "CVE-2023-20162"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20163", "value": "CVE-2023-20163"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23999", "value": "CVE-2023-23999"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20164", "value": "CVE-2023-20164"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20166", "value": "CVE-2023-20166"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20167", "value": "CVE-2023-20167"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20171", "value": "CVE-2023-20171"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20161", "value": "CVE-2023-20161"}, {"from": "audit@patchstack.com", "to": "CVE-2023-23667", "value": "CVE-2023-23667"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20173", "value": "CVE-2023-20173"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20174", "value": "CVE-2023-20174"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20182", "value": "CVE-2023-20182"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20183", "value": "CVE-2023-20183"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20189", "value": "CVE-2023-20189"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2203", "value": "CVE-2023-2203"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2295", "value": "CVE-2023-2295"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20172", "value": "CVE-2023-20172"}, {"from": "security@acronis.com", "to": "CVE-2022-45453", "value": "CVE-2022-45453"}, {"from": "audit@patchstack.com", "to": "CVE-2022-47157", "value": "CVE-2022-47157"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2491", "value": "CVE-2023-2491"}, {"from": "security@acronis.com", "to": "CVE-2022-45458", "value": "CVE-2022-45458"}, {"from": "security@acronis.com", "to": "CVE-2022-45459", "value": "CVE-2022-45459"}, {"from": "secalert@redhat.com", "to": "CVE-2023-1859", "value": "CVE-2023-1859"}, {"from": "secalert@redhat.com", "to": "CVE-2023-1972", "value": "CVE-2023-1972"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2319", "value": "CVE-2023-2319"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20003", "value": "CVE-2023-20003"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20024", "value": "CVE-2023-20024"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20160", "value": "CVE-2023-20160"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20077", "value": "CVE-2023-20077"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25698", "value": "CVE-2023-25698"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20106", "value": "CVE-2023-20106"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20110", "value": "CVE-2023-20110"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20156", "value": "CVE-2023-20156"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20157", "value": "CVE-2023-20157"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20158", "value": "CVE-2023-20158"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20159", "value": "CVE-2023-20159"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20087", "value": "CVE-2023-20087"}, {"from": "psirt@cisco.com", "to": "CVE-2023-20184", "value": "CVE-2023-20184"}, {"from": "security@octopus.com", "to": "CVE-2022-4870", "value": "CVE-2022-4870"}, {"from": "security@wordfence.com", "to": "CVE-2023-2757", "value": "CVE-2023-2757"}, {"from": "security@acronis.com", "to": "CVE-2023-2782", "value": "CVE-2023-2782"}, {"from": "security@huntr.dev", "to": "CVE-2023-2780", "value": "CVE-2023-2780"}, {"from": "secalert@redhat.com", "to": "CVE-2023-2731", "value": "CVE-2023-2731"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2776", "value": "CVE-2023-2776"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2775", "value": "CVE-2023-2775"}, {"from": "audit@patchstack.com", "to": "CVE-2023-27423", "value": "CVE-2023-27423"}, {"from": "audit@patchstack.com", "to": "CVE-2023-27430", "value": "CVE-2023-27430"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2774", "value": "CVE-2023-2774"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2773", "value": "CVE-2023-2773"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2772", "value": "CVE-2023-2772"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2771", "value": "CVE-2023-2771"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2770", "value": "CVE-2023-2770"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2769", "value": "CVE-2023-2769"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2768", "value": "CVE-2023-2768"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2766", "value": "CVE-2023-2766"}, {"from": "audit@patchstack.com", "to": "CVE-2023-32515", "value": "CVE-2023-32515"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2765", "value": "CVE-2023-2765"}, {"from": "audit@patchstack.com", "to": "CVE-2023-31233", "value": "CVE-2023-31233"}, {"from": "security-advisories@github.com", "to": "CVE-2023-31135", "value": "CVE-2023-31135"}, {"from": "audit@patchstack.com", "to": "CVE-2023-30868", "value": "CVE-2023-30868"}, {"from": "audit@patchstack.com", "to": "CVE-2023-30780", "value": "CVE-2023-30780"}, {"from": "audit@patchstack.com", "to": "CVE-2023-30487", "value": "CVE-2023-30487"}, {"from": "vultures@jpcert.or.jp", "to": "CVE-2023-28369", "value": "CVE-2023-28369"}, {"from": "secure@intel.com", "to": "CVE-2022-21804", "value": "CVE-2022-21804"}, {"from": "secure@intel.com", "to": "CVE-2022-21239", "value": "CVE-2022-21239"}, {"from": "secure@intel.com", "to": "CVE-2022-21162", "value": "CVE-2022-21162"}, {"from": "audit@patchstack.com", "to": "CVE-2023-32243", "value": "CVE-2023-32243"}, {"from": "psirt@amd.com", "to": "CVE-2021-26397", "value": "CVE-2021-26397"}, {"from": "secure@intel.com", "to": "CVE-2022-30338", "value": "CVE-2022-30338"}, {"from": "secure@intel.com", "to": "CVE-2022-29919", "value": "CVE-2022-29919"}, {"from": "secure@intel.com", "to": "CVE-2022-29508", "value": "CVE-2022-29508"}, {"from": "secure@intel.com", "to": "CVE-2022-25976", "value": "CVE-2022-25976"}, {"from": "secure@intel.com", "to": "CVE-2022-40685", "value": "CVE-2022-40685"}, {"from": "secure@intel.com", "to": "CVE-2022-40210", "value": "CVE-2022-40210"}, {"from": "secure@intel.com", "to": "CVE-2022-41808", "value": "CVE-2022-41808"}, {"from": "secure@intel.com", "to": "CVE-2022-41771", "value": "CVE-2022-41771"}, {"from": "secure@intel.com", "to": "CVE-2022-41699", "value": "CVE-2022-41699"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32322", "value": "CVE-2023-32322"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2789", "value": "CVE-2023-2789"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2790", "value": "CVE-2023-2790"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2799", "value": "CVE-2023-2799"}, {"from": "security@huntr.dev", "to": "CVE-2023-2800", "value": "CVE-2023-2800"}, {"from": "psirt@wdc.com", "to": "CVE-2022-29840", "value": "CVE-2022-29840"}, {"from": "audit@patchstack.com", "to": "CVE-2023-2490", "value": "CVE-2023-2490"}, {"from": "secure@intel.com", "to": "CVE-2023-22661", "value": "CVE-2023-22661"}, {"from": "secure@intel.com", "to": "CVE-2023-22443", "value": "CVE-2023-22443"}, {"from": "secure@intel.com", "to": "CVE-2023-22442", "value": "CVE-2023-22442"}, {"from": "secure@intel.com", "to": "CVE-2023-22379", "value": "CVE-2023-22379"}, {"from": "secure@intel.com", "to": "CVE-2023-22297", "value": "CVE-2023-22297"}, {"from": "secure@intel.com", "to": "CVE-2022-40974", "value": "CVE-2022-40974"}, {"from": "secure@intel.com", "to": "CVE-2022-38103", "value": "CVE-2022-38103"}, {"from": "secure@intel.com", "to": "CVE-2022-40972", "value": "CVE-2022-40972"}, {"from": "secure@intel.com", "to": "CVE-2022-41621", "value": "CVE-2022-41621"}, {"from": "secure@intel.com", "to": "CVE-2022-41979", "value": "CVE-2022-41979"}, {"from": "secure@intel.com", "to": "CVE-2022-42878", "value": "CVE-2022-42878"}, {"from": "secure@intel.com", "to": "CVE-2022-43465", "value": "CVE-2022-43465"}, {"from": "secure@intel.com", "to": "CVE-2022-43475", "value": "CVE-2022-43475"}, {"from": "secure@intel.com", "to": "CVE-2022-44610", "value": "CVE-2022-44610"}, {"from": "product-security@silabs.com", "to": "CVE-2023-32098", "value": "CVE-2023-32098"}, {"from": "product-security@silabs.com", "to": "CVE-2023-32096", "value": "CVE-2023-32096"}, {"from": "product-security@silabs.com", "to": "CVE-2023-32097", "value": "CVE-2023-32097"}, {"from": "product-security@silabs.com", "to": "CVE-2023-1132", "value": "CVE-2023-1132"}, {"from": "product-security@silabs.com", "to": "CVE-2023-32100", "value": "CVE-2023-32100"}, {"from": "psirt@wdc.com", "to": "CVE-2022-36328", "value": "CVE-2022-36328"}, {"from": "product-security@silabs.com", "to": "CVE-2023-0965", "value": "CVE-2023-0965"}, {"from": "psirt@wdc.com", "to": "CVE-2022-36326", "value": "CVE-2022-36326"}, {"from": "product-security@silabs.com", "to": "CVE-2023-2481", "value": "CVE-2023-2481"}, {"from": "product-security@silabs.com", "to": "CVE-2023-32099", "value": "CVE-2023-32099"}, {"from": "psirt@wdc.com", "to": "CVE-2022-36327", "value": "CVE-2022-36327"}, {"from": "audit@patchstack.com", "to": "CVE-2023-25460", "value": "CVE-2023-25460"}, {"from": "audit@patchstack.com", "to": "CVE-2023-28414", "value": "CVE-2023-28414"}, {"from": "secure@intel.com", "to": "CVE-2022-33963", "value": "CVE-2022-33963"}, {"from": "secure@intel.com", "to": "CVE-2022-33894", "value": "CVE-2022-33894"}, {"from": "product-security@apple.com", "to": "CVE-2023-23535", "value": "CVE-2023-23535"}, {"from": "productsecurity@jci.com", "to": "CVE-2023-2024", "value": "CVE-2023-2024"}, {"from": "productsecurity@jci.com", "to": "CVE-2023-2025", "value": "CVE-2023-2025"}, {"from": "product-security@apple.com", "to": "CVE-2023-28181", "value": "CVE-2023-28181"}, {"from": "product-security@apple.com", "to": "CVE-2023-27945", "value": "CVE-2023-27945"}, {"from": "product-security@apple.com", "to": "CVE-2023-23532", "value": "CVE-2023-23532"}, {"from": "psirt@wdc.com", "to": "CVE-2022-29842", "value": "CVE-2022-29842"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32080", "value": "CVE-2023-32080"}, {"from": "psirt@wdc.com", "to": "CVE-2022-36329", "value": "CVE-2022-36329"}, {"from": "cve-assign@fb.com", "to": "CVE-2022-36937", "value": "CVE-2022-36937"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32076", "value": "CVE-2023-32076"}, {"from": "talos-cna@cisco.com", "to": "CVE-2022-41985", "value": "CVE-2022-41985"}, {"from": "talos-cna@cisco.com", "to": "CVE-2022-46378", "value": "CVE-2022-46378"}, {"from": "talos-cna@cisco.com", "to": "CVE-2022-46377", "value": "CVE-2022-46377"}, {"from": "cve-assign@fb.com", "to": "CVE-2023-23556", "value": "CVE-2023-23556"}, {"from": "cve-assign@fb.com", "to": "CVE-2023-30470", "value": "CVE-2023-30470"}, {"from": "cve-assign@fb.com", "to": "CVE-2023-25933", "value": "CVE-2023-25933"}, {"from": "secalert@redhat.com", "to": "CVE-2023-1195", "value": "CVE-2023-1195"}, {"from": "cve-assign@fb.com", "to": "CVE-2023-23557", "value": "CVE-2023-23557"}, {"from": "cve-assign@fb.com", "to": "CVE-2023-23759", "value": "CVE-2023-23759"}, {"from": "cve-assign@fb.com", "to": "CVE-2023-24833", "value": "CVE-2023-24833"}, {"from": "cve-assign@fb.com", "to": "CVE-2023-28081", "value": "CVE-2023-28081"}, {"from": "cve-assign@fb.com", "to": "CVE-2023-28753", "value": "CVE-2023-28753"}, {"from": "cve-assign@fb.com", "to": "CVE-2023-24832", "value": "CVE-2023-24832"}, {"from": "secure@intel.com", "to": "CVE-2022-32766", "value": "CVE-2022-32766"}, {"from": "secure@intel.com", "to": "CVE-2022-38087", "value": "CVE-2022-38087"}, {"from": "secure@intel.com", "to": "CVE-2022-32582", "value": "CVE-2022-32582"}, {"from": "secure@intel.com", "to": "CVE-2022-37409", "value": "CVE-2022-37409"}, {"from": "secure@intel.com", "to": "CVE-2023-23909", "value": "CVE-2023-23909"}, {"from": "secure@intel.com", "to": "CVE-2023-28411", "value": "CVE-2023-28411"}, {"from": "secure@intel.com", "to": "CVE-2023-23910", "value": "CVE-2023-23910"}, {"from": "secure@intel.com", "to": "CVE-2023-23569", "value": "CVE-2023-23569"}, {"from": "secure@intel.com", "to": "CVE-2022-44619", "value": "CVE-2022-44619"}, {"from": "secure@intel.com", "to": "CVE-2023-23580", "value": "CVE-2023-23580"}, {"from": "secure@intel.com", "to": "CVE-2023-25175", "value": "CVE-2023-25175"}, {"from": "secure@intel.com", "to": "CVE-2023-25545", "value": "CVE-2023-25545"}, {"from": "secure@intel.com", "to": "CVE-2023-24475", "value": "CVE-2023-24475"}, {"from": "secure@intel.com", "to": "CVE-2022-45128", "value": "CVE-2022-45128"}, {"from": "secure@intel.com", "to": "CVE-2022-42465", "value": "CVE-2022-42465"}, {"from": "secure@intel.com", "to": "CVE-2022-41784", "value": "CVE-2022-41784"}, {"from": "secure@intel.com", "to": "CVE-2022-41658", "value": "CVE-2022-41658"}, {"from": "security-advisories@github.com", "to": "CVE-2023-32680", "value": "CVE-2023-32680"}, {"from": "secure@microsoft.com", "to": "CVE-2022-35798", "value": "CVE-2022-35798"}, {"from": "security-advisories@github.com", "to": "CVE-2023-25568", "value": "CVE-2023-25568"}, {"from": "secure@intel.com", "to": "CVE-2023-25776", "value": "CVE-2023-25776"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2672", "value": "CVE-2023-2672"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2671", "value": "CVE-2023-2671"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2667", "value": "CVE-2023-2667"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2668", "value": "CVE-2023-2668"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2670", "value": "CVE-2023-2670"}, {"from": "cna@vuldb.com", "to": "CVE-2023-2669", "value": "CVE-2023-2669"}, {"from": "security-advisories@github.com", "to": "CVE-2023-24805", "value": "CVE-2023-24805"}, {"from": "secalert@redhat.com", "to": "CVE-2023-1729", "value": "CVE-2023-1729"}, {"from": "security@wordfence.com", "to": "CVE-2023-2704", "value": "CVE-2023-2704"}, {"from": "Mitsubishielectric.Psirt@yd.MitsubishiElectric.co.jp", "to": "CVE-2023-1618", "value": "CVE-2023-1618"}]);
nodeColors = {};
allNodes = nodes.get({ returnType: "Object" });
for (nodeId in allNodes) {
nodeColors[nodeId] = allNodes[nodeId].color;
}
allEdges = edges.get({ returnType: "Object" });
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": false
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": true,
"type": "dynamic"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>