Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2022-4450 (GCVE-0-2022-4450)
Vulnerability from cvelistv5 – Published: 2023-02-08 19:04 – Updated: 2025-11-04 19:14- double-free
- CWE-415 - Double Free
{
"containers": {
"adp": [
{
"providerMetadata": {
"dateUpdated": "2025-11-04T19:14:13.257Z",
"orgId": "af854a3a-2127-422b-91ae-364da2661108",
"shortName": "CVE"
},
"references": [
{
"name": "OpenSSL Advisory",
"tags": [
"vendor-advisory",
"x_transferred"
],
"url": "https://www.openssl.org/news/secadv/20230207.txt"
},
{
"name": "3.0.8 git commit",
"tags": [
"patch",
"x_transferred"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83"
},
{
"name": "1.1.1t git commit",
"tags": [
"patch",
"x_transferred"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b"
},
{
"tags": [
"x_transferred"
],
"url": "https://security.gentoo.org/glsa/202402-08"
},
{
"url": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0003"
}
],
"title": "CVE Program Container"
},
{
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
}
},
{
"other": {
"content": {
"id": "CVE-2022-4450",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2025-04-23T13:26:38.705489Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-415",
"description": "CWE-415 Double Free",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2025-08-27T20:32:52.583Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "OpenSSL",
"vendor": "OpenSSL",
"versions": [
{
"lessThan": "3.0.8",
"status": "affected",
"version": "3.0.0",
"versionType": "semver"
},
{
"lessThan": "1.1.1t",
"status": "affected",
"version": "1.1.1",
"versionType": "custom"
}
]
}
],
"credits": [
{
"lang": "en",
"type": "finder",
"user": "00000000-0000-4000-9000-000000000000",
"value": "CarpetFuzz"
},
{
"lang": "en",
"type": "reporter",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Dawei Wang"
},
{
"lang": "en",
"type": "reporter",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Marc Sch\u00f6nefeld"
},
{
"lang": "en",
"type": "remediation developer",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Kurt Roeckx"
},
{
"lang": "en",
"type": "remediation developer",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Matt Caswell"
}
],
"datePublic": "2023-02-07T00:00:00.000Z",
"descriptions": [
{
"lang": "en",
"supportingMedia": [
{
"base64": false,
"type": "text/html",
"value": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\u003cbr\u003edecodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data.\u003cbr\u003eIf the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\u003cbr\u003epopulated with pointers to buffers containing the relevant decoded data. The\u003cbr\u003ecaller is responsible for freeing those buffers. It is possible to construct a\u003cbr\u003ePEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\u003cbr\u003ewill return a failure code but will populate the header argument with a pointer\u003cbr\u003eto a buffer that has already been freed. If the caller also frees this buffer\u003cbr\u003ethen a double free will occur. This will most likely lead to a crash. This\u003cbr\u003ecould be exploited by an attacker who has the ability to supply malicious PEM\u003cbr\u003efiles for parsing to achieve a denial of service attack.\u003cbr\u003e\u003cbr\u003eThe functions PEM_read_bio() and PEM_read() are simple wrappers around\u003cbr\u003ePEM_read_bio_ex() and therefore these functions are also directly affected.\u003cbr\u003e\u003cbr\u003eThese functions are also called indirectly by a number of other OpenSSL\u003cbr\u003efunctions including PEM_X509_INFO_read_bio_ex() and\u003cbr\u003eSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\u003cbr\u003euses of these functions are not vulnerable because the caller does not free the\u003cbr\u003eheader argument if PEM_read_bio_ex() returns a failure code. These locations\u003cbr\u003einclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\u003cbr\u003eOpenSSL 3.0.\u003cbr\u003e\u003cbr\u003e\u003cdiv\u003eThe OpenSSL asn1parse command line application is also impacted by this issue.\u003c/div\u003e\u003cbr\u003e"
}
],
"value": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\ndecodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data.\nIf the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\npopulated with pointers to buffers containing the relevant decoded data. The\ncaller is responsible for freeing those buffers. It is possible to construct a\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\nwill return a failure code but will populate the header argument with a pointer\nto a buffer that has already been freed. If the caller also frees this buffer\nthen a double free will occur. This will most likely lead to a crash. This\ncould be exploited by an attacker who has the ability to supply malicious PEM\nfiles for parsing to achieve a denial of service attack.\n\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\nPEM_read_bio_ex() and therefore these functions are also directly affected.\n\nThese functions are also called indirectly by a number of other OpenSSL\nfunctions including PEM_X509_INFO_read_bio_ex() and\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\nuses of these functions are not vulnerable because the caller does not free the\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\nOpenSSL 3.0.\n\nThe OpenSSL asn1parse command line application is also impacted by this issue."
}
],
"metrics": [
{
"format": "other",
"other": {
"content": {
"text": "Moderate"
},
"type": "https://www.openssl.org/policies/secpolicy.html"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"description": "double-free",
"lang": "en"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2024-02-04T09:06:50.535Z",
"orgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5",
"shortName": "openssl"
},
"references": [
{
"name": "OpenSSL Advisory",
"tags": [
"vendor-advisory"
],
"url": "https://www.openssl.org/news/secadv/20230207.txt"
},
{
"name": "3.0.8 git commit",
"tags": [
"patch"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83"
},
{
"name": "1.1.1t git commit",
"tags": [
"patch"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b"
},
{
"url": "https://security.gentoo.org/glsa/202402-08"
}
],
"source": {
"discovery": "UNKNOWN"
},
"title": "Double free after calling PEM_read_bio_ex",
"x_generator": {
"engine": "Vulnogram 0.1.0-dev"
}
}
},
"cveMetadata": {
"assignerOrgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5",
"assignerShortName": "openssl",
"cveId": "CVE-2022-4450",
"datePublished": "2023-02-08T19:04:04.874Z",
"dateReserved": "2022-12-13T13:38:08.598Z",
"dateUpdated": "2025-11-04T19:14:13.257Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2022-4450",
"date": "2026-06-06",
"epss": "0.00147",
"percentile": "0.34982"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2022-4450\",\"sourceIdentifier\":\"openssl-security@openssl.org\",\"published\":\"2023-02-08T20:15:23.973\",\"lastModified\":\"2025-11-04T20:16:15.060\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\\ndecodes the \\\"name\\\" (e.g. \\\"CERTIFICATE\\\"), any header data and the payload data.\\nIf the function succeeds then the \\\"name_out\\\", \\\"header\\\" and \\\"data\\\" arguments are\\npopulated with pointers to buffers containing the relevant decoded data. The\\ncaller is responsible for freeing those buffers. It is possible to construct a\\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\\nwill return a failure code but will populate the header argument with a pointer\\nto a buffer that has already been freed. If the caller also frees this buffer\\nthen a double free will occur. This will most likely lead to a crash. This\\ncould be exploited by an attacker who has the ability to supply malicious PEM\\nfiles for parsing to achieve a denial of service attack.\\n\\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\\nPEM_read_bio_ex() and therefore these functions are also directly affected.\\n\\nThese functions are also called indirectly by a number of other OpenSSL\\nfunctions including PEM_X509_INFO_read_bio_ex() and\\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\\nuses of these functions are not vulnerable because the caller does not free the\\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\\nOpenSSL 3.0.\\n\\nThe OpenSSL asn1parse command line application is also impacted by this issue.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":7.5,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.6},{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":7.5,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-415\"}]},{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-415\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"1.1.1\",\"versionEndExcluding\":\"1.1.1t\",\"matchCriteriaId\":\"DE0061D6-8F81-45D3-B254-82A94915FD08\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"3.0.0\",\"versionEndExcluding\":\"3.0.8\",\"matchCriteriaId\":\"A6DC5D88-4E99-48F2-8892-610ACA9B5B86\"}]}]},{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:stormshield:stormshield_network_security:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.0.0\",\"versionEndExcluding\":\"4.3.16\",\"matchCriteriaId\":\"F7794B42-8235-4C75-866F-5D0A405F0989\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:stormshield:stormshield_network_security:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.4.0\",\"versionEndExcluding\":\"4.6.3\",\"matchCriteriaId\":\"C8A23A5D-928A-4225-9C93-31E5DFE215A7\"}]}]}],\"references\":[{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://security.gentoo.org/glsa/202402-08\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://www.openssl.org/news/secadv/20230207.txt\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0003\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\"},{\"url\":\"https://security.gentoo.org/glsa/202402-08\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\"},{\"url\":\"https://www.openssl.org/news/secadv/20230207.txt\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Vendor Advisory\"]}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CVE Program Container\", \"references\": [{\"url\": \"https://www.openssl.org/news/secadv/20230207.txt\", \"name\": \"OpenSSL Advisory\", \"tags\": [\"vendor-advisory\", \"x_transferred\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\", \"name\": \"3.0.8 git commit\", \"tags\": [\"patch\", \"x_transferred\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\", \"name\": \"1.1.1t git commit\", \"tags\": [\"patch\", \"x_transferred\"]}, {\"url\": \"https://security.gentoo.org/glsa/202402-08\", \"tags\": [\"x_transferred\"]}, {\"url\": \"https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0003\"}], \"providerMetadata\": {\"orgId\": \"af854a3a-2127-422b-91ae-364da2661108\", \"shortName\": \"CVE\", \"dateUpdated\": \"2025-11-04T19:14:13.257Z\"}}, {\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 7.5, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"HIGH\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\", \"integrityImpact\": \"NONE\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"HIGH\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"NONE\"}}, {\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2022-4450\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2025-04-23T13:26:38.705489Z\"}}}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-415\", \"description\": \"CWE-415 Double Free\"}]}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2025-05-05T13:07:11.576Z\"}}], \"cna\": {\"title\": \"Double free after calling PEM_read_bio_ex\", \"source\": {\"discovery\": \"UNKNOWN\"}, \"credits\": [{\"lang\": \"en\", \"type\": \"finder\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"CarpetFuzz\"}, {\"lang\": \"en\", \"type\": \"reporter\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Dawei Wang\"}, {\"lang\": \"en\", \"type\": \"reporter\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Marc Sch\\u00f6nefeld\"}, {\"lang\": \"en\", \"type\": \"remediation developer\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Kurt Roeckx\"}, {\"lang\": \"en\", \"type\": \"remediation developer\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Matt Caswell\"}], \"metrics\": [{\"other\": {\"type\": \"https://www.openssl.org/policies/secpolicy.html\", \"content\": {\"text\": \"Moderate\"}}, \"format\": \"other\"}], \"affected\": [{\"vendor\": \"OpenSSL\", \"product\": \"OpenSSL\", \"versions\": [{\"status\": \"affected\", \"version\": \"3.0.0\", \"lessThan\": \"3.0.8\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"1.1.1\", \"lessThan\": \"1.1.1t\", \"versionType\": \"custom\"}], \"defaultStatus\": \"unaffected\"}], \"datePublic\": \"2023-02-07T00:00:00.000Z\", \"references\": [{\"url\": \"https://www.openssl.org/news/secadv/20230207.txt\", \"name\": \"OpenSSL Advisory\", \"tags\": [\"vendor-advisory\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\", \"name\": \"3.0.8 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\", \"name\": \"1.1.1t git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://security.gentoo.org/glsa/202402-08\"}], \"x_generator\": {\"engine\": \"Vulnogram 0.1.0-dev\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\\ndecodes the \\\"name\\\" (e.g. \\\"CERTIFICATE\\\"), any header data and the payload data.\\nIf the function succeeds then the \\\"name_out\\\", \\\"header\\\" and \\\"data\\\" arguments are\\npopulated with pointers to buffers containing the relevant decoded data. The\\ncaller is responsible for freeing those buffers. It is possible to construct a\\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\\nwill return a failure code but will populate the header argument with a pointer\\nto a buffer that has already been freed. If the caller also frees this buffer\\nthen a double free will occur. This will most likely lead to a crash. This\\ncould be exploited by an attacker who has the ability to supply malicious PEM\\nfiles for parsing to achieve a denial of service attack.\\n\\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\\nPEM_read_bio_ex() and therefore these functions are also directly affected.\\n\\nThese functions are also called indirectly by a number of other OpenSSL\\nfunctions including PEM_X509_INFO_read_bio_ex() and\\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\\nuses of these functions are not vulnerable because the caller does not free the\\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\\nOpenSSL 3.0.\\n\\nThe OpenSSL asn1parse command line application is also impacted by this issue.\", \"supportingMedia\": [{\"type\": \"text/html\", \"value\": \"The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\u003cbr\u003edecodes the \\\"name\\\" (e.g. \\\"CERTIFICATE\\\"), any header data and the payload data.\u003cbr\u003eIf the function succeeds then the \\\"name_out\\\", \\\"header\\\" and \\\"data\\\" arguments are\u003cbr\u003epopulated with pointers to buffers containing the relevant decoded data. The\u003cbr\u003ecaller is responsible for freeing those buffers. It is possible to construct a\u003cbr\u003ePEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\u003cbr\u003ewill return a failure code but will populate the header argument with a pointer\u003cbr\u003eto a buffer that has already been freed. If the caller also frees this buffer\u003cbr\u003ethen a double free will occur. This will most likely lead to a crash. This\u003cbr\u003ecould be exploited by an attacker who has the ability to supply malicious PEM\u003cbr\u003efiles for parsing to achieve a denial of service attack.\u003cbr\u003e\u003cbr\u003eThe functions PEM_read_bio() and PEM_read() are simple wrappers around\u003cbr\u003ePEM_read_bio_ex() and therefore these functions are also directly affected.\u003cbr\u003e\u003cbr\u003eThese functions are also called indirectly by a number of other OpenSSL\u003cbr\u003efunctions including PEM_X509_INFO_read_bio_ex() and\u003cbr\u003eSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\u003cbr\u003euses of these functions are not vulnerable because the caller does not free the\u003cbr\u003eheader argument if PEM_read_bio_ex() returns a failure code. These locations\u003cbr\u003einclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\u003cbr\u003eOpenSSL 3.0.\u003cbr\u003e\u003cbr\u003e\u003cdiv\u003eThe OpenSSL asn1parse command line application is also impacted by this issue.\u003c/div\u003e\u003cbr\u003e\", \"base64\": false}]}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"description\": \"double-free\"}]}], \"providerMetadata\": {\"orgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"shortName\": \"openssl\", \"dateUpdated\": \"2024-02-04T09:06:50.535Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2022-4450\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2025-11-04T19:14:13.257Z\", \"dateReserved\": \"2022-12-13T13:38:08.598Z\", \"assignerOrgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"datePublished\": \"2023-02-08T19:04:04.874Z\", \"assignerShortName\": \"openssl\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
SUSE-SU-2023:0309-1
Vulnerability from csaf_suse - Published: 2023-02-07 16:34 - Updated: 2023-02-07 16:34| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for openssl-1_1",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for openssl-1_1 fixes the following issues:\n\n- CVE-2023-0286: Fixed X.400 address type confusion in X.509 GENERAL_NAME_cmp for x400Address (bsc#1207533).\n- CVE-2023-0215: Fixed use-after-free following BIO_new_NDEF() (bsc#1207536).\n- CVE-2022-4450: Fixed double free after calling PEM_read_bio_ex() (bsc#1207538).\n- CVE-2022-4304: Fixed timing Oracle in RSA Decryption (bsc#1207534).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2023-309,SUSE-OpenStack-Cloud-9-2023-309,SUSE-OpenStack-Cloud-Crowbar-9-2023-309,SUSE-SLE-SAP-12-SP4-2023-309,SUSE-SLE-SDK-12-SP5-2023-309,SUSE-SLE-SERVER-12-SP4-LTSS-2023-309,SUSE-SLE-SERVER-12-SP5-2023-309",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2023_0309-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2023:0309-1",
"url": "https://www.suse.com/support/update/announcement/2023/suse-su-20230309-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2023:0309-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-February/013662.html"
},
{
"category": "self",
"summary": "SUSE Bug 1207533",
"url": "https://bugzilla.suse.com/1207533"
},
{
"category": "self",
"summary": "SUSE Bug 1207534",
"url": "https://bugzilla.suse.com/1207534"
},
{
"category": "self",
"summary": "SUSE Bug 1207536",
"url": "https://bugzilla.suse.com/1207536"
},
{
"category": "self",
"summary": "SUSE Bug 1207538",
"url": "https://bugzilla.suse.com/1207538"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-4304 page",
"url": "https://www.suse.com/security/cve/CVE-2022-4304/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-4450 page",
"url": "https://www.suse.com/security/cve/CVE-2022-4450/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0215 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0215/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0286 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0286/"
}
],
"title": "Security update for openssl-1_1",
"tracking": {
"current_release_date": "2023-02-07T16:34:19Z",
"generator": {
"date": "2023-02-07T16:34:19Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2023:0309-1",
"initial_release_date": "2023-02-07T16:34:19Z",
"revision_history": [
{
"date": "2023-02-07T16:34:19Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"product_id": "libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-2.75.1.aarch64",
"product": {
"name": "libopenssl1_1-1.1.1d-2.75.1.aarch64",
"product_id": "libopenssl1_1-1.1.1d-2.75.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"product_id": "libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-2.75.1.aarch64",
"product": {
"name": "openssl-1_1-1.1.1d-2.75.1.aarch64",
"product_id": "openssl-1_1-1.1.1d-2.75.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-64bit-1.1.1d-2.75.1.aarch64_ilp32",
"product": {
"name": "libopenssl-1_1-devel-64bit-1.1.1d-2.75.1.aarch64_ilp32",
"product_id": "libopenssl-1_1-devel-64bit-1.1.1d-2.75.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-64bit-1.1.1d-2.75.1.aarch64_ilp32",
"product": {
"name": "libopenssl1_1-64bit-1.1.1d-2.75.1.aarch64_ilp32",
"product_id": "libopenssl1_1-64bit-1.1.1d-2.75.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-64bit-1.1.1d-2.75.1.aarch64_ilp32",
"product": {
"name": "libopenssl1_1-hmac-64bit-1.1.1d-2.75.1.aarch64_ilp32",
"product_id": "libopenssl1_1-hmac-64bit-1.1.1d-2.75.1.aarch64_ilp32"
}
}
],
"category": "architecture",
"name": "aarch64_ilp32"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.i586",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.i586",
"product_id": "libopenssl-1_1-devel-1.1.1d-2.75.1.i586"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-2.75.1.i586",
"product": {
"name": "libopenssl1_1-1.1.1d-2.75.1.i586",
"product_id": "libopenssl1_1-1.1.1d-2.75.1.i586"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.i586",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.i586",
"product_id": "libopenssl1_1-hmac-1.1.1d-2.75.1.i586"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-2.75.1.i586",
"product": {
"name": "openssl-1_1-1.1.1d-2.75.1.i586",
"product_id": "openssl-1_1-1.1.1d-2.75.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1_1-doc-1.1.1d-2.75.1.noarch",
"product": {
"name": "openssl-1_1-doc-1.1.1d-2.75.1.noarch",
"product_id": "openssl-1_1-doc-1.1.1d-2.75.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"product_id": "libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"product": {
"name": "libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"product_id": "libopenssl1_1-1.1.1d-2.75.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"product_id": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-2.75.1.ppc64le",
"product": {
"name": "openssl-1_1-1.1.1d-2.75.1.ppc64le",
"product_id": "openssl-1_1-1.1.1d-2.75.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.s390",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.s390",
"product_id": "libopenssl-1_1-devel-1.1.1d-2.75.1.s390"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-2.75.1.s390",
"product": {
"name": "libopenssl1_1-1.1.1d-2.75.1.s390",
"product_id": "libopenssl1_1-1.1.1d-2.75.1.s390"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390",
"product_id": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-2.75.1.s390",
"product": {
"name": "openssl-1_1-1.1.1d-2.75.1.s390",
"product_id": "openssl-1_1-1.1.1d-2.75.1.s390"
}
}
],
"category": "architecture",
"name": "s390"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"product_id": "libopenssl-1_1-devel-1.1.1d-2.75.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"product": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"product_id": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-2.75.1.s390x",
"product": {
"name": "libopenssl1_1-1.1.1d-2.75.1.s390x",
"product_id": "libopenssl1_1-1.1.1d-2.75.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"product": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"product_id": "libopenssl1_1-32bit-1.1.1d-2.75.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"product_id": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"product": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"product_id": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-2.75.1.s390x",
"product": {
"name": "openssl-1_1-1.1.1d-2.75.1.s390x",
"product_id": "openssl-1_1-1.1.1d-2.75.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"product_id": "libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"product": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"product_id": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-2.75.1.x86_64",
"product": {
"name": "libopenssl1_1-1.1.1d-2.75.1.x86_64",
"product_id": "libopenssl1_1-1.1.1d-2.75.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"product": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"product_id": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"product_id": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"product": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"product_id": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-2.75.1.x86_64",
"product": {
"name": "openssl-1_1-1.1.1d-2.75.1.x86_64",
"product_id": "openssl-1_1-1.1.1d-2.75.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE OpenStack Cloud 9",
"product": {
"name": "SUSE OpenStack Cloud 9",
"product_id": "SUSE OpenStack Cloud 9",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-openstack-cloud:9"
}
}
},
{
"category": "product_name",
"name": "SUSE OpenStack Cloud Crowbar 9",
"product": {
"name": "SUSE OpenStack Cloud Crowbar 9",
"product_id": "SUSE OpenStack Cloud Crowbar 9",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-openstack-cloud-crowbar:9"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Software Development Kit 12 SP5",
"product": {
"name": "SUSE Linux Enterprise Software Development Kit 12 SP5",
"product_id": "SUSE Linux Enterprise Software Development Kit 12 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-sdk:12:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP4-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:12:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP5",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:12:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12:sp5"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud 9",
"product_id": "SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud 9",
"product_id": "SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud 9",
"product_id": "SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud 9",
"product_id": "SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud 9",
"product_id": "SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud Crowbar 9",
"product_id": "SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud Crowbar 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud Crowbar 9",
"product_id": "SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud Crowbar 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud Crowbar 9",
"product_id": "SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud Crowbar 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud Crowbar 9",
"product_id": "SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud Crowbar 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.x86_64 as component of SUSE OpenStack Cloud Crowbar 9",
"product_id": "SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE OpenStack Cloud Crowbar 9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Software Development Kit 12 SP5",
"product_id": "SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Software Development Kit 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Software Development Kit 12 SP5",
"product_id": "SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Software Development Kit 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Software Development Kit 12 SP5",
"product_id": "SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Software Development Kit 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Software Development Kit 12 SP5",
"product_id": "SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Software Development Kit 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Software Development Kit 12 SP5",
"product_id": "SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Software Development Kit 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Software Development Kit 12 SP5",
"product_id": "SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Software Development Kit 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP4-LTSS",
"product_id": "SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.aarch64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.s390x as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-2.75.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-2.75.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4304",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-4304"
}
],
"notes": [
{
"category": "general",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation\nwhich could be sufficient to recover a plaintext across a network in a\nBleichenbacher style attack. To achieve a successful decryption an attacker\nwould have to be able to send a very large number of trial messages for\ndecryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5,\nRSA-OEAP and RSASVE.\n\nFor example, in a TLS connection, RSA is commonly used by a client to send an\nencrypted pre-master secret to the server. An attacker that had observed a\ngenuine connection between a client and a server could use this flaw to send\ntrial messages to the server and record the time taken to process them. After a\nsufficiently large number of messages the attacker could recover the pre-master\nsecret used for the original connection and thus be able to decrypt the\napplication data sent over that connection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-4304",
"url": "https://www.suse.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "SUSE Bug 1207534 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1207534"
},
{
"category": "external",
"summary": "SUSE Bug 1210067 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1210067"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1213289 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1213289"
},
{
"category": "external",
"summary": "SUSE Bug 1215014 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1215014"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:34:19Z",
"details": "moderate"
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-4450"
}
],
"notes": [
{
"category": "general",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\ndecodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data.\nIf the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\npopulated with pointers to buffers containing the relevant decoded data. The\ncaller is responsible for freeing those buffers. It is possible to construct a\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\nwill return a failure code but will populate the header argument with a pointer\nto a buffer that has already been freed. If the caller also frees this buffer\nthen a double free will occur. This will most likely lead to a crash. This\ncould be exploited by an attacker who has the ability to supply malicious PEM\nfiles for parsing to achieve a denial of service attack.\n\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\nPEM_read_bio_ex() and therefore these functions are also directly affected.\n\nThese functions are also called indirectly by a number of other OpenSSL\nfunctions including PEM_X509_INFO_read_bio_ex() and\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\nuses of these functions are not vulnerable because the caller does not free the\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\nOpenSSL 3.0.\n\nThe OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-4450",
"url": "https://www.suse.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "SUSE Bug 1207538 for CVE-2022-4450",
"url": "https://bugzilla.suse.com/1207538"
},
{
"category": "external",
"summary": "SUSE Bug 1225628 for CVE-2022-4450",
"url": "https://bugzilla.suse.com/1225628"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:34:19Z",
"details": "moderate"
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2023-0215",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0215"
}
],
"notes": [
{
"category": "general",
"text": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0215",
"url": "https://www.suse.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "SUSE Bug 1207536 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1207536"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1225628 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1225628"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:34:19Z",
"details": "moderate"
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0286",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0286"
}
],
"notes": [
{
"category": "general",
"text": "There is a type confusion vulnerability relating to X.400 address processing\ninside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but\nthe public structure definition for GENERAL_NAME incorrectly specified the type\nof the x400Address field as ASN1_TYPE. This field is subsequently interpreted by\nthe OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an\nASN1_STRING.\n\nWhen CRL checking is enabled (i.e. the application sets the\nX509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass\narbitrary pointers to a memcmp call, enabling them to read memory contents or\nenact a denial of service. In most cases, the attack requires the attacker to\nprovide both the certificate chain and CRL, neither of which need to have a\nvalid signature. If the attacker only controls one of these inputs, the other\ninput must already contain an X.400 address as a CRL distribution point, which\nis uncommon. As such, this vulnerability is most likely to only affect\napplications which have implemented their own functionality for retrieving CRLs\nover a network.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0286",
"url": "https://www.suse.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "SUSE Bug 1207533 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1207533"
},
{
"category": "external",
"summary": "SUSE Bug 1207569 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1207569"
},
{
"category": "external",
"summary": "SUSE Bug 1211136 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1211136"
},
{
"category": "external",
"summary": "SUSE Bug 1211503 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1211503"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1214269 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1214269"
},
{
"category": "external",
"summary": "SUSE Bug 1218477 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1218477"
},
{
"category": "external",
"summary": "SUSE Bug 1218967 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1218967"
},
{
"category": "external",
"summary": "SUSE Bug 1225677 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1225677"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP4-LTSS:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.aarch64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.ppc64le",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-1.1.1d-2.75.1.x86_64",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.s390x",
"SUSE Linux Enterprise Software Development Kit 12 SP5:libopenssl-1_1-devel-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud 9:openssl-1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:libopenssl1_1-hmac-32bit-1.1.1d-2.75.1.x86_64",
"SUSE OpenStack Cloud Crowbar 9:openssl-1_1-1.1.1d-2.75.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:34:19Z",
"details": "important"
}
],
"title": "CVE-2023-0286"
}
]
}
SUSE-SU-2023:0310-1
Vulnerability from csaf_suse - Published: 2023-02-07 16:35 - Updated: 2023-02-07 16:35| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for openssl-1_1",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for openssl-1_1 fixes the following issues:\n\n- CVE-2023-0286: Fixed X.400 address type confusion in X.509 GENERAL_NAME_cmp for x400Address (bsc#1207533).\n- CVE-2023-0215: Fixed use-after-free following BIO_new_NDEF() (bsc#1207536).\n- CVE-2022-4450: Fixed double free after calling PEM_read_bio_ex() (bsc#1207538).\n- CVE-2022-4304: Fixed timing Oracle in RSA Decryption (bsc#1207534).\n- FIPS: list only FIPS approved public key algorithms (bsc#1121365, bsc#1198472)\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2023-310,SUSE-SLE-Product-HPC-15-SP2-LTSS-2023-310,SUSE-SLE-Product-HPC-15-SP3-ESPOS-2023-310,SUSE-SLE-Product-HPC-15-SP3-LTSS-2023-310,SUSE-SLE-Product-RT-15-SP3-2023-310,SUSE-SLE-Product-SLES-15-SP2-LTSS-2023-310,SUSE-SLE-Product-SLES-15-SP3-LTSS-2023-310,SUSE-SLE-Product-SLES_SAP-15-SP2-2023-310,SUSE-SLE-Product-SLES_SAP-15-SP3-2023-310,SUSE-SLE-Product-SUSE-Manager-Proxy-4.2-2023-310,SUSE-SLE-Product-SUSE-Manager-Retail-Branch-Server-4.2-2023-310,SUSE-SLE-Product-SUSE-Manager-Server-4.2-2023-310,SUSE-SUSE-MicroOS-5.1-2023-310,SUSE-SUSE-MicroOS-5.2-2023-310,SUSE-Storage-7-2023-310,SUSE-Storage-7.1-2023-310,openSUSE-Leap-Micro-5.2-2023-310",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2023_0310-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2023:0310-1",
"url": "https://www.suse.com/support/update/announcement/2023/suse-su-20230310-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2023:0310-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-February/013661.html"
},
{
"category": "self",
"summary": "SUSE Bug 1121365",
"url": "https://bugzilla.suse.com/1121365"
},
{
"category": "self",
"summary": "SUSE Bug 1198472",
"url": "https://bugzilla.suse.com/1198472"
},
{
"category": "self",
"summary": "SUSE Bug 1207533",
"url": "https://bugzilla.suse.com/1207533"
},
{
"category": "self",
"summary": "SUSE Bug 1207534",
"url": "https://bugzilla.suse.com/1207534"
},
{
"category": "self",
"summary": "SUSE Bug 1207536",
"url": "https://bugzilla.suse.com/1207536"
},
{
"category": "self",
"summary": "SUSE Bug 1207538",
"url": "https://bugzilla.suse.com/1207538"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-4304 page",
"url": "https://www.suse.com/security/cve/CVE-2022-4304/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-4450 page",
"url": "https://www.suse.com/security/cve/CVE-2022-4450/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0215 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0215/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0286 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0286/"
}
],
"title": "Security update for openssl-1_1",
"tracking": {
"current_release_date": "2023-02-07T16:35:44Z",
"generator": {
"date": "2023-02-07T16:35:44Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2023:0310-1",
"initial_release_date": "2023-02-07T16:35:44Z",
"revision_history": [
{
"date": "2023-02-07T16:35:44Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"product_id": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"product": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"product_id": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"product_id": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"product": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"product_id": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-64bit-1.1.1d-150200.11.57.1.aarch64_ilp32",
"product": {
"name": "libopenssl-1_1-devel-64bit-1.1.1d-150200.11.57.1.aarch64_ilp32",
"product_id": "libopenssl-1_1-devel-64bit-1.1.1d-150200.11.57.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-64bit-1.1.1d-150200.11.57.1.aarch64_ilp32",
"product": {
"name": "libopenssl1_1-64bit-1.1.1d-150200.11.57.1.aarch64_ilp32",
"product_id": "libopenssl1_1-64bit-1.1.1d-150200.11.57.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-64bit-1.1.1d-150200.11.57.1.aarch64_ilp32",
"product": {
"name": "libopenssl1_1-hmac-64bit-1.1.1d-150200.11.57.1.aarch64_ilp32",
"product_id": "libopenssl1_1-hmac-64bit-1.1.1d-150200.11.57.1.aarch64_ilp32"
}
}
],
"category": "architecture",
"name": "aarch64_ilp32"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.i586",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.i586",
"product_id": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.i586"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.i586",
"product": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.i586",
"product_id": "libopenssl1_1-1.1.1d-150200.11.57.1.i586"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.i586",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.i586",
"product_id": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.i586"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-150200.11.57.1.i586",
"product": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.i586",
"product_id": "openssl-1_1-1.1.1d-150200.11.57.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"product": {
"name": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"product_id": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"product_id": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"product": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"product_id": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"product_id": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"product": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"product_id": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"product_id": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"product": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"product_id": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"product_id": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"product": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"product_id": "openssl-1_1-1.1.1d-150200.11.57.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"product": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"product_id": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"product": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"product_id": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"product": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"product_id": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"product": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"product_id": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"product": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"product_id": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"product": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"product_id": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"product": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"product_id": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp2"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-espos:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc-ltss:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Real Time 15 SP3",
"product": {
"name": "SUSE Linux Enterprise Real Time 15 SP3",
"product_id": "SUSE Linux Enterprise Real Time 15 SP3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_rt:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP2-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp2"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 15 SP3-LTSS",
"product": {
"name": "SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles-ltss:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp2"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:15:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Manager Proxy 4.2",
"product": {
"name": "SUSE Manager Proxy 4.2",
"product_id": "SUSE Manager Proxy 4.2",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-manager-proxy:4.2"
}
}
},
{
"category": "product_name",
"name": "SUSE Manager Retail Branch Server 4.2",
"product": {
"name": "SUSE Manager Retail Branch Server 4.2",
"product_id": "SUSE Manager Retail Branch Server 4.2",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-manager-retail-branch-server:4.2"
}
}
},
{
"category": "product_name",
"name": "SUSE Manager Server 4.2",
"product": {
"name": "SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-manager-server:4.2"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Micro 5.1",
"product": {
"name": "SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-microos:5.1"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Micro 5.2",
"product": {
"name": "SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse-microos:5.2"
}
}
},
{
"category": "product_name",
"name": "SUSE Enterprise Storage 7",
"product": {
"name": "SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7",
"product_identification_helper": {
"cpe": "cpe:/o:suse:ses:7"
}
}
},
{
"category": "product_name",
"name": "SUSE Enterprise Storage 7.1",
"product": {
"name": "SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1",
"product_identification_helper": {
"cpe": "cpe:/o:suse:ses:7.1"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap Micro 5.2",
"product": {
"name": "openSUSE Leap Micro 5.2",
"product_id": "openSUSE Leap Micro 5.2",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap-micro:5.2"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch"
},
"product_reference": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch as component of SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch"
},
"product_reference": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Real Time 15 SP3",
"product_id": "SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Real Time 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Real Time 15 SP3",
"product_id": "SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Real Time 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Real Time 15 SP3",
"product_id": "SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Real Time 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Real Time 15 SP3",
"product_id": "SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Real Time 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Real Time 15 SP3",
"product_id": "SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Real Time 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Real Time 15 SP3",
"product_id": "SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Real Time 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Real Time 15 SP3",
"product_id": "SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Real Time 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP2-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP2-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch as component of SUSE Linux Enterprise Server 15 SP3-LTSS",
"product_id": "SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch"
},
"product_reference": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server 15 SP3-LTSS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP2",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch as component of SUSE Linux Enterprise Server for SAP Applications 15 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch"
},
"product_reference": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 15 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Proxy 4.2",
"product_id": "SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Proxy 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Proxy 4.2",
"product_id": "SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Proxy 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Proxy 4.2",
"product_id": "SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Proxy 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Proxy 4.2",
"product_id": "SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Proxy 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Proxy 4.2",
"product_id": "SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Proxy 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Proxy 4.2",
"product_id": "SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Proxy 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Proxy 4.2",
"product_id": "SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Proxy 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Retail Branch Server 4.2",
"product_id": "SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Retail Branch Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Retail Branch Server 4.2",
"product_id": "SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Retail Branch Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Retail Branch Server 4.2",
"product_id": "SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Retail Branch Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Retail Branch Server 4.2",
"product_id": "SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Retail Branch Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Retail Branch Server 4.2",
"product_id": "SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Retail Branch Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Retail Branch Server 4.2",
"product_id": "SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Retail Branch Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Retail Branch Server 4.2",
"product_id": "SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Retail Branch Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Manager Server 4.2",
"product_id": "SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Manager Server 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Micro 5.1",
"product_id": "SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.s390x as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Linux Enterprise Micro 5.2",
"product_id": "SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7",
"product_id": "SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch as component of SUSE Enterprise Storage 7.1",
"product_id": "SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch"
},
"product_reference": "openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"relates_to_product_reference": "SUSE Enterprise Storage 7.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64 as component of openSUSE Leap Micro 5.2",
"product_id": "openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "openSUSE Leap Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64 as component of openSUSE Leap Micro 5.2",
"product_id": "openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "openSUSE Leap Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64 as component of openSUSE Leap Micro 5.2",
"product_id": "openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "openSUSE Leap Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64 as component of openSUSE Leap Micro 5.2",
"product_id": "openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "openSUSE Leap Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64 as component of openSUSE Leap Micro 5.2",
"product_id": "openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "openSUSE Leap Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64 as component of openSUSE Leap Micro 5.2",
"product_id": "openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "openSUSE Leap Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64 as component of openSUSE Leap Micro 5.2",
"product_id": "openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"relates_to_product_reference": "openSUSE Leap Micro 5.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64 as component of openSUSE Leap Micro 5.2",
"product_id": "openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"relates_to_product_reference": "openSUSE Leap Micro 5.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4304",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-4304"
}
],
"notes": [
{
"category": "general",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation\nwhich could be sufficient to recover a plaintext across a network in a\nBleichenbacher style attack. To achieve a successful decryption an attacker\nwould have to be able to send a very large number of trial messages for\ndecryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5,\nRSA-OEAP and RSASVE.\n\nFor example, in a TLS connection, RSA is commonly used by a client to send an\nencrypted pre-master secret to the server. An attacker that had observed a\ngenuine connection between a client and a server could use this flaw to send\ntrial messages to the server and record the time taken to process them. After a\nsufficiently large number of messages the attacker could recover the pre-master\nsecret used for the original connection and thus be able to decrypt the\napplication data sent over that connection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-4304",
"url": "https://www.suse.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "SUSE Bug 1207534 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1207534"
},
{
"category": "external",
"summary": "SUSE Bug 1210067 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1210067"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1213289 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1213289"
},
{
"category": "external",
"summary": "SUSE Bug 1215014 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1215014"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:35:44Z",
"details": "moderate"
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-4450"
}
],
"notes": [
{
"category": "general",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\ndecodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data.\nIf the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\npopulated with pointers to buffers containing the relevant decoded data. The\ncaller is responsible for freeing those buffers. It is possible to construct a\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\nwill return a failure code but will populate the header argument with a pointer\nto a buffer that has already been freed. If the caller also frees this buffer\nthen a double free will occur. This will most likely lead to a crash. This\ncould be exploited by an attacker who has the ability to supply malicious PEM\nfiles for parsing to achieve a denial of service attack.\n\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\nPEM_read_bio_ex() and therefore these functions are also directly affected.\n\nThese functions are also called indirectly by a number of other OpenSSL\nfunctions including PEM_X509_INFO_read_bio_ex() and\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\nuses of these functions are not vulnerable because the caller does not free the\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\nOpenSSL 3.0.\n\nThe OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-4450",
"url": "https://www.suse.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "SUSE Bug 1207538 for CVE-2022-4450",
"url": "https://bugzilla.suse.com/1207538"
},
{
"category": "external",
"summary": "SUSE Bug 1225628 for CVE-2022-4450",
"url": "https://bugzilla.suse.com/1225628"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:35:44Z",
"details": "moderate"
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2023-0215",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0215"
}
],
"notes": [
{
"category": "general",
"text": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0215",
"url": "https://www.suse.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "SUSE Bug 1207536 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1207536"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1225628 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1225628"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:35:44Z",
"details": "moderate"
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0286",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0286"
}
],
"notes": [
{
"category": "general",
"text": "There is a type confusion vulnerability relating to X.400 address processing\ninside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but\nthe public structure definition for GENERAL_NAME incorrectly specified the type\nof the x400Address field as ASN1_TYPE. This field is subsequently interpreted by\nthe OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an\nASN1_STRING.\n\nWhen CRL checking is enabled (i.e. the application sets the\nX509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass\narbitrary pointers to a memcmp call, enabling them to read memory contents or\nenact a denial of service. In most cases, the attack requires the attacker to\nprovide both the certificate chain and CRL, neither of which need to have a\nvalid signature. If the attacker only controls one of these inputs, the other\ninput must already contain an X.400 address as a CRL distribution point, which\nis uncommon. As such, this vulnerability is most likely to only affect\napplications which have implemented their own functionality for retrieving CRLs\nover a network.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0286",
"url": "https://www.suse.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "SUSE Bug 1207533 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1207533"
},
{
"category": "external",
"summary": "SUSE Bug 1207569 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1207569"
},
{
"category": "external",
"summary": "SUSE Bug 1211136 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1211136"
},
{
"category": "external",
"summary": "SUSE Bug 1211503 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1211503"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1214269 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1214269"
},
{
"category": "external",
"summary": "SUSE Bug 1218477 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1218477"
},
{
"category": "external",
"summary": "SUSE Bug 1218967 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1218967"
},
{
"category": "external",
"summary": "SUSE Bug 1225677 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1225677"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7.1:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Enterprise Storage 7:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-ESPOS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise High Performance Computing 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.1:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Real Time 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP2-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server 15 SP3-LTSS:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 15 SP3:openssl-1_1-doc-1.1.1d-150200.11.57.1.noarch",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Proxy 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Retail Branch Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl-1_1-devel-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:libopenssl1_1-hmac-32bit-1.1.1d-150200.11.57.1.x86_64",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.ppc64le",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.s390x",
"SUSE Manager Server 4.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl-1_1-devel-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:libopenssl1_1-hmac-1.1.1d-150200.11.57.1.x86_64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.aarch64",
"openSUSE Leap Micro 5.2:openssl-1_1-1.1.1d-150200.11.57.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:35:44Z",
"details": "important"
}
],
"title": "CVE-2023-0286"
}
]
}
SUSE-SU-2023:0311-1
Vulnerability from csaf_suse - Published: 2023-02-07 16:36 - Updated: 2023-02-07 16:36| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for openssl-1_1",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for openssl-1_1 fixes the following issues:\n\n- CVE-2023-0286: Fixed X.400 address type confusion in X.509 GENERAL_NAME_cmp for x400Address (bsc#1207533).\n- CVE-2023-0215: Fixed use-after-free following BIO_new_NDEF() (bsc#1207536).\n- CVE-2022-4450: Fixed double free after calling PEM_read_bio_ex() (bsc#1207538).\n- CVE-2022-4304: Fixed timing Oracle in RSA Decryption (bsc#1207534).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2023-311,SUSE-SLE-Micro-5.3-2023-311,SUSE-SLE-Module-Basesystem-15-SP4-2023-311,openSUSE-Leap-Micro-5.3-2023-311,openSUSE-SLE-15.4-2023-311",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2023_0311-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2023:0311-1",
"url": "https://www.suse.com/support/update/announcement/2023/suse-su-20230311-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2023:0311-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-February/013658.html"
},
{
"category": "self",
"summary": "SUSE Bug 1207533",
"url": "https://bugzilla.suse.com/1207533"
},
{
"category": "self",
"summary": "SUSE Bug 1207534",
"url": "https://bugzilla.suse.com/1207534"
},
{
"category": "self",
"summary": "SUSE Bug 1207536",
"url": "https://bugzilla.suse.com/1207536"
},
{
"category": "self",
"summary": "SUSE Bug 1207538",
"url": "https://bugzilla.suse.com/1207538"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-4304 page",
"url": "https://www.suse.com/security/cve/CVE-2022-4304/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-4450 page",
"url": "https://www.suse.com/security/cve/CVE-2022-4450/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0215 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0215/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0286 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0286/"
}
],
"title": "Security update for openssl-1_1",
"tracking": {
"current_release_date": "2023-02-07T16:36:43Z",
"generator": {
"date": "2023-02-07T16:36:43Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2023:0311-1",
"initial_release_date": "2023-02-07T16:36:43Z",
"revision_history": [
{
"date": "2023-02-07T16:36:43Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"product": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"product_id": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"product": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"product_id": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"product": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"product_id": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"product": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"product_id": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-64bit-1.1.1l-150400.7.22.1.aarch64_ilp32",
"product": {
"name": "libopenssl-1_1-devel-64bit-1.1.1l-150400.7.22.1.aarch64_ilp32",
"product_id": "libopenssl-1_1-devel-64bit-1.1.1l-150400.7.22.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-64bit-1.1.1l-150400.7.22.1.aarch64_ilp32",
"product": {
"name": "libopenssl1_1-64bit-1.1.1l-150400.7.22.1.aarch64_ilp32",
"product_id": "libopenssl1_1-64bit-1.1.1l-150400.7.22.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-64bit-1.1.1l-150400.7.22.1.aarch64_ilp32",
"product": {
"name": "libopenssl1_1-hmac-64bit-1.1.1l-150400.7.22.1.aarch64_ilp32",
"product_id": "libopenssl1_1-hmac-64bit-1.1.1l-150400.7.22.1.aarch64_ilp32"
}
}
],
"category": "architecture",
"name": "aarch64_ilp32"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.i586",
"product": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.i586",
"product_id": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.i586"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.i586",
"product": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.i586",
"product_id": "libopenssl1_1-1.1.1l-150400.7.22.1.i586"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.i586",
"product": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.i586",
"product_id": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.i586"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1l-150400.7.22.1.i586",
"product": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.i586",
"product_id": "openssl-1_1-1.1.1l-150400.7.22.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"product": {
"name": "openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"product_id": "openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"product": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"product_id": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"product": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"product_id": "libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"product": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"product_id": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"product": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"product_id": "openssl-1_1-1.1.1l-150400.7.22.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"product": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"product_id": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"product": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"product_id": "libopenssl1_1-1.1.1l-150400.7.22.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"product": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"product_id": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"product": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"product_id": "openssl-1_1-1.1.1l-150400.7.22.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"product": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"product_id": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"product": {
"name": "libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"product_id": "libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"product": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"product_id": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"product": {
"name": "libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"product_id": "libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"product": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"product_id": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"product": {
"name": "libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"product_id": "libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"product": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"product_id": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Micro 5.3",
"product": {
"name": "SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-micro:5.3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product": {
"name": "SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-basesystem:15:sp4"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap Micro 5.3",
"product": {
"name": "openSUSE Leap Micro 5.3",
"product_id": "openSUSE Leap Micro 5.3",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap-micro:5.3"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.4",
"product": {
"name": "openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.4"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.s390x as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.s390x as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Micro 5.3",
"product_id": "SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 as component of openSUSE Leap Micro 5.3",
"product_id": "openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "openSUSE Leap Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap Micro 5.3",
"product_id": "openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 as component of openSUSE Leap Micro 5.3",
"product_id": "openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "openSUSE Leap Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap Micro 5.3",
"product_id": "openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 as component of openSUSE Leap Micro 5.3",
"product_id": "openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "openSUSE Leap Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap Micro 5.3",
"product_id": "openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64 as component of openSUSE Leap Micro 5.3",
"product_id": "openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "openSUSE Leap Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap Micro 5.3",
"product_id": "openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap Micro 5.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.s390x as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.ppc64le as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.s390x as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch"
},
"product_reference": "openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.4"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4304",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-4304"
}
],
"notes": [
{
"category": "general",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation\nwhich could be sufficient to recover a plaintext across a network in a\nBleichenbacher style attack. To achieve a successful decryption an attacker\nwould have to be able to send a very large number of trial messages for\ndecryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5,\nRSA-OEAP and RSASVE.\n\nFor example, in a TLS connection, RSA is commonly used by a client to send an\nencrypted pre-master secret to the server. An attacker that had observed a\ngenuine connection between a client and a server could use this flaw to send\ntrial messages to the server and record the time taken to process them. After a\nsufficiently large number of messages the attacker could recover the pre-master\nsecret used for the original connection and thus be able to decrypt the\napplication data sent over that connection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-4304",
"url": "https://www.suse.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "SUSE Bug 1207534 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1207534"
},
{
"category": "external",
"summary": "SUSE Bug 1210067 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1210067"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1213289 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1213289"
},
{
"category": "external",
"summary": "SUSE Bug 1215014 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1215014"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:36:43Z",
"details": "moderate"
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-4450"
}
],
"notes": [
{
"category": "general",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\ndecodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data.\nIf the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\npopulated with pointers to buffers containing the relevant decoded data. The\ncaller is responsible for freeing those buffers. It is possible to construct a\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\nwill return a failure code but will populate the header argument with a pointer\nto a buffer that has already been freed. If the caller also frees this buffer\nthen a double free will occur. This will most likely lead to a crash. This\ncould be exploited by an attacker who has the ability to supply malicious PEM\nfiles for parsing to achieve a denial of service attack.\n\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\nPEM_read_bio_ex() and therefore these functions are also directly affected.\n\nThese functions are also called indirectly by a number of other OpenSSL\nfunctions including PEM_X509_INFO_read_bio_ex() and\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\nuses of these functions are not vulnerable because the caller does not free the\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\nOpenSSL 3.0.\n\nThe OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-4450",
"url": "https://www.suse.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "SUSE Bug 1207538 for CVE-2022-4450",
"url": "https://bugzilla.suse.com/1207538"
},
{
"category": "external",
"summary": "SUSE Bug 1225628 for CVE-2022-4450",
"url": "https://bugzilla.suse.com/1225628"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:36:43Z",
"details": "moderate"
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2023-0215",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0215"
}
],
"notes": [
{
"category": "general",
"text": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0215",
"url": "https://www.suse.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "SUSE Bug 1207536 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1207536"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1225628 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1225628"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:36:43Z",
"details": "moderate"
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0286",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0286"
}
],
"notes": [
{
"category": "general",
"text": "There is a type confusion vulnerability relating to X.400 address processing\ninside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but\nthe public structure definition for GENERAL_NAME incorrectly specified the type\nof the x400Address field as ASN1_TYPE. This field is subsequently interpreted by\nthe OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an\nASN1_STRING.\n\nWhen CRL checking is enabled (i.e. the application sets the\nX509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass\narbitrary pointers to a memcmp call, enabling them to read memory contents or\nenact a denial of service. In most cases, the attack requires the attacker to\nprovide both the certificate chain and CRL, neither of which need to have a\nvalid signature. If the attacker only controls one of these inputs, the other\ninput must already contain an X.400 address as a CRL distribution point, which\nis uncommon. As such, this vulnerability is most likely to only affect\napplications which have implemented their own functionality for retrieving CRLs\nover a network.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0286",
"url": "https://www.suse.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "SUSE Bug 1207533 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1207533"
},
{
"category": "external",
"summary": "SUSE Bug 1207569 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1207569"
},
{
"category": "external",
"summary": "SUSE Bug 1211136 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1211136"
},
{
"category": "external",
"summary": "SUSE Bug 1211503 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1211503"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1214269 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1214269"
},
{
"category": "external",
"summary": "SUSE Bug 1218477 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1218477"
},
{
"category": "external",
"summary": "SUSE Bug 1218967 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1218967"
},
{
"category": "external",
"summary": "SUSE Bug 1225677 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1225677"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl-1_1-devel-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:libopenssl1_1-hmac-32bit-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.ppc64le",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.s390x",
"openSUSE Leap 15.4:openssl-1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap 15.4:openssl-1_1-doc-1.1.1l-150400.7.22.1.noarch",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl-1_1-devel-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:libopenssl1_1-hmac-1.1.1l-150400.7.22.1.x86_64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.aarch64",
"openSUSE Leap Micro 5.3:openssl-1_1-1.1.1l-150400.7.22.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:36:43Z",
"details": "important"
}
],
"title": "CVE-2023-0286"
}
]
}
SUSE-SU-2023:0312-1
Vulnerability from csaf_suse - Published: 2023-02-07 16:54 - Updated: 2023-02-07 16:54| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Security update for openssl-3",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for openssl-3 fixes the following issues:\n\nSecurity fixes:\n\n- CVE-2023-0286: Fixed X.400 address type confusion in X.509 GENERAL_NAME_cmp for x400Address (bsc#1207533).\n- CVE-2023-0401: Fixed NULL pointer dereference during PKCS7 data verification (bsc#1207541).\n- CVE-2023-0217: Fixed NULL pointer dereference validating DSA public key (bsc#1207540).\n- CVE-2023-0216: Fixed invalid pointer dereference in d2i_PKCS7 functions (bsc#1207539).\n- CVE-2023-0215: Fixed use-after-free following BIO_new_NDEF() (bsc#1207536).\n- CVE-2022-4450: Fixed double free after calling PEM_read_bio_ex() (bsc#1207538).\n- CVE-2022-4304: Fixed timing Oracle in RSA Decryption (bsc#1207534).\n- CVE-2022-4203: Fixed read Buffer Overflow with X.509 Name Constraints (bsc#1207535).\n\nNon-security fixes:\n\n- Fix SHA, SHAKE, KECCAK ASM and EC ASM flag passing (bsc#1206222).\n- Enable zlib compression support (bsc#1195149).\n- Add crypto-policies dependency.\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2023-312,SUSE-SLE-Module-Basesystem-15-SP4-2023-312,openSUSE-SLE-15.4-2023-312",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2023_0312-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2023:0312-1",
"url": "https://www.suse.com/support/update/announcement/2023/suse-su-20230312-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2023:0312-1",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-February/013654.html"
},
{
"category": "self",
"summary": "SUSE Bug 1195149",
"url": "https://bugzilla.suse.com/1195149"
},
{
"category": "self",
"summary": "SUSE Bug 1206222",
"url": "https://bugzilla.suse.com/1206222"
},
{
"category": "self",
"summary": "SUSE Bug 1207533",
"url": "https://bugzilla.suse.com/1207533"
},
{
"category": "self",
"summary": "SUSE Bug 1207534",
"url": "https://bugzilla.suse.com/1207534"
},
{
"category": "self",
"summary": "SUSE Bug 1207535",
"url": "https://bugzilla.suse.com/1207535"
},
{
"category": "self",
"summary": "SUSE Bug 1207536",
"url": "https://bugzilla.suse.com/1207536"
},
{
"category": "self",
"summary": "SUSE Bug 1207538",
"url": "https://bugzilla.suse.com/1207538"
},
{
"category": "self",
"summary": "SUSE Bug 1207539",
"url": "https://bugzilla.suse.com/1207539"
},
{
"category": "self",
"summary": "SUSE Bug 1207540",
"url": "https://bugzilla.suse.com/1207540"
},
{
"category": "self",
"summary": "SUSE Bug 1207541",
"url": "https://bugzilla.suse.com/1207541"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-4203 page",
"url": "https://www.suse.com/security/cve/CVE-2022-4203/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-4304 page",
"url": "https://www.suse.com/security/cve/CVE-2022-4304/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2022-4450 page",
"url": "https://www.suse.com/security/cve/CVE-2022-4450/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0215 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0215/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0216 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0216/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0217 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0217/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0286 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0286/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2023-0401 page",
"url": "https://www.suse.com/security/cve/CVE-2023-0401/"
}
],
"title": "Security update for openssl-3",
"tracking": {
"current_release_date": "2023-02-07T16:54:57Z",
"generator": {
"date": "2023-02-07T16:54:57Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2023:0312-1",
"initial_release_date": "2023-02-07T16:54:57Z",
"revision_history": [
{
"date": "2023-02-07T16:54:57Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"product": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"product_id": "libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.0.1-150400.4.17.1.aarch64",
"product": {
"name": "libopenssl3-3.0.1-150400.4.17.1.aarch64",
"product_id": "libopenssl3-3.0.1-150400.4.17.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-3-3.0.1-150400.4.17.1.aarch64",
"product": {
"name": "openssl-3-3.0.1-150400.4.17.1.aarch64",
"product_id": "openssl-3-3.0.1-150400.4.17.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-64bit-3.0.1-150400.4.17.1.aarch64_ilp32",
"product": {
"name": "libopenssl-3-devel-64bit-3.0.1-150400.4.17.1.aarch64_ilp32",
"product_id": "libopenssl-3-devel-64bit-3.0.1-150400.4.17.1.aarch64_ilp32"
}
},
{
"category": "product_version",
"name": "libopenssl3-64bit-3.0.1-150400.4.17.1.aarch64_ilp32",
"product": {
"name": "libopenssl3-64bit-3.0.1-150400.4.17.1.aarch64_ilp32",
"product_id": "libopenssl3-64bit-3.0.1-150400.4.17.1.aarch64_ilp32"
}
}
],
"category": "architecture",
"name": "aarch64_ilp32"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.i586",
"product": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.i586",
"product_id": "libopenssl-3-devel-3.0.1-150400.4.17.1.i586"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.0.1-150400.4.17.1.i586",
"product": {
"name": "libopenssl3-3.0.1-150400.4.17.1.i586",
"product_id": "libopenssl3-3.0.1-150400.4.17.1.i586"
}
},
{
"category": "product_version",
"name": "openssl-3-3.0.1-150400.4.17.1.i586",
"product": {
"name": "openssl-3-3.0.1-150400.4.17.1.i586",
"product_id": "openssl-3-3.0.1-150400.4.17.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-3-doc-3.0.1-150400.4.17.1.noarch",
"product": {
"name": "openssl-3-doc-3.0.1-150400.4.17.1.noarch",
"product_id": "openssl-3-doc-3.0.1-150400.4.17.1.noarch"
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"product": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"product_id": "libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"product": {
"name": "libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"product_id": "libopenssl3-3.0.1-150400.4.17.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-3-3.0.1-150400.4.17.1.ppc64le",
"product": {
"name": "openssl-3-3.0.1-150400.4.17.1.ppc64le",
"product_id": "openssl-3-3.0.1-150400.4.17.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"product": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"product_id": "libopenssl-3-devel-3.0.1-150400.4.17.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.0.1-150400.4.17.1.s390x",
"product": {
"name": "libopenssl3-3.0.1-150400.4.17.1.s390x",
"product_id": "libopenssl3-3.0.1-150400.4.17.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-3-3.0.1-150400.4.17.1.s390x",
"product": {
"name": "openssl-3-3.0.1-150400.4.17.1.s390x",
"product_id": "openssl-3-3.0.1-150400.4.17.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"product": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"product_id": "libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"product": {
"name": "libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"product_id": "libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.0.1-150400.4.17.1.x86_64",
"product": {
"name": "libopenssl3-3.0.1-150400.4.17.1.x86_64",
"product_id": "libopenssl3-3.0.1-150400.4.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"product": {
"name": "libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"product_id": "libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-3-3.0.1-150400.4.17.1.x86_64",
"product": {
"name": "openssl-3-3.0.1-150400.4.17.1.x86_64",
"product_id": "openssl-3-3.0.1-150400.4.17.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product": {
"name": "SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-basesystem:15:sp4"
}
}
},
{
"category": "product_name",
"name": "openSUSE Leap 15.4",
"product": {
"name": "openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:leap:15.4"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64"
},
"product_reference": "libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le"
},
"product_reference": "libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x"
},
"product_reference": "libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64"
},
"product_reference": "libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.1-150400.4.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64"
},
"product_reference": "libopenssl3-3.0.1-150400.4.17.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.1-150400.4.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le"
},
"product_reference": "libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.1-150400.4.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x"
},
"product_reference": "libopenssl3-3.0.1-150400.4.17.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.1-150400.4.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64"
},
"product_reference": "libopenssl3-3.0.1-150400.4.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.1-150400.4.17.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64"
},
"product_reference": "openssl-3-3.0.1-150400.4.17.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.1-150400.4.17.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le"
},
"product_reference": "openssl-3-3.0.1-150400.4.17.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.1-150400.4.17.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x"
},
"product_reference": "openssl-3-3.0.1-150400.4.17.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.1-150400.4.17.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP4",
"product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64"
},
"product_reference": "openssl-3-3.0.1-150400.4.17.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64"
},
"product_reference": "libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le"
},
"product_reference": "libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.s390x as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x"
},
"product_reference": "libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64"
},
"product_reference": "libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64"
},
"product_reference": "libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.1-150400.4.17.1.aarch64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64"
},
"product_reference": "libopenssl3-3.0.1-150400.4.17.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.1-150400.4.17.1.ppc64le as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le"
},
"product_reference": "libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.1-150400.4.17.1.s390x as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x"
},
"product_reference": "libopenssl3-3.0.1-150400.4.17.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.1-150400.4.17.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64"
},
"product_reference": "libopenssl3-3.0.1-150400.4.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64"
},
"product_reference": "libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.1-150400.4.17.1.aarch64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64"
},
"product_reference": "openssl-3-3.0.1-150400.4.17.1.aarch64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.1-150400.4.17.1.ppc64le as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le"
},
"product_reference": "openssl-3-3.0.1-150400.4.17.1.ppc64le",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.1-150400.4.17.1.s390x as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x"
},
"product_reference": "openssl-3-3.0.1-150400.4.17.1.s390x",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.1-150400.4.17.1.x86_64 as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64"
},
"product_reference": "openssl-3-3.0.1-150400.4.17.1.x86_64",
"relates_to_product_reference": "openSUSE Leap 15.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.0.1-150400.4.17.1.noarch as component of openSUSE Leap 15.4",
"product_id": "openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
},
"product_reference": "openssl-3-doc-3.0.1-150400.4.17.1.noarch",
"relates_to_product_reference": "openSUSE Leap 15.4"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4203",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-4203"
}
],
"notes": [
{
"category": "general",
"text": "A read buffer overrun can be triggered in X.509 certificate verification,\nspecifically in name constraint checking. Note that this occurs\nafter certificate chain signature verification and requires either a\nCA to have signed the malicious certificate or for the application to\ncontinue certificate verification despite failure to construct a path\nto a trusted issuer.\n\nThe read buffer overrun might result in a crash which could lead to\na denial of service attack. In theory it could also result in the disclosure\nof private memory contents (such as private keys, or sensitive plaintext)\nalthough we are not aware of any working exploit leading to memory\ncontents disclosure as of the time of release of this advisory.\n\nIn a TLS client, this can be triggered by connecting to a malicious\nserver. In a TLS server, this can be triggered if the server requests\nclient authentication and a malicious client connects.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-4203",
"url": "https://www.suse.com/security/cve/CVE-2022-4203"
},
{
"category": "external",
"summary": "SUSE Bug 1207535 for CVE-2022-4203",
"url": "https://bugzilla.suse.com/1207535"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:54:57Z",
"details": "moderate"
}
],
"title": "CVE-2022-4203"
},
{
"cve": "CVE-2022-4304",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-4304"
}
],
"notes": [
{
"category": "general",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation\nwhich could be sufficient to recover a plaintext across a network in a\nBleichenbacher style attack. To achieve a successful decryption an attacker\nwould have to be able to send a very large number of trial messages for\ndecryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5,\nRSA-OEAP and RSASVE.\n\nFor example, in a TLS connection, RSA is commonly used by a client to send an\nencrypted pre-master secret to the server. An attacker that had observed a\ngenuine connection between a client and a server could use this flaw to send\ntrial messages to the server and record the time taken to process them. After a\nsufficiently large number of messages the attacker could recover the pre-master\nsecret used for the original connection and thus be able to decrypt the\napplication data sent over that connection.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-4304",
"url": "https://www.suse.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "SUSE Bug 1207534 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1207534"
},
{
"category": "external",
"summary": "SUSE Bug 1210067 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1210067"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1213289 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1213289"
},
{
"category": "external",
"summary": "SUSE Bug 1215014 for CVE-2022-4304",
"url": "https://bugzilla.suse.com/1215014"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:54:57Z",
"details": "moderate"
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2022-4450"
}
],
"notes": [
{
"category": "general",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\ndecodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data.\nIf the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\npopulated with pointers to buffers containing the relevant decoded data. The\ncaller is responsible for freeing those buffers. It is possible to construct a\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\nwill return a failure code but will populate the header argument with a pointer\nto a buffer that has already been freed. If the caller also frees this buffer\nthen a double free will occur. This will most likely lead to a crash. This\ncould be exploited by an attacker who has the ability to supply malicious PEM\nfiles for parsing to achieve a denial of service attack.\n\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\nPEM_read_bio_ex() and therefore these functions are also directly affected.\n\nThese functions are also called indirectly by a number of other OpenSSL\nfunctions including PEM_X509_INFO_read_bio_ex() and\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\nuses of these functions are not vulnerable because the caller does not free the\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\nOpenSSL 3.0.\n\nThe OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2022-4450",
"url": "https://www.suse.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "SUSE Bug 1207538 for CVE-2022-4450",
"url": "https://bugzilla.suse.com/1207538"
},
{
"category": "external",
"summary": "SUSE Bug 1225628 for CVE-2022-4450",
"url": "https://bugzilla.suse.com/1225628"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:54:57Z",
"details": "moderate"
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2023-0215",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0215"
}
],
"notes": [
{
"category": "general",
"text": "The public API function BIO_new_NDEF is a helper function used for streaming\nASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\nSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\nend user applications.\n\nThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\nBIO onto the front of it to form a BIO chain, and then returns the new head of\nthe BIO chain to the caller. Under certain conditions, for example if a CMS\nrecipient public key is invalid, the new filter BIO is freed and the function\nreturns a NULL result indicating a failure. However, in this case, the BIO chain\nis not properly cleaned up and the BIO passed by the caller still retains\ninternal pointers to the previously freed filter BIO. If the caller then goes on\nto call BIO_pop() on the BIO then a use-after-free will occur. This will most\nlikely result in a crash.\n\n\n\nThis scenario occurs directly in the internal function B64_write_ASN1() which\nmay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\nthe BIO. This internal function is in turn called by the public API functions\nPEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\nSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\n\nOther public API functions that may be impacted by this include\ni2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\ni2d_PKCS7_bio_stream.\n\nThe OpenSSL cms and smime command line applications are similarly affected.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0215",
"url": "https://www.suse.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "SUSE Bug 1207536 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1207536"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1225628 for CVE-2023-0215",
"url": "https://bugzilla.suse.com/1225628"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:54:57Z",
"details": "moderate"
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0216",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0216"
}
],
"notes": [
{
"category": "general",
"text": "An invalid pointer dereference on read can be triggered when an\napplication tries to load malformed PKCS7 data with the\nd2i_PKCS7(), d2i_PKCS7_bio() or d2i_PKCS7_fp() functions.\n\nThe result of the dereference is an application crash which could\nlead to a denial of service attack. The TLS implementation in OpenSSL\ndoes not call this function however third party applications might\ncall these functions on untrusted data.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0216",
"url": "https://www.suse.com/security/cve/CVE-2023-0216"
},
{
"category": "external",
"summary": "SUSE Bug 1207539 for CVE-2023-0216",
"url": "https://bugzilla.suse.com/1207539"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:54:57Z",
"details": "moderate"
}
],
"title": "CVE-2023-0216"
},
{
"cve": "CVE-2023-0217",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0217"
}
],
"notes": [
{
"category": "general",
"text": "An invalid pointer dereference on read can be triggered when an\napplication tries to check a malformed DSA public key by the\nEVP_PKEY_public_check() function. This will most likely lead\nto an application crash. This function can be called on public\nkeys supplied from untrusted sources which could allow an attacker\nto cause a denial of service attack.\n\nThe TLS implementation in OpenSSL does not call this function\nbut applications might call the function if there are additional\nsecurity requirements imposed by standards such as FIPS 140-3.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0217",
"url": "https://www.suse.com/security/cve/CVE-2023-0217"
},
{
"category": "external",
"summary": "SUSE Bug 1207540 for CVE-2023-0217",
"url": "https://bugzilla.suse.com/1207540"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:54:57Z",
"details": "important"
}
],
"title": "CVE-2023-0217"
},
{
"cve": "CVE-2023-0286",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0286"
}
],
"notes": [
{
"category": "general",
"text": "There is a type confusion vulnerability relating to X.400 address processing\ninside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but\nthe public structure definition for GENERAL_NAME incorrectly specified the type\nof the x400Address field as ASN1_TYPE. This field is subsequently interpreted by\nthe OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an\nASN1_STRING.\n\nWhen CRL checking is enabled (i.e. the application sets the\nX509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass\narbitrary pointers to a memcmp call, enabling them to read memory contents or\nenact a denial of service. In most cases, the attack requires the attacker to\nprovide both the certificate chain and CRL, neither of which need to have a\nvalid signature. If the attacker only controls one of these inputs, the other\ninput must already contain an X.400 address as a CRL distribution point, which\nis uncommon. As such, this vulnerability is most likely to only affect\napplications which have implemented their own functionality for retrieving CRLs\nover a network.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0286",
"url": "https://www.suse.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "SUSE Bug 1207533 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1207533"
},
{
"category": "external",
"summary": "SUSE Bug 1207569 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1207569"
},
{
"category": "external",
"summary": "SUSE Bug 1211136 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1211136"
},
{
"category": "external",
"summary": "SUSE Bug 1211503 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1211503"
},
{
"category": "external",
"summary": "SUSE Bug 1213146 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1213146"
},
{
"category": "external",
"summary": "SUSE Bug 1214269 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1214269"
},
{
"category": "external",
"summary": "SUSE Bug 1218477 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1218477"
},
{
"category": "external",
"summary": "SUSE Bug 1218967 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1218967"
},
{
"category": "external",
"summary": "SUSE Bug 1225677 for CVE-2023-0286",
"url": "https://bugzilla.suse.com/1225677"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:54:57Z",
"details": "important"
}
],
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0401",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2023-0401"
}
],
"notes": [
{
"category": "general",
"text": "A NULL pointer can be dereferenced when signatures are being\nverified on PKCS7 signed or signedAndEnveloped data. In case the hash\nalgorithm used for the signature is known to the OpenSSL library but\nthe implementation of the hash algorithm is not available the digest\ninitialization will fail. There is a missing check for the return\nvalue from the initialization function which later leads to invalid\nusage of the digest API most likely leading to a crash.\n\nThe unavailability of an algorithm can be caused by using FIPS\nenabled configuration of providers or more commonly by not loading\nthe legacy provider.\n\nPKCS7 data is processed by the SMIME library calls and also by the\ntime stamp (TS) library calls. The TLS implementation in OpenSSL does\nnot call these functions however third party applications would be\naffected if they call these functions to verify signatures on untrusted\ndata.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2023-0401",
"url": "https://www.suse.com/security/cve/CVE-2023-0401"
},
{
"category": "external",
"summary": "SUSE Bug 1207541 for CVE-2023-0401",
"url": "https://bugzilla.suse.com/1207541"
},
{
"category": "external",
"summary": "SUSE Bug 1210509 for CVE-2023-0401",
"url": "https://bugzilla.suse.com/1210509"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.s390x",
"SUSE Linux Enterprise Module for Basesystem 15 SP4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl-3-devel-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl-3-devel-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:libopenssl3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:libopenssl3-32bit-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.aarch64",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.ppc64le",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.s390x",
"openSUSE Leap 15.4:openssl-3-3.0.1-150400.4.17.1.x86_64",
"openSUSE Leap 15.4:openssl-3-doc-3.0.1-150400.4.17.1.noarch"
]
}
],
"threats": [
{
"category": "impact",
"date": "2023-02-07T16:54:57Z",
"details": "important"
}
],
"title": "CVE-2023-0401"
}
]
}
VAR-202302-0195
Vulnerability from variot - Updated: 2026-03-09 20:45The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack.
The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected.
These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0.
The OpenSSL asn1parse command line application is also impacted by this issue. OpenSSL has payload data 0 become a part-time worker PEM When creating a file, PEM_read_bio_ex() A double free vulnerability exists because when returns a failure code, it introduces a pointer to an already freed buffer into the header argument.Malicious by attacker PEM Denial of service by providing files ( crash ) It may be in a state. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256
====================================================================
Red Hat Security Advisory
Synopsis: Important: edk2 security update Advisory ID: RHSA-2023:2932-01 Product: Red Hat Enterprise Linux Advisory URL: https://access.redhat.com/errata/RHSA-2023:2932 Issue date: 2023-05-16 CVE Names: CVE-2022-4304 CVE-2022-4450 CVE-2023-0215 CVE-2023-0286 ==================================================================== 1. Summary:
An update for edk2 is now available for Red Hat Enterprise Linux 8.
Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.
- Relevant releases/architectures:
Red Hat Enterprise Linux AppStream (v. 8) - noarch
- Description:
EDK (Embedded Development Kit) is a project to enable UEFI support for Virtual Machines. This package contains a sample 64-bit UEFI firmware for QEMU and KVM.
Security Fix(es):
-
openssl: X.400 address type confusion in X.509 GeneralName (CVE-2023-0286)
-
openssl: timing attack in RSA Decryption implementation (CVE-2022-4304)
-
openssl: double free after calling PEM_read_bio_ex (CVE-2022-4450)
-
openssl: use-after-free following BIO_new_NDEF (CVE-2023-0215)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
Additional Changes:
For detailed information on changes in this release, see the Red Hat Enterprise Linux 8.8 Release Notes linked from the References section.
- Solution:
For details on how to apply this update, which includes the changes described in this advisory, refer to:
https://access.redhat.com/articles/11258
- Bugs fixed (https://bugzilla.redhat.com/):
2164440 - CVE-2023-0286 openssl: X.400 address type confusion in X.509 GeneralName 2164487 - CVE-2022-4304 openssl: timing attack in RSA Decryption implementation 2164492 - CVE-2023-0215 openssl: use-after-free following BIO_new_NDEF 2164494 - CVE-2022-4450 openssl: double free after calling PEM_read_bio_ex
- Package List:
Red Hat Enterprise Linux AppStream (v. 8):
Source: edk2-20220126gitbb1bba3d77-4.el8.src.rpm
noarch: edk2-aarch64-20220126gitbb1bba3d77-4.el8.noarch.rpm edk2-ovmf-20220126gitbb1bba3d77-4.el8.noarch.rpm
These packages are GPG signed by Red Hat for security. Our key and details on how to verify the signature are available from https://access.redhat.com/security/team/key/
- References:
https://access.redhat.com/security/cve/CVE-2022-4304 https://access.redhat.com/security/cve/CVE-2022-4450 https://access.redhat.com/security/cve/CVE-2023-0215 https://access.redhat.com/security/cve/CVE-2023-0286 https://access.redhat.com/security/updates/classification/#important https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/8.8_release_notes/index
- Contact:
The Red Hat security contact is secalert@redhat.com. More contact details at https://access.redhat.com/security/team/contact/
Copyright 2023 Red Hat, Inc. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1
iQIVAwUBZGNvBNzjgjWX9erEAQgffQ/9HvbzkfEgQVpVIlEyJLWH1rEQ+nxeLB4/ ZYPoXef3Epph+dYxc8q1X6Li8Wvygn/qpCYKqsnsIksxT5mFjtKsj1LP01IZ+GwP dgNH/loBVM711fpH2krwop81ozOMXgeQdnsNzl5kBeEzncwjcRNYDIqQoCGfevCJ YUMre7JpLTUkX0tlvMa+3SY1nxdGw3V/5LSyuMJJOCmW2fABmahDW3ovPLKDJ2T5 DHrZE+hkCDK+Klefp48Pkg9lJm6oQbXnkcOhU5ptnBV5ByXccCAkq+UotC1halHJ mSyLFOVSpl4qdCMH+PtmdhXNtMw2NYJj0qxEYBBga+cmicfKhdYSf4yF+POJUS/a 1XgheSMgacP9JYFaoU96Gzd1Mf7gWhoPD+nExXma4KhpN8dOB6KiCgp7zcgv8fWj m6Uh+ltkD/lrlIGO9ye8aJGd3jYm2R+7RjA8KZVG5WY7uzy+tt0HLW19B1O199Fo Sv33oGrU5haSEEixRGdshC4X7hcTElzwra1nqXATsx0PniyXIo1W+O9yFrX+AAqG v7LenKX8lUaoWCNszqu3e7rWACrZvxQsLry6nwFj0giu9SorhVDPuAjqiDNgxkZq OpAJYrttbRPA5HuIa6y03wY5HjY5YUkzJXgH3hQD9foDUndq/oTs7CXoLOvYL+iS lweVx49ofzA=BPMh -----END PGP SIGNATURE----- -- RHSA-announce mailing list RHSA-announce@redhat.com https://listman.redhat.com/mailman/listinfo/rhsa-announce . Bugs fixed (https://bugzilla.redhat.com/):
2212085 - CVE-2023-3089 openshift: OCP & FIPS mode
- Red Hat OpenShift Data Foundation is a highly scalable, production-grade persistent storage for stateful applications running in the Red Hat OpenShift Container Platform. In addition to persistent storage, Red Hat OpenShift Data Foundation provisions a multicloud data management service with an S3 compatible API.
All users of Red Hat OpenShift Data Foundation are advised to upgrade to these updated images, which provide several bug fixes. Bugs fixed (https://bugzilla.redhat.com/):
2171965 - [4.11 clone] Secrets are used in env variables 2176012 - [ODF 4.11] Move the defaults for rookceph operator from configmap to csv 2181405 - CVE-2022-40186 vault: Vault Entity Alias Metadata May Leak Between Aliases With The Same Name Assigned To The Same Entity 2183683 - [ODF 4.11] Deployment of ODF 4.9 over external mode failing with: panic: assignment to entry in nil map in ocs-operator logs 2186456 - Include at ODF 4.11 container images the RHEL8 CVE fix on "openssl"
- Bugs fixed (https://bugzilla.redhat.com/):
2138971 - CVE-2022-3782 keycloak: path traversal via double URL encoding 2155682 - CVE-2022-46364 Apache CXF: SSRF Vulnerability 2162200 - CVE-2022-31690 spring-security-oauth2-client: Privilege Escalation in spring-security-oauth2-client 2170431 - CVE-2022-41966 xstream: Denial of Service by injecting recursive collections or maps based on element's hash values raising a stack overflow
- JIRA issues fixed (https://issues.jboss.org/):
MTA-118 - Automated tagging of resources with Windup MTA-123 - MTA crashes cluster nodes when running bulk binary analysis due to requests and limits not being configurable MTA-129 - User field in Manage Import is empty MTA-160 - [Upstream] Maven Repositories "No QueryClient set, use QueryClientProvider to set one" MTA-204 - Every http request made to tagtypes returns HTTP Status 404 MTA-256 - Update application import template MTA-260 - [Regression] Application import through OOTB import template fails MTA-261 - [Regression] UI incorrectly reports target applications have in-progress/complete assessment MTA-263 - [Regression] Discard assessment option present even when assessment is not complete MTA-267 - Analysis EAP targets should include eap8 MTA-268 - RFE: Automated Tagging details to add on Review analysis details page MTA-279 - All types of Source analysis is failing in MTA 6.1.0 MTA-28 - Success Alert is not displayed when subsequent analysis are submitted MTA-282 - Discarding review results in 404 error MTA-283 - Sorting broken on Application inventory page MTA-284 - HTML reports download with no files in reports and stats folders MTA-29 - Asterisk on Description while creating a credentials should be removed MTA-297 - [Custom migration targets] Cannot upload JPG file as an icon MTA-298 - [Custom migration targets] Unclear error when uploading image greater than 1Mb of size MTA-299 - [RFE][Custom migration targets] Assign an icon: Add image max size in the note under the image name MTA-300 - [Custom rules] Cannot upload more than one rules file MTA-303 - [UI][Custom migration targets] The word "Please" should be removed from the error message about existing custom target name MTA-304 - [Custom rules] Failed analysis when retrieving custom rules files from a repository MTA-306 - MTA allows the uploading of multiple binaries for analysis MTA-311 - MTA operator fails to reconcile on a clean (non-upgrade) install MTA-314 - PVCs may not provision if storageClassName is not set. MTA-330 - With auth disabled, 'username' seen in the persona dropdown MTA-332 - Tagging: Few Tags are highlighted with color MTA-34 - Cannot filter by Business Service when copying assessments MTA-345 - [Custom migration targets] Error message "imageID must be defined" is displayed when uploading image MTA-35 - Only the first notification is displayed when discarding multiple copied assessments MTA-350 - Maven Central links from the dependencies tab in reports seem to be broken MTA-351 - AspectJ is not identified as an Open Source Library MTA-356 - The inventory view has to be refreshed for the tags that were assigned by an analysis to appear MTA-363 - [UI][Custom migration targets] "Repository type" field name is missing MTA-364 - [Custom migration targets] Unknown image file when editing a custom migration target MTA-366 - Tagging: For no tags attached "filter by" can be improved MTA-367 - [Custom migration targets] Cannot use a custom migration target in analysis MTA-369 - Custom migration targets: HTML elements are duplicated MTA-375 - Run button does not execute the analysis MTA-377 - [UI][Custom rules] Custom rules screen of the analysis configuration wizard is always marked as required MTA-378 - [UI][Custom rules] Info message on the Custom rules screen is not updated MTA-38 - Only the first notification is displayed when multiple files are imported. MTA-381 - Custom Rules: When try to update Add rules the Error alert is displayed MTA-382 - Custom Rules: Sometimes able to upload duplicate rules files MTA-388 - CSV reports download empty when enabling the option after an analysis MTA-389 - [Custom rules in Analysis] Failed analysis when retrieving custom rules files from a private repository MTA-391 - [Custom rules in Analysis] Targets from uploaded rules file are not removed once the file is removed MTA-392 - Unable to see all custom migration targets when using a vertical monitor MTA-41 - [UI] Failed to refresh token if Keycloak feature "Use Refresh Tokens" is off MTA-412 - Display alert message before reviewing an already reviewed application MTA-428 - [Custom Rules] MTA analysis custom rules conflict message MTA-430 - Analysis wizard: Next button should be enabled only after at least one target is selected MTA-438 - Tagging: Retrieving tags needs a loading indicator MTA-439 - [Regression][Custom rules] Failed to run analysis with custom rules from a repository MTA-443 - Custom rules: Add button can be disabled until duplicate rule file is removed MTA-50 - RFE: Replace the MTA acronym in the title with "Migration Toolkit for Applications" MTA-51 - RFE: " Select the list of packages to be analyzed manually" to modify the title MTA-52 - [RFE] We can change "Not associated artifact" to "No associated artifact" MTA-55 - Can't choose a custom rule via a file explorer(mac OS finder) in Tackle 2.0 MTA-78 - CVE-2022-46364 org.keycloak-keycloak-parent: Apache CXF: SSRF Vulnerability [mta-6.0] MTA-99 - Unable to use root path during checking for maven dependencies
- Summary:
Multicluster Engine for Kubernetes 2.1.6 General Availability release images, which fix bugs and security updates container images. Description:
Multicluster Engine for Kubernetes 2.1.6 images
Multicluster engine for Kubernetes provides the foundational components that are necessary for the centralized management of multiple Kubernetes-based clusters across data centers, public clouds, and private clouds.
You can use the engine to create new Red Hat OpenShift Container Platform clusters or to bring existing Kubernetes-based clusters under management by importing them. After the clusters are managed, you can use the APIs that are provided by the engine to distribute configuration based on placement policy.
Jira issue addressed:
ACM-3513: MCE 2.1.6 images
Security fix(es):
-
CVE-2022-25881 http-cache-semantics: Regular Expression Denial of Service (ReDoS) vulnerability
-
Solution:
For multicluster engine for Kubernetes, see the following documentation for details on how to install the images:
https://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.6/html/multicluster_engine/multicluster_engine_overview#installing-while-connected-online-mce
- Bugs fixed (https://bugzilla.redhat.com/):
2165824 - CVE-2022-25881 http-cache-semantics: Regular Expression Denial of Service (ReDoS) vulnerability
- Description:
Security Fix(es)
- CVE-2023-29017 vm2: Sandbox Escape
- CVE-2023-29199 vm2: Sandbox Escape
-
CVE-2023-30547 vm2: Sandbox Escape when exception sanitization
See https://access.redhat.com/solutions/7007647 for instructions on how to apply this hotfix, as well as for information about when the hotfix has been superseded by a permanent fix and should be removed.
Important: This hotfix is a temporary fix that will be supported until 30 days after the date when the next patch release of the product is released. After the 30-day period ends, you must either update to the latest patch release and remove this hotfix to continue receiving security updates and maintain support or upgrade to a newer feature release of the product. Bugs fixed (https://bugzilla.redhat.com/):
2185374 - CVE-2023-29017 vm2: sandbox escape 2187409 - CVE-2023-29199 vm2: Sandbox Escape 2187608 - CVE-2023-30547 vm2: Sandbox Escape when exception sanitization
- Description:
Red Hat JBoss Web Server is a fully integrated and certified set of components for hosting Java web applications. It is comprised of the Apache Tomcat Servlet container, JBoss HTTP Connector (mod_cluster), the PicketLink Vault extension for Apache Tomcat, and the Tomcat Native library. Solution:
Before applying this update, make sure all previously released errata relevant to your system have been applied. JIRA issues fixed (https://issues.redhat.com/):
JWS-2933 - Update openssl from JBCS to versions from 2.4.51-SP2
- Summary:
The Migration Toolkit for Containers (MTC) 1.7.10 is now available. Description:
The Migration Toolkit for Containers (MTC) enables you to migrate Kubernetes resources, persistent volume data, and internal container images between OpenShift Container Platform clusters, using the MTC web console or the Kubernetes API. Bugs fixed (https://bugzilla.redhat.com/):
2184481 - CVE-2023-24538 golang: html/template: backticks not treated as string delimiters 2184482 - CVE-2023-24536 golang: net/http, net/textproto, mime/multipart: denial of service from excessive resource consumption 2184483 - CVE-2023-24534 golang: net/http, net/textproto: denial of service from excessive memory allocation 2184484 - CVE-2023-24537 golang: go/parser: Infinite loop in parsing 2196027 - CVE-2023-24540 golang: html/template: improper handling of JavaScript whitespace 2204461 - Adjust rsync options in DVM 2210565 - Direct migration completes with warnings, failing on DVM phase 2212528 - Rsync pod fails due to error in starting client-server protocol (code 5)
5
Show details on source website{
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#",
"affected_products": {
"@id": "https://www.variotdbs.pl/ref/affected_products"
},
"credits": {
"@id": "https://www.variotdbs.pl/ref/credits"
},
"cvss": {
"@id": "https://www.variotdbs.pl/ref/cvss/"
},
"description": {
"@id": "https://www.variotdbs.pl/ref/description/"
},
"exploit_availability": {
"@id": "https://www.variotdbs.pl/ref/exploit_availability/"
},
"external_ids": {
"@id": "https://www.variotdbs.pl/ref/external_ids/"
},
"iot": {
"@id": "https://www.variotdbs.pl/ref/iot/"
},
"iot_taxonomy": {
"@id": "https://www.variotdbs.pl/ref/iot_taxonomy/"
},
"patch": {
"@id": "https://www.variotdbs.pl/ref/patch/"
},
"problemtype_data": {
"@id": "https://www.variotdbs.pl/ref/problemtype_data/"
},
"references": {
"@id": "https://www.variotdbs.pl/ref/references/"
},
"sources": {
"@id": "https://www.variotdbs.pl/ref/sources/"
},
"sources_release_date": {
"@id": "https://www.variotdbs.pl/ref/sources_release_date/"
},
"sources_update_date": {
"@id": "https://www.variotdbs.pl/ref/sources_update_date/"
},
"threat_type": {
"@id": "https://www.variotdbs.pl/ref/threat_type/"
},
"title": {
"@id": "https://www.variotdbs.pl/ref/title/"
},
"type": {
"@id": "https://www.variotdbs.pl/ref/type/"
}
},
"@id": "https://www.variotdbs.pl/vuln/VAR-202302-0195",
"affected_products": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/affected_products#",
"data": {
"@container": "@list"
},
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
},
"@id": "https://www.variotdbs.pl/ref/sources"
}
},
"data": [
{
"model": "ucosminexus primary server base",
"scope": null,
"trust": 1.6,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "ucosminexus application server",
"scope": null,
"trust": 1.6,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "ucosminexus service platform",
"scope": null,
"trust": 1.6,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "network security",
"scope": "lt",
"trust": 1.0,
"vendor": "stormshield",
"version": "4.3.16"
},
{
"model": "openssl",
"scope": "lt",
"trust": 1.0,
"vendor": "openssl",
"version": "3.0.8"
},
{
"model": "network security",
"scope": "lt",
"trust": 1.0,
"vendor": "stormshield",
"version": "4.6.3"
},
{
"model": "openssl",
"scope": "gte",
"trust": 1.0,
"vendor": "openssl",
"version": "3.0.0"
},
{
"model": "network security",
"scope": "gte",
"trust": 1.0,
"vendor": "stormshield",
"version": "4.4.0"
},
{
"model": "openssl",
"scope": "gte",
"trust": 1.0,
"vendor": "openssl",
"version": "1.1.1"
},
{
"model": "network security",
"scope": "gte",
"trust": 1.0,
"vendor": "stormshield",
"version": "4.0.0"
},
{
"model": "openssl",
"scope": "lt",
"trust": 1.0,
"vendor": "openssl",
"version": "1.1.1t"
},
{
"model": "neoface monitor",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "istorage v300",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "ucosminexus application server-r",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/data highway - server",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "\u990a\u6b96\u9b5a\u30b5\u30a4\u30ba\u6e2c\u5b9a\u81ea\u52d5\u5316\u30b5\u30fc\u30d3\u30b9",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u74b0\u5883 for java",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/service support starter edition",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "\u5f97\u9078\u8857\u30fbgcb",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "ucosminexus developer",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/service support",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "hitachi configuration manager",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/base",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/it desktop management 2 - operations director",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/automatic job management system 3 - definitions assistant",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "connexive application platform",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "jp1/navigation platform for developers",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/automatic job management system 3 - manager",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "webotx application server",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "hitachi ops center administrator",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "hitachi ops center common services",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "ucosminexus service architect",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "istorage t280",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "hitachi ops center analyzer viewpoint",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "nec enhanced speech analysis",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "jp1/it desktop management 2 - manager",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/navigation platform",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "hitachi ops center analyzer",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "cosminexus http server",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "hitachi ops center automator",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "hitachi automation director",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "connexive pf",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "esmpro/serveragent",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "hitachi ops center api configuration manager",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "istorage v100",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "jp1/file transmission server/ftp",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "spoolserver/reportfiling",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "actsecure \u30dd\u30fc\u30bf\u30eb",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "iot \u5171\u901a\u57fa\u76e4",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "vran",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "nec multimedia olap for \u6620\u50cf\u5206\u6790\u30b5\u30fc\u30d3\u30b9",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "jp1/data highway - server starter edition",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/performance management",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/it desktop management 2 - smart device manager",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/operations analytics",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "nec ai accelerator",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "openssl",
"scope": null,
"trust": 0.8,
"vendor": "openssl",
"version": null
},
{
"model": "istorage v10e",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "ix \u30eb\u30fc\u30bf",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u672c\u96fb\u6c17",
"version": null
},
{
"model": "hitachi ops center viewpoint",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/automatic operation",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
},
{
"model": "jp1/snmp system observer",
"scope": null,
"trust": 0.8,
"vendor": "\u65e5\u7acb",
"version": null
}
],
"sources": [
{
"db": "JVNDB",
"id": "JVNDB-2022-003616"
},
{
"db": "NVD",
"id": "CVE-2022-4450"
}
]
},
"credits": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/credits#",
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
}
}
},
"data": "Red Hat",
"sources": [
{
"db": "PACKETSTORM",
"id": "172373"
},
{
"db": "PACKETSTORM",
"id": "173547"
},
{
"db": "PACKETSTORM",
"id": "172045"
},
{
"db": "PACKETSTORM",
"id": "172054"
},
{
"db": "PACKETSTORM",
"id": "172084"
},
{
"db": "PACKETSTORM",
"id": "171947"
},
{
"db": "PACKETSTORM",
"id": "172737"
},
{
"db": "PACKETSTORM",
"id": "172973"
}
],
"trust": 0.8
},
"cve": "CVE-2022-4450",
"cvss": {
"@context": {
"cvssV2": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#"
},
"@id": "https://www.variotdbs.pl/ref/cvss/cvssV2"
},
"cvssV3": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#"
},
"@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/"
},
"severity": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/cvss/severity#"
},
"@id": "https://www.variotdbs.pl/ref/cvss/severity"
},
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
},
"@id": "https://www.variotdbs.pl/ref/sources"
}
},
"data": [
{
"cvssV2": [],
"cvssV3": [
{
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"author": "nvd@nist.gov",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"exploitabilityScore": 3.9,
"id": "CVE-2022-4450",
"impactScore": 3.6,
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"trust": 2.0,
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
{
"attackComplexity": "Low",
"attackVector": "Network",
"author": "NVD",
"availabilityImpact": "High",
"baseScore": 7.5,
"baseSeverity": "High",
"confidentialityImpact": "None",
"exploitabilityScore": null,
"id": "CVE-2022-4450",
"impactScore": null,
"integrityImpact": "None",
"privilegesRequired": "None",
"scope": "Unchanged",
"trust": 0.8,
"userInteraction": "None",
"vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.0"
}
],
"severity": [
{
"author": "nvd@nist.gov",
"id": "CVE-2022-4450",
"trust": 1.0,
"value": "HIGH"
},
{
"author": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"id": "CVE-2022-4450",
"trust": 1.0,
"value": "HIGH"
},
{
"author": "NVD",
"id": "CVE-2022-4450",
"trust": 0.8,
"value": "High"
}
]
}
],
"sources": [
{
"db": "JVNDB",
"id": "JVNDB-2022-003616"
},
{
"db": "NVD",
"id": "CVE-2022-4450"
},
{
"db": "NVD",
"id": "CVE-2022-4450"
}
]
},
"description": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/description#",
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
}
}
},
"data": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\ndecodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. \nIf the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\npopulated with pointers to buffers containing the relevant decoded data. The\ncaller is responsible for freeing those buffers. It is possible to construct a\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\nwill return a failure code but will populate the header argument with a pointer\nto a buffer that has already been freed. If the caller also frees this buffer\nthen a double free will occur. This will most likely lead to a crash. This\ncould be exploited by an attacker who has the ability to supply malicious PEM\nfiles for parsing to achieve a denial of service attack. \n\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\nPEM_read_bio_ex() and therefore these functions are also directly affected. \n\nThese functions are also called indirectly by a number of other OpenSSL\nfunctions including PEM_X509_INFO_read_bio_ex() and\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\nuses of these functions are not vulnerable because the caller does not free the\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\nOpenSSL 3.0. \n\nThe OpenSSL asn1parse command line application is also impacted by this issue. OpenSSL has payload data 0 become a part-time worker PEM When creating a file, PEM_read_bio_ex() A double free vulnerability exists because when returns a failure code, it introduces a pointer to an already freed buffer into the header argument.Malicious by attacker PEM Denial of service by providing files ( crash ) It may be in a state. -----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA256\n\n==================================================================== \nRed Hat Security Advisory\n\nSynopsis: Important: edk2 security update\nAdvisory ID: RHSA-2023:2932-01\nProduct: Red Hat Enterprise Linux\nAdvisory URL: https://access.redhat.com/errata/RHSA-2023:2932\nIssue date: 2023-05-16\nCVE Names: CVE-2022-4304 CVE-2022-4450 CVE-2023-0215\n CVE-2023-0286\n====================================================================\n1. Summary:\n\nAn update for edk2 is now available for Red Hat Enterprise Linux 8. \n\nRed Hat Product Security has rated this update as having a security impact\nof Important. A Common Vulnerability Scoring System (CVSS) base score,\nwhich gives a detailed severity rating, is available for each vulnerability\nfrom the CVE link(s) in the References section. \n\n2. Relevant releases/architectures:\n\nRed Hat Enterprise Linux AppStream (v. 8) - noarch\n\n3. Description:\n\nEDK (Embedded Development Kit) is a project to enable UEFI support for\nVirtual Machines. This package contains a sample 64-bit UEFI firmware for\nQEMU and KVM. \n\nSecurity Fix(es):\n\n* openssl: X.400 address type confusion in X.509 GeneralName\n(CVE-2023-0286)\n\n* openssl: timing attack in RSA Decryption implementation (CVE-2022-4304)\n\n* openssl: double free after calling PEM_read_bio_ex (CVE-2022-4450)\n\n* openssl: use-after-free following BIO_new_NDEF (CVE-2023-0215)\n\nFor more details about the security issue(s), including the impact, a CVSS\nscore, acknowledgments, and other related information, refer to the CVE\npage(s) listed in the References section. \n\nAdditional Changes:\n\nFor detailed information on changes in this release, see the Red Hat\nEnterprise Linux 8.8 Release Notes linked from the References section. \n\n4. Solution:\n\nFor details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\n5. Bugs fixed (https://bugzilla.redhat.com/):\n\n2164440 - CVE-2023-0286 openssl: X.400 address type confusion in X.509 GeneralName\n2164487 - CVE-2022-4304 openssl: timing attack in RSA Decryption implementation\n2164492 - CVE-2023-0215 openssl: use-after-free following BIO_new_NDEF\n2164494 - CVE-2022-4450 openssl: double free after calling PEM_read_bio_ex\n\n6. Package List:\n\nRed Hat Enterprise Linux AppStream (v. 8):\n\nSource:\nedk2-20220126gitbb1bba3d77-4.el8.src.rpm\n\nnoarch:\nedk2-aarch64-20220126gitbb1bba3d77-4.el8.noarch.rpm\nedk2-ovmf-20220126gitbb1bba3d77-4.el8.noarch.rpm\n\nThese packages are GPG signed by Red Hat for security. Our key and\ndetails on how to verify the signature are available from\nhttps://access.redhat.com/security/team/key/\n\n7. References:\n\nhttps://access.redhat.com/security/cve/CVE-2022-4304\nhttps://access.redhat.com/security/cve/CVE-2022-4450\nhttps://access.redhat.com/security/cve/CVE-2023-0215\nhttps://access.redhat.com/security/cve/CVE-2023-0286\nhttps://access.redhat.com/security/updates/classification/#important\nhttps://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/8.8_release_notes/index\n\n8. Contact:\n\nThe Red Hat security contact is \u003csecalert@redhat.com\u003e. More contact\ndetails at https://access.redhat.com/security/team/contact/\n\nCopyright 2023 Red Hat, Inc. \n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v1\n\niQIVAwUBZGNvBNzjgjWX9erEAQgffQ/9HvbzkfEgQVpVIlEyJLWH1rEQ+nxeLB4/\nZYPoXef3Epph+dYxc8q1X6Li8Wvygn/qpCYKqsnsIksxT5mFjtKsj1LP01IZ+GwP\ndgNH/loBVM711fpH2krwop81ozOMXgeQdnsNzl5kBeEzncwjcRNYDIqQoCGfevCJ\nYUMre7JpLTUkX0tlvMa+3SY1nxdGw3V/5LSyuMJJOCmW2fABmahDW3ovPLKDJ2T5\nDHrZE+hkCDK+Klefp48Pkg9lJm6oQbXnkcOhU5ptnBV5ByXccCAkq+UotC1halHJ\nmSyLFOVSpl4qdCMH+PtmdhXNtMw2NYJj0qxEYBBga+cmicfKhdYSf4yF+POJUS/a\n1XgheSMgacP9JYFaoU96Gzd1Mf7gWhoPD+nExXma4KhpN8dOB6KiCgp7zcgv8fWj\nm6Uh+ltkD/lrlIGO9ye8aJGd3jYm2R+7RjA8KZVG5WY7uzy+tt0HLW19B1O199Fo\nSv33oGrU5haSEEixRGdshC4X7hcTElzwra1nqXATsx0PniyXIo1W+O9yFrX+AAqG\nv7LenKX8lUaoWCNszqu3e7rWACrZvxQsLry6nwFj0giu9SorhVDPuAjqiDNgxkZq\nOpAJYrttbRPA5HuIa6y03wY5HjY5YUkzJXgH3hQD9foDUndq/oTs7CXoLOvYL+iS\nlweVx49ofzA=BPMh\n-----END PGP SIGNATURE-----\n--\nRHSA-announce mailing list\nRHSA-announce@redhat.com\nhttps://listman.redhat.com/mailman/listinfo/rhsa-announce\n. Bugs fixed (https://bugzilla.redhat.com/):\n\n2212085 - CVE-2023-3089 openshift: OCP \u0026 FIPS mode\n\n5. Red Hat\nOpenShift Data Foundation is a highly scalable, production-grade persistent\nstorage for stateful applications running in the Red Hat OpenShift\nContainer Platform. In addition to persistent storage, Red Hat OpenShift\nData Foundation provisions a multicloud data management service with an S3\ncompatible API. \n\nAll users of Red Hat OpenShift Data Foundation are advised to upgrade to\nthese updated images, which provide several bug fixes. Bugs fixed (https://bugzilla.redhat.com/):\n\n2171965 - [4.11 clone] Secrets are used in env variables\n2176012 - [ODF 4.11] Move the defaults for rookceph operator from configmap to csv\n2181405 - CVE-2022-40186 vault: Vault Entity Alias Metadata May Leak Between Aliases With The Same Name Assigned To The Same Entity\n2183683 - [ODF 4.11] Deployment of ODF 4.9 over external mode failing with: panic: assignment to entry in nil map in ocs-operator logs\n2186456 - Include at ODF 4.11 container images the RHEL8 CVE fix on \"openssl\"\n\n5. Bugs fixed (https://bugzilla.redhat.com/):\n\n2138971 - CVE-2022-3782 keycloak: path traversal via double URL encoding\n2155682 - CVE-2022-46364 Apache CXF: SSRF Vulnerability\n2162200 - CVE-2022-31690 spring-security-oauth2-client: Privilege Escalation in spring-security-oauth2-client\n2170431 - CVE-2022-41966 xstream: Denial of Service by injecting recursive collections or maps based on element\u0027s hash values raising a stack overflow\n\n5. JIRA issues fixed (https://issues.jboss.org/):\n\nMTA-118 - Automated tagging of resources with Windup\nMTA-123 - MTA crashes cluster nodes when running bulk binary analysis due to requests and limits not being configurable\nMTA-129 - User field in Manage Import is empty\nMTA-160 - [Upstream] Maven Repositories \"No QueryClient set, use QueryClientProvider to set one\"\nMTA-204 - Every http request made to tagtypes returns HTTP Status 404\nMTA-256 - Update application import template\nMTA-260 - [Regression] Application import through OOTB import template fails\nMTA-261 - [Regression] UI incorrectly reports target applications have in-progress/complete assessment\nMTA-263 - [Regression] Discard assessment option present even when assessment is not complete\nMTA-267 - Analysis EAP targets should include eap8\nMTA-268 - RFE: Automated Tagging details to add on Review analysis details page\nMTA-279 - All types of Source analysis is failing in MTA 6.1.0\nMTA-28 - Success Alert is not displayed when subsequent analysis are submitted\nMTA-282 - Discarding review results in 404 error\nMTA-283 - Sorting broken on Application inventory page\nMTA-284 - HTML reports download with no files in reports and stats folders\nMTA-29 - Asterisk on Description while creating a credentials should be removed\nMTA-297 - [Custom migration targets] Cannot upload JPG file as an icon\nMTA-298 - [Custom migration targets] Unclear error when uploading image greater than 1Mb of size\nMTA-299 - [RFE][Custom migration targets] Assign an icon: Add image max size in the note under the image name\nMTA-300 - [Custom rules] Cannot upload more than one rules file\nMTA-303 - [UI][Custom migration targets] The word \"Please\" should be removed from the error message about existing custom target name\nMTA-304 - [Custom rules] Failed analysis when retrieving custom rules files from a repository\nMTA-306 - MTA allows the uploading of multiple binaries for analysis\nMTA-311 - MTA operator fails to reconcile on a clean (non-upgrade) install\nMTA-314 - PVCs may not provision if storageClassName is not set. \nMTA-330 - With auth disabled, \u0027username\u0027 seen in the persona dropdown\nMTA-332 - Tagging: Few Tags are highlighted with color\nMTA-34 - Cannot filter by Business Service when copying assessments\nMTA-345 - [Custom migration targets] Error message \"imageID must be defined\" is displayed when uploading image \nMTA-35 - Only the first notification is displayed when discarding multiple copied assessments\nMTA-350 - Maven Central links from the dependencies tab in reports seem to be broken\nMTA-351 - AspectJ is not identified as an Open Source Library\nMTA-356 - The inventory view has to be refreshed for the tags that were assigned by an analysis to appear\nMTA-363 - [UI][Custom migration targets] \"Repository type\" field name is missing\nMTA-364 - [Custom migration targets] Unknown image file when editing a custom migration target\nMTA-366 - Tagging: For no tags attached \"filter by\" can be improved\nMTA-367 - [Custom migration targets] Cannot use a custom migration target in analysis\nMTA-369 - Custom migration targets: HTML elements are duplicated\nMTA-375 - Run button does not execute the analysis\nMTA-377 - [UI][Custom rules] Custom rules screen of the analysis configuration wizard is always marked as required\nMTA-378 - [UI][Custom rules] Info message on the Custom rules screen is not updated\nMTA-38 - Only the first notification is displayed when multiple files are imported. \nMTA-381 - Custom Rules: When try to update Add rules the Error alert is displayed\nMTA-382 - Custom Rules: Sometimes able to upload duplicate rules files\nMTA-388 - CSV reports download empty when enabling the option after an analysis\nMTA-389 - [Custom rules in Analysis] Failed analysis when retrieving custom rules files from a private repository\nMTA-391 - [Custom rules in Analysis] Targets from uploaded rules file are not removed once the file is removed\nMTA-392 - Unable to see all custom migration targets when using a vertical monitor\nMTA-41 - [UI] Failed to refresh token if Keycloak feature \"Use Refresh Tokens\" is off\nMTA-412 - Display alert message before reviewing an already reviewed application\nMTA-428 - [Custom Rules] MTA analysis custom rules conflict message\nMTA-430 - Analysis wizard: Next button should be enabled only after at least one target is selected\nMTA-438 - Tagging: Retrieving tags needs a loading indicator\nMTA-439 - [Regression][Custom rules] Failed to run analysis with custom rules from a repository \nMTA-443 - Custom rules: Add button can be disabled until duplicate rule file is removed\nMTA-50 - RFE: Replace the MTA acronym in the title with \"Migration Toolkit for Applications\"\nMTA-51 - RFE: \" Select the list of packages to be analyzed manually\" to modify the title\nMTA-52 - [RFE] We can change \"Not associated artifact\" to \"No associated artifact\"\nMTA-55 - Can\u0027t choose a custom rule via a file explorer(mac OS finder) in Tackle 2.0\nMTA-78 - CVE-2022-46364 org.keycloak-keycloak-parent: Apache CXF: SSRF Vulnerability [mta-6.0]\nMTA-99 - Unable to use root path during checking for maven dependencies\n\n6. Summary:\n\nMulticluster Engine for Kubernetes 2.1.6 General Availability release\nimages,\nwhich fix bugs and security updates container images. Description:\n\nMulticluster Engine for Kubernetes 2.1.6 images\n\nMulticluster engine for Kubernetes provides the foundational components\nthat are necessary for the centralized management of multiple\nKubernetes-based clusters across data centers, public clouds, and private\nclouds. \n\nYou can use the engine to create new Red Hat OpenShift Container Platform\nclusters or to bring existing Kubernetes-based clusters under management by\nimporting them. After the clusters are managed, you can use the APIs that\nare provided by the engine to distribute configuration based on placement\npolicy. \n\nJira issue addressed:\n\nACM-3513: MCE 2.1.6 images\n\nSecurity fix(es):\n\n* CVE-2022-25881 http-cache-semantics: Regular Expression Denial of Service\n(ReDoS) vulnerability\n\n3. Solution:\n\nFor multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.6/html/multicluster_engine/multicluster_engine_overview#installing-while-connected-online-mce\n\n4. Bugs fixed (https://bugzilla.redhat.com/):\n\n2165824 - CVE-2022-25881 http-cache-semantics: Regular Expression Denial of Service (ReDoS) vulnerability\n\n5. Description:\n\nSecurity Fix(es)\n\n* CVE-2023-29017 vm2: Sandbox Escape\n* CVE-2023-29199 vm2: Sandbox Escape\n* CVE-2023-30547 vm2: Sandbox Escape when exception sanitization\n\n3. \n\nSee https://access.redhat.com/solutions/7007647 for instructions on how to\napply this hotfix, as well as for information about when the hotfix has\nbeen\nsuperseded by a permanent fix and should be removed. \n\nImportant: This hotfix is a temporary fix that will be supported until 30\ndays after the date when the next patch release of the product is released. \nAfter the 30-day period ends, you must either update to the latest patch\nrelease and remove this hotfix to continue receiving security updates and\nmaintain support or upgrade to a newer feature release of the product. Bugs fixed (https://bugzilla.redhat.com/):\n\n2185374 - CVE-2023-29017 vm2: sandbox escape\n2187409 - CVE-2023-29199 vm2: Sandbox Escape\n2187608 - CVE-2023-30547 vm2: Sandbox Escape when exception sanitization\n\n5. Description:\n\nRed Hat JBoss Web Server is a fully integrated and certified set of\ncomponents for hosting Java web applications. It is comprised of the Apache\nTomcat Servlet container, JBoss HTTP Connector (mod_cluster), the\nPicketLink Vault extension for Apache Tomcat, and the Tomcat Native\nlibrary. Solution:\n\nBefore applying this update, make sure all previously released errata\nrelevant to your system have been applied. JIRA issues fixed (https://issues.redhat.com/):\n\nJWS-2933 - Update openssl from JBCS to versions from 2.4.51-SP2\n\n6. Summary:\n\nThe Migration Toolkit for Containers (MTC) 1.7.10 is now available. Description:\n\nThe Migration Toolkit for Containers (MTC) enables you to migrate\nKubernetes resources, persistent volume data, and internal container images\nbetween OpenShift Container Platform clusters, using the MTC web console or\nthe Kubernetes API. Bugs fixed (https://bugzilla.redhat.com/):\n\n2184481 - CVE-2023-24538 golang: html/template: backticks not treated as string delimiters\n2184482 - CVE-2023-24536 golang: net/http, net/textproto, mime/multipart: denial of service from excessive resource consumption\n2184483 - CVE-2023-24534 golang: net/http, net/textproto: denial of service from excessive memory allocation\n2184484 - CVE-2023-24537 golang: go/parser: Infinite loop in parsing\n2196027 - CVE-2023-24540 golang: html/template: improper handling of JavaScript whitespace\n2204461 - Adjust rsync options in DVM\n2210565 - Direct migration completes with warnings, failing on DVM phase\n2212528 - Rsync pod fails due to error in starting client-server protocol (code 5)\n\n5",
"sources": [
{
"db": "NVD",
"id": "CVE-2022-4450"
},
{
"db": "JVNDB",
"id": "JVNDB-2022-003616"
},
{
"db": "PACKETSTORM",
"id": "172373"
},
{
"db": "PACKETSTORM",
"id": "173547"
},
{
"db": "PACKETSTORM",
"id": "172045"
},
{
"db": "PACKETSTORM",
"id": "172054"
},
{
"db": "PACKETSTORM",
"id": "172084"
},
{
"db": "PACKETSTORM",
"id": "171947"
},
{
"db": "PACKETSTORM",
"id": "172737"
},
{
"db": "PACKETSTORM",
"id": "172973"
}
],
"trust": 2.34
},
"external_ids": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/external_ids#",
"data": {
"@container": "@list"
},
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
}
}
},
"data": [
{
"db": "NVD",
"id": "CVE-2022-4450",
"trust": 3.5
},
{
"db": "JVN",
"id": "JVNVU97200253",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU95962757",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU95292697",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU99836374",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU93250330",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU91482879",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU99752892",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU92598492",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU99464755",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU91213144",
"trust": 0.8
},
{
"db": "JVN",
"id": "JVNVU91198149",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-23-075-04",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-23-255-01",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-25-044-09",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-24-205-02",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-23-320-08",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-23-166-11",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-24-046-15",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-24-102-08",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-24-165-06",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-25-065-01",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-24-165-10",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-24-165-11",
"trust": 0.8
},
{
"db": "ICS CERT",
"id": "ICSA-23-194-04",
"trust": 0.8
},
{
"db": "JVNDB",
"id": "JVNDB-2022-003616",
"trust": 0.8
},
{
"db": "VULMON",
"id": "CVE-2022-4450",
"trust": 0.1
},
{
"db": "PACKETSTORM",
"id": "172373",
"trust": 0.1
},
{
"db": "PACKETSTORM",
"id": "173547",
"trust": 0.1
},
{
"db": "PACKETSTORM",
"id": "172045",
"trust": 0.1
},
{
"db": "PACKETSTORM",
"id": "172054",
"trust": 0.1
},
{
"db": "PACKETSTORM",
"id": "172084",
"trust": 0.1
},
{
"db": "PACKETSTORM",
"id": "171947",
"trust": 0.1
},
{
"db": "PACKETSTORM",
"id": "172737",
"trust": 0.1
},
{
"db": "PACKETSTORM",
"id": "172973",
"trust": 0.1
}
],
"sources": [
{
"db": "VULMON",
"id": "CVE-2022-4450"
},
{
"db": "PACKETSTORM",
"id": "172373"
},
{
"db": "PACKETSTORM",
"id": "173547"
},
{
"db": "PACKETSTORM",
"id": "172045"
},
{
"db": "PACKETSTORM",
"id": "172054"
},
{
"db": "PACKETSTORM",
"id": "172084"
},
{
"db": "PACKETSTORM",
"id": "171947"
},
{
"db": "PACKETSTORM",
"id": "172737"
},
{
"db": "PACKETSTORM",
"id": "172973"
},
{
"db": "JVNDB",
"id": "JVNDB-2022-003616"
},
{
"db": "NVD",
"id": "CVE-2022-4450"
}
]
},
"id": "VAR-202302-0195",
"iot": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/iot#",
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
}
}
},
"data": true,
"sources": [
{
"db": "VARIoT devices database",
"id": null
}
],
"trust": 0.2376099833333333
},
"last_update_date": "2026-03-09T20:45:42.392000Z",
"patch": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/patch#",
"data": {
"@container": "@list"
},
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
}
}
},
"data": [
{
"title": "hitachi-sec-2024-145",
"trust": 0.8,
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83"
},
{
"title": "",
"trust": 0.1,
"url": "https://github.com/waugustus/CarpetFuzz "
}
],
"sources": [
{
"db": "VULMON",
"id": "CVE-2022-4450"
},
{
"db": "JVNDB",
"id": "JVNDB-2022-003616"
}
]
},
"problemtype_data": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/problemtype_data#",
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
}
}
},
"data": [
{
"problemtype": "CWE-415",
"trust": 1.0
},
{
"problemtype": "Double release (CWE-415) [NVD evaluation ]",
"trust": 0.8
}
],
"sources": [
{
"db": "JVNDB",
"id": "JVNDB-2022-003616"
},
{
"db": "NVD",
"id": "CVE-2022-4450"
}
]
},
"references": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/references#",
"data": {
"@container": "@list"
},
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
}
}
},
"data": [
{
"trust": 1.5,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-4450"
},
{
"trust": 1.0,
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83"
},
{
"trust": 1.0,
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b"
},
{
"trust": 1.0,
"url": "https://psirt.global.sonicwall.com/vuln-detail/snwlid-2023-0003"
},
{
"trust": 1.0,
"url": "https://www.openssl.org/news/secadv/20230207.txt"
},
{
"trust": 1.0,
"url": "https://security.gentoo.org/glsa/202402-08"
},
{
"trust": 0.8,
"url": "https://listman.redhat.com/mailman/listinfo/rhsa-announce"
},
{
"trust": 0.8,
"url": "https://access.redhat.com/security/team/contact/"
},
{
"trust": 0.8,
"url": "https://access.redhat.com/security/cve/cve-2022-4450"
},
{
"trust": 0.8,
"url": "https://bugzilla.redhat.com/):"
},
{
"trust": 0.8,
"url": "https://access.redhat.com/security/cve/cve-2023-0215"
},
{
"trust": 0.8,
"url": "https://access.redhat.com/security/cve/cve-2022-4304"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu91213144/"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu99752892/"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu99464755/index.html"
},
{
"trust": 0.8,
"url": "http://jvn.jp/vu/jvnvu95292697/index.html"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu97200253/index.html"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu92598492/index.html"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu91198149/index.html"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu99836374/index.html"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu93250330/index.html"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu95962757/"
},
{
"trust": 0.8,
"url": "https://jvn.jp/vu/jvnvu91482879/index.html"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-23-075-04"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-23-166-11"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-23-194-04"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-23-255-01"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-23-320-08"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-046-15"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-102-08"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-165-06"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-165-10"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-165-11"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-205-02"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-044-09"
},
{
"trust": 0.8,
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-065-01"
},
{
"trust": 0.7,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-4304"
},
{
"trust": 0.7,
"url": "https://access.redhat.com/security/cve/cve-2023-0286"
},
{
"trust": 0.6,
"url": "https://access.redhat.com/articles/11258"
},
{
"trust": 0.6,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-0215"
},
{
"trust": 0.5,
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"trust": 0.5,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-0286"
},
{
"trust": 0.5,
"url": "https://access.redhat.com/security/cve/cve-2023-0361"
},
{
"trust": 0.4,
"url": "https://access.redhat.com/security/cve/cve-2023-23916"
},
{
"trust": 0.3,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-0361"
},
{
"trust": 0.3,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-4415"
},
{
"trust": 0.3,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-23916"
},
{
"trust": 0.3,
"url": "https://access.redhat.com/security/cve/cve-2022-4415"
},
{
"trust": 0.2,
"url": "https://issues.redhat.com/):"
},
{
"trust": 0.2,
"url": "https://access.redhat.com/security/updates/classification/#moderate"
},
{
"trust": 0.2,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-48303"
},
{
"trust": 0.2,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-40897"
},
{
"trust": 0.2,
"url": "https://access.redhat.com/security/cve/cve-2020-10735"
},
{
"trust": 0.2,
"url": "https://access.redhat.com/security/cve/cve-2022-40897"
},
{
"trust": 0.2,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-45061"
},
{
"trust": 0.2,
"url": "https://nvd.nist.gov/vuln/detail/cve-2020-10735"
},
{
"trust": 0.2,
"url": "https://access.redhat.com/security/cve/cve-2022-45061"
},
{
"trust": 0.2,
"url": "https://access.redhat.com/security/cve/cve-2021-28861"
},
{
"trust": 0.2,
"url": "https://nvd.nist.gov/vuln/detail/cve-2021-28861"
},
{
"trust": 0.2,
"url": "https://access.redhat.com/security/cve/cve-2022-48303"
},
{
"trust": 0.2,
"url": "https://access.redhat.com/security/cve/cve-2022-2880"
},
{
"trust": 0.2,
"url": "https://access.redhat.com/security/cve/cve-2023-0767"
},
{
"trust": 0.2,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-2880"
},
{
"trust": 0.2,
"url": "https://issues.jboss.org/):"
},
{
"trust": 0.2,
"url": "https://access.redhat.com/security/cve/cve-2022-41715"
},
{
"trust": 0.1,
"url": "https://github.com/waugustus/carpetfuzz"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/8.8_release_notes/index"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/errata/rhsa-2023:2932"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/team/key/"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-26604"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/vulnerabilities/rhsb-2023-001"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/errata/rhsa-2023:4114"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-1667"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-2283"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2020-24736"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-24329"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-3089"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-2283"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-1667"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2020-24736"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-3089"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-26604"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-24329"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-40186"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/errata/rhsa-2023:2023"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-40186"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-3782"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-30631"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-32190"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-32148"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-32189"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2021-4235"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-27664"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-1705"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-32190"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-32148"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-2995"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-31690"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-2879"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/errata/rhsa-2023:2041"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-3466"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-3172"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-32189"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-3172"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2021-4235"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-3259"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-27664"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-41966"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-3162"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-2879"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-46364"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-3162"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-3259"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-31690"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-30631"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-2995"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-1705"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.6/html/multicluster_engine/multicluster_engine_overview#installing-while-connected-online-mce"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-25881"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/updates/classification#moderate"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-0767"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/errata/rhsa-2023:2061"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-25881"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/updates/classification/#critical"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/errata/rhsa-2023:1893"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-29199"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-29017"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-29017"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-30547"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-30547"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/solutions/7007647"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2023-29199"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/errata/rhsa-2023:3421"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/jbossnetwork/restricted/listsoftware.html?product=webserver\u0026downloadtype=securitypatches\u0026version=5.7"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-42898"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-36227"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-27535"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-25147"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-42898"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-3970"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-25147"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-29007"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-1999"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-24538"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-25652"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-2795"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-35737"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2021-46848"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/errata/rhsa-2023:3624"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-2795"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-36227"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-47629"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-3627"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-35737"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-24540"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-24534"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2021-46848"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-22490"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-1304"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-2491"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-25815"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-3627"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-41715"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-23946"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-24536"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-3970"
},
{
"trust": 0.1,
"url": "https://nvd.nist.gov/vuln/detail/cve-2022-41717"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2023-24537"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-1304"
},
{
"trust": 0.1,
"url": "https://access.redhat.com/security/cve/cve-2022-41717"
}
],
"sources": [
{
"db": "VULMON",
"id": "CVE-2022-4450"
},
{
"db": "PACKETSTORM",
"id": "172373"
},
{
"db": "PACKETSTORM",
"id": "173547"
},
{
"db": "PACKETSTORM",
"id": "172045"
},
{
"db": "PACKETSTORM",
"id": "172054"
},
{
"db": "PACKETSTORM",
"id": "172084"
},
{
"db": "PACKETSTORM",
"id": "171947"
},
{
"db": "PACKETSTORM",
"id": "172737"
},
{
"db": "PACKETSTORM",
"id": "172973"
},
{
"db": "JVNDB",
"id": "JVNDB-2022-003616"
},
{
"db": "NVD",
"id": "CVE-2022-4450"
}
]
},
"sources": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#",
"data": {
"@container": "@list"
}
},
"data": [
{
"db": "VULMON",
"id": "CVE-2022-4450"
},
{
"db": "PACKETSTORM",
"id": "172373"
},
{
"db": "PACKETSTORM",
"id": "173547"
},
{
"db": "PACKETSTORM",
"id": "172045"
},
{
"db": "PACKETSTORM",
"id": "172054"
},
{
"db": "PACKETSTORM",
"id": "172084"
},
{
"db": "PACKETSTORM",
"id": "171947"
},
{
"db": "PACKETSTORM",
"id": "172737"
},
{
"db": "PACKETSTORM",
"id": "172973"
},
{
"db": "JVNDB",
"id": "JVNDB-2022-003616"
},
{
"db": "NVD",
"id": "CVE-2022-4450"
}
]
},
"sources_release_date": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources_release_date#",
"data": {
"@container": "@list"
}
},
"data": [
{
"date": "2023-05-16T17:09:10",
"db": "PACKETSTORM",
"id": "172373"
},
{
"date": "2023-07-18T13:35:08",
"db": "PACKETSTORM",
"id": "173547"
},
{
"date": "2023-04-26T15:28:12",
"db": "PACKETSTORM",
"id": "172045"
},
{
"date": "2023-04-27T18:56:06",
"db": "PACKETSTORM",
"id": "172054"
},
{
"date": "2023-05-02T15:33:51",
"db": "PACKETSTORM",
"id": "172084"
},
{
"date": "2023-04-20T15:55:06",
"db": "PACKETSTORM",
"id": "171947"
},
{
"date": "2023-06-06T16:32:27",
"db": "PACKETSTORM",
"id": "172737"
},
{
"date": "2023-06-16T16:21:58",
"db": "PACKETSTORM",
"id": "172973"
},
{
"date": "2023-02-28T00:00:00",
"db": "JVNDB",
"id": "JVNDB-2022-003616"
},
{
"date": "2023-02-08T20:15:23.973000",
"db": "NVD",
"id": "CVE-2022-4450"
}
]
},
"sources_update_date": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources_update_date#",
"data": {
"@container": "@list"
}
},
"data": [
{
"date": "2025-09-22T02:31:00",
"db": "JVNDB",
"id": "JVNDB-2022-003616"
},
{
"date": "2025-11-04T20:16:15.060000",
"db": "NVD",
"id": "CVE-2022-4450"
}
]
},
"title": {
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/title#",
"sources": {
"@container": "@list",
"@context": {
"@vocab": "https://www.variotdbs.pl/ref/sources#"
}
}
},
"data": "OpenSSL\u00a0 Double release vulnerability in",
"sources": [
{
"db": "JVNDB",
"id": "JVNDB-2022-003616"
}
],
"trust": 0.8
}
}
WID-SEC-W-2023-0304
Vulnerability from csaf_certbund - Published: 2023-02-07 23:00 - Updated: 2025-11-09 23:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Security Verify Access 10.0.0.0-10.0.6.1
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.0.0_-_10.0.6.1
|
10.0.0.0-10.0.6.1 | |
|
IBM Rational ClearQuest <9.0.2.8
IBM / Rational ClearQuest
|
<9.0.2.8 | ||
|
Open Source OpenSSL <1.0.2zg
Open Source / OpenSSL
|
<1.0.2zg | ||
|
Hitachi Command Suite
Hitachi
|
cpe:/a:hitachi:command_suite:-
|
— | |
|
IBM Rational Build Forge <8.0.0.24
IBM / Rational Build Forge
|
<8.0.0.24 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM MQ 9.3 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.3_lts
|
9.3 LTS | |
|
IBM Business Automation Workflow 19.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.1
|
19.0.0.1 | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
IBM Business Automation Workflow 22.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.2
|
22.0.2 | |
|
Siemens SIMATIC S7
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:-
|
— | |
|
Red Hat OpenShift Container Platform <4.11.43
Red Hat / OpenShift
|
Container Platform <4.11.43 | ||
|
IBM Rational ClearQuest <9.1.0.5
IBM / Rational ClearQuest
|
<9.1.0.5 | ||
|
IBM Rational ClearQuest <10.0.3
IBM / Rational ClearQuest
|
<10.0.3 | ||
|
IBM Business Automation Workflow 22.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.1
|
22.0.1 | |
|
IBM Business Automation Workflow 18.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.1
|
18.0.0.1 | |
|
Dell NetWorker <19.11.0.5
Dell / NetWorker
|
<19.11.0.5 | ||
|
IBM QRadar SIEM <7.5.0 UP8
IBM / QRadar SIEM
|
<7.5.0 UP8 | ||
|
Gentoo Linux
Gentoo
|
cpe:/o:gentoo:linux:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.0
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.0
|
18.0.0.0 | |
|
SonicWall SMA <10.2.1.7-49sv
SonicWall / SMA
|
<10.2.1.7-49sv | ||
|
Dell NetWorker <19.10
Dell / NetWorker
|
<19.10 | ||
|
IBM MQ 9.0 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.0_lts
|
9.0 LTS | |
|
IBM MQ 8.0
IBM / MQ
|
cpe:/a:ibm:mq:8.0
|
8 | |
|
IBM QRadar SIEM 7.5
IBM / QRadar SIEM
|
cpe:/a:ibm:qradar_siem:7.5
|
7.5 | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
IBM Power Hardware Management Console v9
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v9
|
v9 | |
|
Aruba ClearPass Policy Manager
Aruba
|
cpe:/a:arubanetworks:clearpass_policy_manager:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Hitachi Energy RTU500
Hitachi Energy
|
cpe:/h:abb:rtu500:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
IBM DataPower Gateway <2018.4.1.26
IBM / DataPower Gateway
|
<2018.4.1.26 | ||
|
IBM DataPower Gateway <10.0.4.0sr3
IBM / DataPower Gateway
|
<10.0.4.0sr3 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM Business Automation Workflow 19.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.2
|
19.0.0.2 | |
|
IBM Business Automation Workflow 19.0.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.3
|
19.0.0.3 | |
|
Tenable Security Nessus <10.5.0
Tenable Security / Nessus
|
<10.5.0 | ||
|
SolarWinds Platform <2025.4
SolarWinds / Platform
|
<2025.4 | ||
|
Dell NetWorker <19.13
Dell / NetWorker
|
<19.13 | ||
|
Dell NetWorker
Dell / NetWorker
|
cpe:/a:dell:networker:-
|
— | |
|
IBM Business Automation Workflow 21.0.3.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3.1
|
21.0.3.1 | |
|
IBM MQ
IBM / MQ
|
cpe:/a:ibm:mq:-
|
— | |
|
Red Hat OpenShift Container Platform <4.13.4
Red Hat / OpenShift
|
Container Platform <4.13.4 | ||
|
HPE OneView <v6.60.05 LTS
HPE / OneView
|
<v6.60.05 LTS | ||
|
Meinberg LANTIME <7.06.013
Meinberg / LANTIME
|
<7.06.013 | ||
|
HPE OneView <v8.5
HPE / OneView
|
<v8.5 | ||
|
IBM Security Verify Access 10.0.X
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.x
|
10.0.X | |
|
ABB Relion SAM600-IO
ABB / Relion
|
cpe:/h:abb:relion:sam600-io
|
SAM600-IO | |
|
ABB Relion 650
ABB / Relion
|
cpe:/h:abb:relion:650
|
650 | |
|
ABB Relion 670
ABB / Relion
|
cpe:/h:abb:relion:670
|
670 | |
|
Hitachi Energy AFS
Hitachi Energy
|
cpe:/h:abb:afs:-
|
— | |
|
Aruba Switch
Aruba
|
cpe:/h:arubanetworks:switch:-
|
— | |
|
QNAP NAS
QNAP
|
cpe:/h:qnap:nas:-
|
— | |
|
HPE NonStop Server
HPE
|
cpe:/h:hp:nonstop_server:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Meinberg LANTIME 7.06.012
Meinberg / LANTIME
|
cpe:/h:meinberg:lantime:7.06.012
|
7.06.012 | |
|
Tenable Security Nessus Agent <8.3.5
Tenable Security / Nessus
|
Agent <8.3.5 | ||
|
Tenable Security Nessus Network Monitor <6.2.1
Tenable Security / Nessus Network Monitor
|
<6.2.1 | ||
|
Tenable Security Nessus Agent <10.3.2
Tenable Security / Nessus
|
Agent <10.3.2 | ||
|
Open Source OpenSSL <1.1.1t
Open Source / OpenSSL
|
<1.1.1t | ||
|
Open Source OpenSSL <3.0.8
Open Source / OpenSSL
|
<3.0.8 | ||
|
Dell Computer
Dell
|
cpe:/o:dell:dell_computer:-
|
— | |
|
Moxa Router TN-5900 <4.0
Moxa / Router
|
TN-5900 <4.0 | ||
|
Aruba ArubaOS
Aruba
|
cpe:/o:arubanetworks:arubaos:-
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
LANCOM LCOS 10.42 SU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.42_su10
|
10.42 SU10 | |
|
LANCOM LCOS 10.50 RU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.50_ru10
|
10.50 RU10 | |
|
LANCOM LCOS FX 10.11
LANCOM / LCOS
|
cpe:/o:lancom:lcos:fx_10.11
|
FX 10.11 | |
|
IBM Integration Bus 10.0.0.0-10.0.0.26
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.0.0.0_-_10.0.0.26
|
10.0.0.0-10.0.0.26 | |
|
Aruba EdgeConnect
Aruba
|
cpe:/a:aruba:edgeconnect:-
|
— | |
|
Oracle VM 3
Oracle / VM
|
cpe:/a:oracle:vm:3
|
3 | |
|
IBM Integration Bus 10.1
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.1
|
10.1 | |
|
LANCOM LCOS 10.72 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.72_su2
|
10.72 SU2 | |
|
IBM Spectrum Protect 10.1.14
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:10.1.14
|
10.1.14 | |
|
Red Hat Enterprise Linux Multicluster Engine
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:multicluster_engine
|
Multicluster Engine | |
|
IBM AIX 7.1
IBM / AIX
|
cpe:/o:ibm:aix:7.1
|
7.1 | |
|
IBM Business Automation Workflow 20.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.1
|
20.0.0.1 | |
|
SolarWinds Platform <2024.2
SolarWinds / Platform
|
<2024.2 | ||
|
IBM AIX 7.2
IBM / AIX
|
cpe:/o:ibm:aix:7.2
|
7.2 | |
|
NetApp Data ONTAP
NetApp
|
cpe:/a:netapp:data_ontap:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.2
|
18.0.0.2 | |
|
Xerox FreeFlow Print Server v7
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v7
|
v7 | |
|
IBM Business Automation Workflow 21.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3
|
21.0.3 | |
|
Hitachi Ops Center
Hitachi
|
cpe:/a:hitachi:ops_center:-
|
— | |
|
EMC Avamar
EMC
|
cpe:/a:emc:avamar:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Business Automation Workflow 20.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.2
|
20.0.0.2 | |
|
IBM InfoSphere Information Server 11.7
IBM / InfoSphere Information Server
|
cpe:/a:ibm:infosphere_information_server:11.7
|
11.7 | |
|
LANCOM LCOS SX 5.20 RU3
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_5.20_ru3
|
SX 5.20 RU3 | |
|
LANCOM LCOS LX 5.38 SU1
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.38_su1
|
LX 5.38 SU1 | |
|
LANCOM LCOS LX 6.10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_6.10
|
LX 6.10 | |
|
LANCOM LCOS SX 4.20
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_4.20
|
SX 4.20 | |
|
LANCOM LCOS LX 5.36 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.36_su2
|
LX 5.36 SU2 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
FreeBSD Project FreeBSD OS
FreeBSD Project
|
cpe:/o:freebsd:freebsd:-
|
— | |
|
IBM MQ 9.1 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.1_lts
|
9.1 LTS | |
|
IBM MQ 9.2 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.2_lts
|
9.2 LTS | |
|
IBM Business Automation Workflow 21.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.2
|
21.0.2 | |
|
IBM QRadar SIEM <7.5.0 UP10 IF01
IBM / QRadar SIEM
|
<7.5.0 UP10 IF01 | ||
|
IBM QRadar SIEM <7.5.0 UP12
IBM / QRadar SIEM
|
<7.5.0 UP12 | ||
|
IBM Spectrum Protect <8.1.17.2
IBM / Spectrum Protect
|
<8.1.17.2 | ||
|
Siemens SIMATIC S7 1500
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500
|
1500 | |
|
IBM Spectrum Protect Plus <10.1.17
IBM / Spectrum Protect Plus
|
<10.1.17 | ||
|
Tenable Security Nessus 8.15.9
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:8.15.9
|
8.15.9 | |
|
Tenable Security Nessus 10.4.3
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:10.4.3
|
10.4.3 | |
|
Hitachi Configuration Manager
Hitachi
|
cpe:/a:hitachi:configuration_manager:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
Red Hat OpenShift Container Platform <4.12.22
Red Hat / OpenShift
|
Container Platform <4.12.22 | ||
|
IBM DataPower Gateway <10.5.0.4
IBM / DataPower Gateway
|
<10.5.0.4 | ||
|
F5 BIG-IP
F5
|
cpe:/a:f5:big-ip:-
|
— | |
|
IBM Power Hardware Management Console v10
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10
|
v10 | |
|
IBM Rational ClearCase <9.0.2.8
IBM / Rational ClearCase
|
<9.0.2.8 | ||
|
IBM Spectrum Protect plus 10.1
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:plus_10.1
|
plus 10.1 | |
|
IBM Rational ClearCase <9.1.0.5
IBM / Rational ClearCase
|
<9.1.0.5 | ||
|
IBM Sterling Connect:Direct HP NonStop <3.6.0.6 iFix000
IBM / Sterling Connect:Direct
|
HP NonStop <3.6.0.6 iFix000 | ||
|
Dell NetWorker <19.12.0.2
Dell / NetWorker
|
<19.12.0.2 | ||
|
IBM Power Hardware Management Console DS8000
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:ds8000
|
DS8000 | |
|
Dell NetWorker <19.11.0.6
Dell / NetWorker
|
<19.11.0.6 | ||
|
Open Source CentOS
Open Source
|
cpe:/o:centos:centos:-
|
— | |
|
IBM AIX 7.3
IBM / AIX
|
cpe:/o:ibm:aix:7.3
|
7.3 | |
|
IBM MQ HPE NonStop 8.1.0
IBM / MQ
|
cpe:/a:ibm:mq:hpe_nonstop_8.1.0
|
HPE NonStop 8.1.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Security Verify Access 10.0.0.0-10.0.6.1
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.0.0_-_10.0.6.1
|
10.0.0.0-10.0.6.1 | |
|
IBM Rational ClearQuest <9.0.2.8
IBM / Rational ClearQuest
|
<9.0.2.8 | ||
|
Open Source OpenSSL <1.0.2zg
Open Source / OpenSSL
|
<1.0.2zg | ||
|
Hitachi Command Suite
Hitachi
|
cpe:/a:hitachi:command_suite:-
|
— | |
|
IBM Rational Build Forge <8.0.0.24
IBM / Rational Build Forge
|
<8.0.0.24 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM MQ 9.3 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.3_lts
|
9.3 LTS | |
|
IBM Business Automation Workflow 19.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.1
|
19.0.0.1 | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
IBM Business Automation Workflow 22.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.2
|
22.0.2 | |
|
Siemens SIMATIC S7
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:-
|
— | |
|
Red Hat OpenShift Container Platform <4.11.43
Red Hat / OpenShift
|
Container Platform <4.11.43 | ||
|
IBM Rational ClearQuest <9.1.0.5
IBM / Rational ClearQuest
|
<9.1.0.5 | ||
|
IBM Rational ClearQuest <10.0.3
IBM / Rational ClearQuest
|
<10.0.3 | ||
|
IBM Business Automation Workflow 22.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.1
|
22.0.1 | |
|
IBM Business Automation Workflow 18.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.1
|
18.0.0.1 | |
|
Dell NetWorker <19.11.0.5
Dell / NetWorker
|
<19.11.0.5 | ||
|
IBM QRadar SIEM <7.5.0 UP8
IBM / QRadar SIEM
|
<7.5.0 UP8 | ||
|
Gentoo Linux
Gentoo
|
cpe:/o:gentoo:linux:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.0
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.0
|
18.0.0.0 | |
|
SonicWall SMA <10.2.1.7-49sv
SonicWall / SMA
|
<10.2.1.7-49sv | ||
|
Dell NetWorker <19.10
Dell / NetWorker
|
<19.10 | ||
|
IBM MQ 9.0 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.0_lts
|
9.0 LTS | |
|
IBM MQ 8.0
IBM / MQ
|
cpe:/a:ibm:mq:8.0
|
8 | |
|
IBM QRadar SIEM 7.5
IBM / QRadar SIEM
|
cpe:/a:ibm:qradar_siem:7.5
|
7.5 | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
IBM Power Hardware Management Console v9
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v9
|
v9 | |
|
Aruba ClearPass Policy Manager
Aruba
|
cpe:/a:arubanetworks:clearpass_policy_manager:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Hitachi Energy RTU500
Hitachi Energy
|
cpe:/h:abb:rtu500:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
IBM DataPower Gateway <2018.4.1.26
IBM / DataPower Gateway
|
<2018.4.1.26 | ||
|
IBM DataPower Gateway <10.0.4.0sr3
IBM / DataPower Gateway
|
<10.0.4.0sr3 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM Business Automation Workflow 19.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.2
|
19.0.0.2 | |
|
IBM Business Automation Workflow 19.0.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.3
|
19.0.0.3 | |
|
Tenable Security Nessus <10.5.0
Tenable Security / Nessus
|
<10.5.0 | ||
|
SolarWinds Platform <2025.4
SolarWinds / Platform
|
<2025.4 | ||
|
Dell NetWorker <19.13
Dell / NetWorker
|
<19.13 | ||
|
Dell NetWorker
Dell / NetWorker
|
cpe:/a:dell:networker:-
|
— | |
|
IBM Business Automation Workflow 21.0.3.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3.1
|
21.0.3.1 | |
|
IBM MQ
IBM / MQ
|
cpe:/a:ibm:mq:-
|
— | |
|
Red Hat OpenShift Container Platform <4.13.4
Red Hat / OpenShift
|
Container Platform <4.13.4 | ||
|
HPE OneView <v6.60.05 LTS
HPE / OneView
|
<v6.60.05 LTS | ||
|
Meinberg LANTIME <7.06.013
Meinberg / LANTIME
|
<7.06.013 | ||
|
HPE OneView <v8.5
HPE / OneView
|
<v8.5 | ||
|
IBM Security Verify Access 10.0.X
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.x
|
10.0.X | |
|
ABB Relion SAM600-IO
ABB / Relion
|
cpe:/h:abb:relion:sam600-io
|
SAM600-IO | |
|
ABB Relion 650
ABB / Relion
|
cpe:/h:abb:relion:650
|
650 | |
|
ABB Relion 670
ABB / Relion
|
cpe:/h:abb:relion:670
|
670 | |
|
Hitachi Energy AFS
Hitachi Energy
|
cpe:/h:abb:afs:-
|
— | |
|
Aruba Switch
Aruba
|
cpe:/h:arubanetworks:switch:-
|
— | |
|
QNAP NAS
QNAP
|
cpe:/h:qnap:nas:-
|
— | |
|
HPE NonStop Server
HPE
|
cpe:/h:hp:nonstop_server:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Meinberg LANTIME 7.06.012
Meinberg / LANTIME
|
cpe:/h:meinberg:lantime:7.06.012
|
7.06.012 | |
|
Tenable Security Nessus Agent <8.3.5
Tenable Security / Nessus
|
Agent <8.3.5 | ||
|
Tenable Security Nessus Network Monitor <6.2.1
Tenable Security / Nessus Network Monitor
|
<6.2.1 | ||
|
Tenable Security Nessus Agent <10.3.2
Tenable Security / Nessus
|
Agent <10.3.2 | ||
|
Open Source OpenSSL <1.1.1t
Open Source / OpenSSL
|
<1.1.1t | ||
|
Open Source OpenSSL <3.0.8
Open Source / OpenSSL
|
<3.0.8 | ||
|
Dell Computer
Dell
|
cpe:/o:dell:dell_computer:-
|
— | |
|
Moxa Router TN-5900 <4.0
Moxa / Router
|
TN-5900 <4.0 | ||
|
Aruba ArubaOS
Aruba
|
cpe:/o:arubanetworks:arubaos:-
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
LANCOM LCOS 10.42 SU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.42_su10
|
10.42 SU10 | |
|
LANCOM LCOS 10.50 RU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.50_ru10
|
10.50 RU10 | |
|
LANCOM LCOS FX 10.11
LANCOM / LCOS
|
cpe:/o:lancom:lcos:fx_10.11
|
FX 10.11 | |
|
IBM Integration Bus 10.0.0.0-10.0.0.26
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.0.0.0_-_10.0.0.26
|
10.0.0.0-10.0.0.26 | |
|
Aruba EdgeConnect
Aruba
|
cpe:/a:aruba:edgeconnect:-
|
— | |
|
Oracle VM 3
Oracle / VM
|
cpe:/a:oracle:vm:3
|
3 | |
|
IBM Integration Bus 10.1
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.1
|
10.1 | |
|
LANCOM LCOS 10.72 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.72_su2
|
10.72 SU2 | |
|
IBM Spectrum Protect 10.1.14
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:10.1.14
|
10.1.14 | |
|
Red Hat Enterprise Linux Multicluster Engine
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:multicluster_engine
|
Multicluster Engine | |
|
IBM AIX 7.1
IBM / AIX
|
cpe:/o:ibm:aix:7.1
|
7.1 | |
|
IBM Business Automation Workflow 20.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.1
|
20.0.0.1 | |
|
SolarWinds Platform <2024.2
SolarWinds / Platform
|
<2024.2 | ||
|
IBM AIX 7.2
IBM / AIX
|
cpe:/o:ibm:aix:7.2
|
7.2 | |
|
NetApp Data ONTAP
NetApp
|
cpe:/a:netapp:data_ontap:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.2
|
18.0.0.2 | |
|
Xerox FreeFlow Print Server v7
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v7
|
v7 | |
|
IBM Business Automation Workflow 21.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3
|
21.0.3 | |
|
Hitachi Ops Center
Hitachi
|
cpe:/a:hitachi:ops_center:-
|
— | |
|
EMC Avamar
EMC
|
cpe:/a:emc:avamar:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Business Automation Workflow 20.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.2
|
20.0.0.2 | |
|
IBM InfoSphere Information Server 11.7
IBM / InfoSphere Information Server
|
cpe:/a:ibm:infosphere_information_server:11.7
|
11.7 | |
|
LANCOM LCOS SX 5.20 RU3
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_5.20_ru3
|
SX 5.20 RU3 | |
|
LANCOM LCOS LX 5.38 SU1
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.38_su1
|
LX 5.38 SU1 | |
|
LANCOM LCOS LX 6.10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_6.10
|
LX 6.10 | |
|
LANCOM LCOS SX 4.20
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_4.20
|
SX 4.20 | |
|
LANCOM LCOS LX 5.36 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.36_su2
|
LX 5.36 SU2 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
FreeBSD Project FreeBSD OS
FreeBSD Project
|
cpe:/o:freebsd:freebsd:-
|
— | |
|
IBM MQ 9.1 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.1_lts
|
9.1 LTS | |
|
IBM MQ 9.2 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.2_lts
|
9.2 LTS | |
|
IBM Business Automation Workflow 21.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.2
|
21.0.2 | |
|
IBM QRadar SIEM <7.5.0 UP10 IF01
IBM / QRadar SIEM
|
<7.5.0 UP10 IF01 | ||
|
IBM QRadar SIEM <7.5.0 UP12
IBM / QRadar SIEM
|
<7.5.0 UP12 | ||
|
IBM Spectrum Protect <8.1.17.2
IBM / Spectrum Protect
|
<8.1.17.2 | ||
|
Siemens SIMATIC S7 1500
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500
|
1500 | |
|
IBM Spectrum Protect Plus <10.1.17
IBM / Spectrum Protect Plus
|
<10.1.17 | ||
|
Tenable Security Nessus 8.15.9
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:8.15.9
|
8.15.9 | |
|
Tenable Security Nessus 10.4.3
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:10.4.3
|
10.4.3 | |
|
Hitachi Configuration Manager
Hitachi
|
cpe:/a:hitachi:configuration_manager:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
Red Hat OpenShift Container Platform <4.12.22
Red Hat / OpenShift
|
Container Platform <4.12.22 | ||
|
IBM DataPower Gateway <10.5.0.4
IBM / DataPower Gateway
|
<10.5.0.4 | ||
|
F5 BIG-IP
F5
|
cpe:/a:f5:big-ip:-
|
— | |
|
IBM Power Hardware Management Console v10
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10
|
v10 | |
|
IBM Rational ClearCase <9.0.2.8
IBM / Rational ClearCase
|
<9.0.2.8 | ||
|
IBM Spectrum Protect plus 10.1
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:plus_10.1
|
plus 10.1 | |
|
IBM Rational ClearCase <9.1.0.5
IBM / Rational ClearCase
|
<9.1.0.5 | ||
|
IBM Sterling Connect:Direct HP NonStop <3.6.0.6 iFix000
IBM / Sterling Connect:Direct
|
HP NonStop <3.6.0.6 iFix000 | ||
|
Dell NetWorker <19.12.0.2
Dell / NetWorker
|
<19.12.0.2 | ||
|
IBM Power Hardware Management Console DS8000
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:ds8000
|
DS8000 | |
|
Dell NetWorker <19.11.0.6
Dell / NetWorker
|
<19.11.0.6 | ||
|
Open Source CentOS
Open Source
|
cpe:/o:centos:centos:-
|
— | |
|
IBM AIX 7.3
IBM / AIX
|
cpe:/o:ibm:aix:7.3
|
7.3 | |
|
IBM MQ HPE NonStop 8.1.0
IBM / MQ
|
cpe:/a:ibm:mq:hpe_nonstop_8.1.0
|
HPE NonStop 8.1.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Security Verify Access 10.0.0.0-10.0.6.1
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.0.0_-_10.0.6.1
|
10.0.0.0-10.0.6.1 | |
|
IBM Rational ClearQuest <9.0.2.8
IBM / Rational ClearQuest
|
<9.0.2.8 | ||
|
Open Source OpenSSL <1.0.2zg
Open Source / OpenSSL
|
<1.0.2zg | ||
|
Hitachi Command Suite
Hitachi
|
cpe:/a:hitachi:command_suite:-
|
— | |
|
IBM Rational Build Forge <8.0.0.24
IBM / Rational Build Forge
|
<8.0.0.24 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM MQ 9.3 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.3_lts
|
9.3 LTS | |
|
IBM Business Automation Workflow 19.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.1
|
19.0.0.1 | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
IBM Business Automation Workflow 22.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.2
|
22.0.2 | |
|
Siemens SIMATIC S7
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:-
|
— | |
|
Red Hat OpenShift Container Platform <4.11.43
Red Hat / OpenShift
|
Container Platform <4.11.43 | ||
|
IBM Rational ClearQuest <9.1.0.5
IBM / Rational ClearQuest
|
<9.1.0.5 | ||
|
IBM Rational ClearQuest <10.0.3
IBM / Rational ClearQuest
|
<10.0.3 | ||
|
IBM Business Automation Workflow 22.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.1
|
22.0.1 | |
|
IBM Business Automation Workflow 18.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.1
|
18.0.0.1 | |
|
Dell NetWorker <19.11.0.5
Dell / NetWorker
|
<19.11.0.5 | ||
|
IBM QRadar SIEM <7.5.0 UP8
IBM / QRadar SIEM
|
<7.5.0 UP8 | ||
|
Gentoo Linux
Gentoo
|
cpe:/o:gentoo:linux:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.0
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.0
|
18.0.0.0 | |
|
SonicWall SMA <10.2.1.7-49sv
SonicWall / SMA
|
<10.2.1.7-49sv | ||
|
Dell NetWorker <19.10
Dell / NetWorker
|
<19.10 | ||
|
IBM MQ 9.0 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.0_lts
|
9.0 LTS | |
|
IBM MQ 8.0
IBM / MQ
|
cpe:/a:ibm:mq:8.0
|
8 | |
|
IBM QRadar SIEM 7.5
IBM / QRadar SIEM
|
cpe:/a:ibm:qradar_siem:7.5
|
7.5 | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
IBM Power Hardware Management Console v9
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v9
|
v9 | |
|
Aruba ClearPass Policy Manager
Aruba
|
cpe:/a:arubanetworks:clearpass_policy_manager:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Hitachi Energy RTU500
Hitachi Energy
|
cpe:/h:abb:rtu500:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
IBM DataPower Gateway <2018.4.1.26
IBM / DataPower Gateway
|
<2018.4.1.26 | ||
|
IBM DataPower Gateway <10.0.4.0sr3
IBM / DataPower Gateway
|
<10.0.4.0sr3 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM Business Automation Workflow 19.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.2
|
19.0.0.2 | |
|
IBM Business Automation Workflow 19.0.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.3
|
19.0.0.3 | |
|
Tenable Security Nessus <10.5.0
Tenable Security / Nessus
|
<10.5.0 | ||
|
SolarWinds Platform <2025.4
SolarWinds / Platform
|
<2025.4 | ||
|
Dell NetWorker <19.13
Dell / NetWorker
|
<19.13 | ||
|
Dell NetWorker
Dell / NetWorker
|
cpe:/a:dell:networker:-
|
— | |
|
IBM Business Automation Workflow 21.0.3.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3.1
|
21.0.3.1 | |
|
IBM MQ
IBM / MQ
|
cpe:/a:ibm:mq:-
|
— | |
|
Red Hat OpenShift Container Platform <4.13.4
Red Hat / OpenShift
|
Container Platform <4.13.4 | ||
|
HPE OneView <v6.60.05 LTS
HPE / OneView
|
<v6.60.05 LTS | ||
|
Meinberg LANTIME <7.06.013
Meinberg / LANTIME
|
<7.06.013 | ||
|
HPE OneView <v8.5
HPE / OneView
|
<v8.5 | ||
|
IBM Security Verify Access 10.0.X
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.x
|
10.0.X | |
|
ABB Relion SAM600-IO
ABB / Relion
|
cpe:/h:abb:relion:sam600-io
|
SAM600-IO | |
|
ABB Relion 650
ABB / Relion
|
cpe:/h:abb:relion:650
|
650 | |
|
ABB Relion 670
ABB / Relion
|
cpe:/h:abb:relion:670
|
670 | |
|
Hitachi Energy AFS
Hitachi Energy
|
cpe:/h:abb:afs:-
|
— | |
|
Aruba Switch
Aruba
|
cpe:/h:arubanetworks:switch:-
|
— | |
|
QNAP NAS
QNAP
|
cpe:/h:qnap:nas:-
|
— | |
|
HPE NonStop Server
HPE
|
cpe:/h:hp:nonstop_server:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Meinberg LANTIME 7.06.012
Meinberg / LANTIME
|
cpe:/h:meinberg:lantime:7.06.012
|
7.06.012 | |
|
Tenable Security Nessus Agent <8.3.5
Tenable Security / Nessus
|
Agent <8.3.5 | ||
|
Tenable Security Nessus Network Monitor <6.2.1
Tenable Security / Nessus Network Monitor
|
<6.2.1 | ||
|
Tenable Security Nessus Agent <10.3.2
Tenable Security / Nessus
|
Agent <10.3.2 | ||
|
Open Source OpenSSL <1.1.1t
Open Source / OpenSSL
|
<1.1.1t | ||
|
Open Source OpenSSL <3.0.8
Open Source / OpenSSL
|
<3.0.8 | ||
|
Dell Computer
Dell
|
cpe:/o:dell:dell_computer:-
|
— | |
|
Moxa Router TN-5900 <4.0
Moxa / Router
|
TN-5900 <4.0 | ||
|
Aruba ArubaOS
Aruba
|
cpe:/o:arubanetworks:arubaos:-
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
LANCOM LCOS 10.42 SU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.42_su10
|
10.42 SU10 | |
|
LANCOM LCOS 10.50 RU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.50_ru10
|
10.50 RU10 | |
|
LANCOM LCOS FX 10.11
LANCOM / LCOS
|
cpe:/o:lancom:lcos:fx_10.11
|
FX 10.11 | |
|
IBM Integration Bus 10.0.0.0-10.0.0.26
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.0.0.0_-_10.0.0.26
|
10.0.0.0-10.0.0.26 | |
|
Aruba EdgeConnect
Aruba
|
cpe:/a:aruba:edgeconnect:-
|
— | |
|
Oracle VM 3
Oracle / VM
|
cpe:/a:oracle:vm:3
|
3 | |
|
IBM Integration Bus 10.1
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.1
|
10.1 | |
|
LANCOM LCOS 10.72 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.72_su2
|
10.72 SU2 | |
|
IBM Spectrum Protect 10.1.14
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:10.1.14
|
10.1.14 | |
|
Red Hat Enterprise Linux Multicluster Engine
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:multicluster_engine
|
Multicluster Engine | |
|
IBM AIX 7.1
IBM / AIX
|
cpe:/o:ibm:aix:7.1
|
7.1 | |
|
IBM Business Automation Workflow 20.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.1
|
20.0.0.1 | |
|
SolarWinds Platform <2024.2
SolarWinds / Platform
|
<2024.2 | ||
|
IBM AIX 7.2
IBM / AIX
|
cpe:/o:ibm:aix:7.2
|
7.2 | |
|
NetApp Data ONTAP
NetApp
|
cpe:/a:netapp:data_ontap:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.2
|
18.0.0.2 | |
|
Xerox FreeFlow Print Server v7
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v7
|
v7 | |
|
IBM Business Automation Workflow 21.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3
|
21.0.3 | |
|
Hitachi Ops Center
Hitachi
|
cpe:/a:hitachi:ops_center:-
|
— | |
|
EMC Avamar
EMC
|
cpe:/a:emc:avamar:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Business Automation Workflow 20.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.2
|
20.0.0.2 | |
|
IBM InfoSphere Information Server 11.7
IBM / InfoSphere Information Server
|
cpe:/a:ibm:infosphere_information_server:11.7
|
11.7 | |
|
LANCOM LCOS SX 5.20 RU3
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_5.20_ru3
|
SX 5.20 RU3 | |
|
LANCOM LCOS LX 5.38 SU1
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.38_su1
|
LX 5.38 SU1 | |
|
LANCOM LCOS LX 6.10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_6.10
|
LX 6.10 | |
|
LANCOM LCOS SX 4.20
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_4.20
|
SX 4.20 | |
|
LANCOM LCOS LX 5.36 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.36_su2
|
LX 5.36 SU2 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
FreeBSD Project FreeBSD OS
FreeBSD Project
|
cpe:/o:freebsd:freebsd:-
|
— | |
|
IBM MQ 9.1 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.1_lts
|
9.1 LTS | |
|
IBM MQ 9.2 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.2_lts
|
9.2 LTS | |
|
IBM Business Automation Workflow 21.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.2
|
21.0.2 | |
|
IBM QRadar SIEM <7.5.0 UP10 IF01
IBM / QRadar SIEM
|
<7.5.0 UP10 IF01 | ||
|
IBM QRadar SIEM <7.5.0 UP12
IBM / QRadar SIEM
|
<7.5.0 UP12 | ||
|
IBM Spectrum Protect <8.1.17.2
IBM / Spectrum Protect
|
<8.1.17.2 | ||
|
Siemens SIMATIC S7 1500
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500
|
1500 | |
|
IBM Spectrum Protect Plus <10.1.17
IBM / Spectrum Protect Plus
|
<10.1.17 | ||
|
Tenable Security Nessus 8.15.9
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:8.15.9
|
8.15.9 | |
|
Tenable Security Nessus 10.4.3
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:10.4.3
|
10.4.3 | |
|
Hitachi Configuration Manager
Hitachi
|
cpe:/a:hitachi:configuration_manager:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
Red Hat OpenShift Container Platform <4.12.22
Red Hat / OpenShift
|
Container Platform <4.12.22 | ||
|
IBM DataPower Gateway <10.5.0.4
IBM / DataPower Gateway
|
<10.5.0.4 | ||
|
F5 BIG-IP
F5
|
cpe:/a:f5:big-ip:-
|
— | |
|
IBM Power Hardware Management Console v10
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10
|
v10 | |
|
IBM Rational ClearCase <9.0.2.8
IBM / Rational ClearCase
|
<9.0.2.8 | ||
|
IBM Spectrum Protect plus 10.1
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:plus_10.1
|
plus 10.1 | |
|
IBM Rational ClearCase <9.1.0.5
IBM / Rational ClearCase
|
<9.1.0.5 | ||
|
IBM Sterling Connect:Direct HP NonStop <3.6.0.6 iFix000
IBM / Sterling Connect:Direct
|
HP NonStop <3.6.0.6 iFix000 | ||
|
Dell NetWorker <19.12.0.2
Dell / NetWorker
|
<19.12.0.2 | ||
|
IBM Power Hardware Management Console DS8000
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:ds8000
|
DS8000 | |
|
Dell NetWorker <19.11.0.6
Dell / NetWorker
|
<19.11.0.6 | ||
|
Open Source CentOS
Open Source
|
cpe:/o:centos:centos:-
|
— | |
|
IBM AIX 7.3
IBM / AIX
|
cpe:/o:ibm:aix:7.3
|
7.3 | |
|
IBM MQ HPE NonStop 8.1.0
IBM / MQ
|
cpe:/a:ibm:mq:hpe_nonstop_8.1.0
|
HPE NonStop 8.1.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Security Verify Access 10.0.0.0-10.0.6.1
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.0.0_-_10.0.6.1
|
10.0.0.0-10.0.6.1 | |
|
IBM Rational ClearQuest <9.0.2.8
IBM / Rational ClearQuest
|
<9.0.2.8 | ||
|
Open Source OpenSSL <1.0.2zg
Open Source / OpenSSL
|
<1.0.2zg | ||
|
Hitachi Command Suite
Hitachi
|
cpe:/a:hitachi:command_suite:-
|
— | |
|
IBM Rational Build Forge <8.0.0.24
IBM / Rational Build Forge
|
<8.0.0.24 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM MQ 9.3 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.3_lts
|
9.3 LTS | |
|
IBM Business Automation Workflow 19.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.1
|
19.0.0.1 | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
IBM Business Automation Workflow 22.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.2
|
22.0.2 | |
|
Siemens SIMATIC S7
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:-
|
— | |
|
Red Hat OpenShift Container Platform <4.11.43
Red Hat / OpenShift
|
Container Platform <4.11.43 | ||
|
IBM Rational ClearQuest <9.1.0.5
IBM / Rational ClearQuest
|
<9.1.0.5 | ||
|
IBM Rational ClearQuest <10.0.3
IBM / Rational ClearQuest
|
<10.0.3 | ||
|
IBM Business Automation Workflow 22.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.1
|
22.0.1 | |
|
IBM Business Automation Workflow 18.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.1
|
18.0.0.1 | |
|
Dell NetWorker <19.11.0.5
Dell / NetWorker
|
<19.11.0.5 | ||
|
IBM QRadar SIEM <7.5.0 UP8
IBM / QRadar SIEM
|
<7.5.0 UP8 | ||
|
Gentoo Linux
Gentoo
|
cpe:/o:gentoo:linux:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.0
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.0
|
18.0.0.0 | |
|
SonicWall SMA <10.2.1.7-49sv
SonicWall / SMA
|
<10.2.1.7-49sv | ||
|
Dell NetWorker <19.10
Dell / NetWorker
|
<19.10 | ||
|
IBM MQ 9.0 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.0_lts
|
9.0 LTS | |
|
IBM MQ 8.0
IBM / MQ
|
cpe:/a:ibm:mq:8.0
|
8 | |
|
IBM QRadar SIEM 7.5
IBM / QRadar SIEM
|
cpe:/a:ibm:qradar_siem:7.5
|
7.5 | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
IBM Power Hardware Management Console v9
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v9
|
v9 | |
|
Aruba ClearPass Policy Manager
Aruba
|
cpe:/a:arubanetworks:clearpass_policy_manager:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Hitachi Energy RTU500
Hitachi Energy
|
cpe:/h:abb:rtu500:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
IBM DataPower Gateway <2018.4.1.26
IBM / DataPower Gateway
|
<2018.4.1.26 | ||
|
IBM DataPower Gateway <10.0.4.0sr3
IBM / DataPower Gateway
|
<10.0.4.0sr3 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM Business Automation Workflow 19.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.2
|
19.0.0.2 | |
|
IBM Business Automation Workflow 19.0.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.3
|
19.0.0.3 | |
|
Tenable Security Nessus <10.5.0
Tenable Security / Nessus
|
<10.5.0 | ||
|
SolarWinds Platform <2025.4
SolarWinds / Platform
|
<2025.4 | ||
|
Dell NetWorker <19.13
Dell / NetWorker
|
<19.13 | ||
|
Dell NetWorker
Dell / NetWorker
|
cpe:/a:dell:networker:-
|
— | |
|
IBM Business Automation Workflow 21.0.3.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3.1
|
21.0.3.1 | |
|
IBM MQ
IBM / MQ
|
cpe:/a:ibm:mq:-
|
— | |
|
Red Hat OpenShift Container Platform <4.13.4
Red Hat / OpenShift
|
Container Platform <4.13.4 | ||
|
HPE OneView <v6.60.05 LTS
HPE / OneView
|
<v6.60.05 LTS | ||
|
Meinberg LANTIME <7.06.013
Meinberg / LANTIME
|
<7.06.013 | ||
|
HPE OneView <v8.5
HPE / OneView
|
<v8.5 | ||
|
IBM Security Verify Access 10.0.X
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.x
|
10.0.X | |
|
ABB Relion SAM600-IO
ABB / Relion
|
cpe:/h:abb:relion:sam600-io
|
SAM600-IO | |
|
ABB Relion 650
ABB / Relion
|
cpe:/h:abb:relion:650
|
650 | |
|
ABB Relion 670
ABB / Relion
|
cpe:/h:abb:relion:670
|
670 | |
|
Hitachi Energy AFS
Hitachi Energy
|
cpe:/h:abb:afs:-
|
— | |
|
Aruba Switch
Aruba
|
cpe:/h:arubanetworks:switch:-
|
— | |
|
QNAP NAS
QNAP
|
cpe:/h:qnap:nas:-
|
— | |
|
HPE NonStop Server
HPE
|
cpe:/h:hp:nonstop_server:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Meinberg LANTIME 7.06.012
Meinberg / LANTIME
|
cpe:/h:meinberg:lantime:7.06.012
|
7.06.012 | |
|
Tenable Security Nessus Agent <8.3.5
Tenable Security / Nessus
|
Agent <8.3.5 | ||
|
Tenable Security Nessus Network Monitor <6.2.1
Tenable Security / Nessus Network Monitor
|
<6.2.1 | ||
|
Tenable Security Nessus Agent <10.3.2
Tenable Security / Nessus
|
Agent <10.3.2 | ||
|
Open Source OpenSSL <1.1.1t
Open Source / OpenSSL
|
<1.1.1t | ||
|
Open Source OpenSSL <3.0.8
Open Source / OpenSSL
|
<3.0.8 | ||
|
Dell Computer
Dell
|
cpe:/o:dell:dell_computer:-
|
— | |
|
Moxa Router TN-5900 <4.0
Moxa / Router
|
TN-5900 <4.0 | ||
|
Aruba ArubaOS
Aruba
|
cpe:/o:arubanetworks:arubaos:-
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
LANCOM LCOS 10.42 SU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.42_su10
|
10.42 SU10 | |
|
LANCOM LCOS 10.50 RU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.50_ru10
|
10.50 RU10 | |
|
LANCOM LCOS FX 10.11
LANCOM / LCOS
|
cpe:/o:lancom:lcos:fx_10.11
|
FX 10.11 | |
|
IBM Integration Bus 10.0.0.0-10.0.0.26
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.0.0.0_-_10.0.0.26
|
10.0.0.0-10.0.0.26 | |
|
Aruba EdgeConnect
Aruba
|
cpe:/a:aruba:edgeconnect:-
|
— | |
|
Oracle VM 3
Oracle / VM
|
cpe:/a:oracle:vm:3
|
3 | |
|
IBM Integration Bus 10.1
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.1
|
10.1 | |
|
LANCOM LCOS 10.72 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.72_su2
|
10.72 SU2 | |
|
IBM Spectrum Protect 10.1.14
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:10.1.14
|
10.1.14 | |
|
Red Hat Enterprise Linux Multicluster Engine
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:multicluster_engine
|
Multicluster Engine | |
|
IBM AIX 7.1
IBM / AIX
|
cpe:/o:ibm:aix:7.1
|
7.1 | |
|
IBM Business Automation Workflow 20.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.1
|
20.0.0.1 | |
|
SolarWinds Platform <2024.2
SolarWinds / Platform
|
<2024.2 | ||
|
IBM AIX 7.2
IBM / AIX
|
cpe:/o:ibm:aix:7.2
|
7.2 | |
|
NetApp Data ONTAP
NetApp
|
cpe:/a:netapp:data_ontap:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.2
|
18.0.0.2 | |
|
Xerox FreeFlow Print Server v7
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v7
|
v7 | |
|
IBM Business Automation Workflow 21.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3
|
21.0.3 | |
|
Hitachi Ops Center
Hitachi
|
cpe:/a:hitachi:ops_center:-
|
— | |
|
EMC Avamar
EMC
|
cpe:/a:emc:avamar:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Business Automation Workflow 20.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.2
|
20.0.0.2 | |
|
IBM InfoSphere Information Server 11.7
IBM / InfoSphere Information Server
|
cpe:/a:ibm:infosphere_information_server:11.7
|
11.7 | |
|
LANCOM LCOS SX 5.20 RU3
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_5.20_ru3
|
SX 5.20 RU3 | |
|
LANCOM LCOS LX 5.38 SU1
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.38_su1
|
LX 5.38 SU1 | |
|
LANCOM LCOS LX 6.10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_6.10
|
LX 6.10 | |
|
LANCOM LCOS SX 4.20
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_4.20
|
SX 4.20 | |
|
LANCOM LCOS LX 5.36 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.36_su2
|
LX 5.36 SU2 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
FreeBSD Project FreeBSD OS
FreeBSD Project
|
cpe:/o:freebsd:freebsd:-
|
— | |
|
IBM MQ 9.1 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.1_lts
|
9.1 LTS | |
|
IBM MQ 9.2 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.2_lts
|
9.2 LTS | |
|
IBM Business Automation Workflow 21.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.2
|
21.0.2 | |
|
IBM QRadar SIEM <7.5.0 UP10 IF01
IBM / QRadar SIEM
|
<7.5.0 UP10 IF01 | ||
|
IBM QRadar SIEM <7.5.0 UP12
IBM / QRadar SIEM
|
<7.5.0 UP12 | ||
|
IBM Spectrum Protect <8.1.17.2
IBM / Spectrum Protect
|
<8.1.17.2 | ||
|
Siemens SIMATIC S7 1500
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500
|
1500 | |
|
IBM Spectrum Protect Plus <10.1.17
IBM / Spectrum Protect Plus
|
<10.1.17 | ||
|
Tenable Security Nessus 8.15.9
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:8.15.9
|
8.15.9 | |
|
Tenable Security Nessus 10.4.3
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:10.4.3
|
10.4.3 | |
|
Hitachi Configuration Manager
Hitachi
|
cpe:/a:hitachi:configuration_manager:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
Red Hat OpenShift Container Platform <4.12.22
Red Hat / OpenShift
|
Container Platform <4.12.22 | ||
|
IBM DataPower Gateway <10.5.0.4
IBM / DataPower Gateway
|
<10.5.0.4 | ||
|
F5 BIG-IP
F5
|
cpe:/a:f5:big-ip:-
|
— | |
|
IBM Power Hardware Management Console v10
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10
|
v10 | |
|
IBM Rational ClearCase <9.0.2.8
IBM / Rational ClearCase
|
<9.0.2.8 | ||
|
IBM Spectrum Protect plus 10.1
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:plus_10.1
|
plus 10.1 | |
|
IBM Rational ClearCase <9.1.0.5
IBM / Rational ClearCase
|
<9.1.0.5 | ||
|
IBM Sterling Connect:Direct HP NonStop <3.6.0.6 iFix000
IBM / Sterling Connect:Direct
|
HP NonStop <3.6.0.6 iFix000 | ||
|
Dell NetWorker <19.12.0.2
Dell / NetWorker
|
<19.12.0.2 | ||
|
IBM Power Hardware Management Console DS8000
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:ds8000
|
DS8000 | |
|
Dell NetWorker <19.11.0.6
Dell / NetWorker
|
<19.11.0.6 | ||
|
Open Source CentOS
Open Source
|
cpe:/o:centos:centos:-
|
— | |
|
IBM AIX 7.3
IBM / AIX
|
cpe:/o:ibm:aix:7.3
|
7.3 | |
|
IBM MQ HPE NonStop 8.1.0
IBM / MQ
|
cpe:/a:ibm:mq:hpe_nonstop_8.1.0
|
HPE NonStop 8.1.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Security Verify Access 10.0.0.0-10.0.6.1
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.0.0_-_10.0.6.1
|
10.0.0.0-10.0.6.1 | |
|
IBM Rational ClearQuest <9.0.2.8
IBM / Rational ClearQuest
|
<9.0.2.8 | ||
|
Open Source OpenSSL <1.0.2zg
Open Source / OpenSSL
|
<1.0.2zg | ||
|
Hitachi Command Suite
Hitachi
|
cpe:/a:hitachi:command_suite:-
|
— | |
|
IBM Rational Build Forge <8.0.0.24
IBM / Rational Build Forge
|
<8.0.0.24 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM MQ 9.3 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.3_lts
|
9.3 LTS | |
|
IBM Business Automation Workflow 19.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.1
|
19.0.0.1 | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
IBM Business Automation Workflow 22.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.2
|
22.0.2 | |
|
Siemens SIMATIC S7
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:-
|
— | |
|
Red Hat OpenShift Container Platform <4.11.43
Red Hat / OpenShift
|
Container Platform <4.11.43 | ||
|
IBM Rational ClearQuest <9.1.0.5
IBM / Rational ClearQuest
|
<9.1.0.5 | ||
|
IBM Rational ClearQuest <10.0.3
IBM / Rational ClearQuest
|
<10.0.3 | ||
|
IBM Business Automation Workflow 22.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.1
|
22.0.1 | |
|
IBM Business Automation Workflow 18.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.1
|
18.0.0.1 | |
|
Dell NetWorker <19.11.0.5
Dell / NetWorker
|
<19.11.0.5 | ||
|
IBM QRadar SIEM <7.5.0 UP8
IBM / QRadar SIEM
|
<7.5.0 UP8 | ||
|
Gentoo Linux
Gentoo
|
cpe:/o:gentoo:linux:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.0
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.0
|
18.0.0.0 | |
|
SonicWall SMA <10.2.1.7-49sv
SonicWall / SMA
|
<10.2.1.7-49sv | ||
|
Dell NetWorker <19.10
Dell / NetWorker
|
<19.10 | ||
|
IBM MQ 9.0 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.0_lts
|
9.0 LTS | |
|
IBM MQ 8.0
IBM / MQ
|
cpe:/a:ibm:mq:8.0
|
8 | |
|
IBM QRadar SIEM 7.5
IBM / QRadar SIEM
|
cpe:/a:ibm:qradar_siem:7.5
|
7.5 | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
IBM Power Hardware Management Console v9
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v9
|
v9 | |
|
Aruba ClearPass Policy Manager
Aruba
|
cpe:/a:arubanetworks:clearpass_policy_manager:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Hitachi Energy RTU500
Hitachi Energy
|
cpe:/h:abb:rtu500:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
IBM DataPower Gateway <2018.4.1.26
IBM / DataPower Gateway
|
<2018.4.1.26 | ||
|
IBM DataPower Gateway <10.0.4.0sr3
IBM / DataPower Gateway
|
<10.0.4.0sr3 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM Business Automation Workflow 19.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.2
|
19.0.0.2 | |
|
IBM Business Automation Workflow 19.0.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.3
|
19.0.0.3 | |
|
Tenable Security Nessus <10.5.0
Tenable Security / Nessus
|
<10.5.0 | ||
|
SolarWinds Platform <2025.4
SolarWinds / Platform
|
<2025.4 | ||
|
Dell NetWorker <19.13
Dell / NetWorker
|
<19.13 | ||
|
Dell NetWorker
Dell / NetWorker
|
cpe:/a:dell:networker:-
|
— | |
|
IBM Business Automation Workflow 21.0.3.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3.1
|
21.0.3.1 | |
|
IBM MQ
IBM / MQ
|
cpe:/a:ibm:mq:-
|
— | |
|
Red Hat OpenShift Container Platform <4.13.4
Red Hat / OpenShift
|
Container Platform <4.13.4 | ||
|
HPE OneView <v6.60.05 LTS
HPE / OneView
|
<v6.60.05 LTS | ||
|
Meinberg LANTIME <7.06.013
Meinberg / LANTIME
|
<7.06.013 | ||
|
HPE OneView <v8.5
HPE / OneView
|
<v8.5 | ||
|
IBM Security Verify Access 10.0.X
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.x
|
10.0.X | |
|
ABB Relion SAM600-IO
ABB / Relion
|
cpe:/h:abb:relion:sam600-io
|
SAM600-IO | |
|
ABB Relion 650
ABB / Relion
|
cpe:/h:abb:relion:650
|
650 | |
|
ABB Relion 670
ABB / Relion
|
cpe:/h:abb:relion:670
|
670 | |
|
Hitachi Energy AFS
Hitachi Energy
|
cpe:/h:abb:afs:-
|
— | |
|
Aruba Switch
Aruba
|
cpe:/h:arubanetworks:switch:-
|
— | |
|
QNAP NAS
QNAP
|
cpe:/h:qnap:nas:-
|
— | |
|
HPE NonStop Server
HPE
|
cpe:/h:hp:nonstop_server:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Meinberg LANTIME 7.06.012
Meinberg / LANTIME
|
cpe:/h:meinberg:lantime:7.06.012
|
7.06.012 | |
|
Tenable Security Nessus Agent <8.3.5
Tenable Security / Nessus
|
Agent <8.3.5 | ||
|
Tenable Security Nessus Network Monitor <6.2.1
Tenable Security / Nessus Network Monitor
|
<6.2.1 | ||
|
Tenable Security Nessus Agent <10.3.2
Tenable Security / Nessus
|
Agent <10.3.2 | ||
|
Open Source OpenSSL <1.1.1t
Open Source / OpenSSL
|
<1.1.1t | ||
|
Open Source OpenSSL <3.0.8
Open Source / OpenSSL
|
<3.0.8 | ||
|
Dell Computer
Dell
|
cpe:/o:dell:dell_computer:-
|
— | |
|
Moxa Router TN-5900 <4.0
Moxa / Router
|
TN-5900 <4.0 | ||
|
Aruba ArubaOS
Aruba
|
cpe:/o:arubanetworks:arubaos:-
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
LANCOM LCOS 10.42 SU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.42_su10
|
10.42 SU10 | |
|
LANCOM LCOS 10.50 RU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.50_ru10
|
10.50 RU10 | |
|
LANCOM LCOS FX 10.11
LANCOM / LCOS
|
cpe:/o:lancom:lcos:fx_10.11
|
FX 10.11 | |
|
IBM Integration Bus 10.0.0.0-10.0.0.26
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.0.0.0_-_10.0.0.26
|
10.0.0.0-10.0.0.26 | |
|
Aruba EdgeConnect
Aruba
|
cpe:/a:aruba:edgeconnect:-
|
— | |
|
Oracle VM 3
Oracle / VM
|
cpe:/a:oracle:vm:3
|
3 | |
|
IBM Integration Bus 10.1
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.1
|
10.1 | |
|
LANCOM LCOS 10.72 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.72_su2
|
10.72 SU2 | |
|
IBM Spectrum Protect 10.1.14
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:10.1.14
|
10.1.14 | |
|
Red Hat Enterprise Linux Multicluster Engine
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:multicluster_engine
|
Multicluster Engine | |
|
IBM AIX 7.1
IBM / AIX
|
cpe:/o:ibm:aix:7.1
|
7.1 | |
|
IBM Business Automation Workflow 20.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.1
|
20.0.0.1 | |
|
SolarWinds Platform <2024.2
SolarWinds / Platform
|
<2024.2 | ||
|
IBM AIX 7.2
IBM / AIX
|
cpe:/o:ibm:aix:7.2
|
7.2 | |
|
NetApp Data ONTAP
NetApp
|
cpe:/a:netapp:data_ontap:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.2
|
18.0.0.2 | |
|
Xerox FreeFlow Print Server v7
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v7
|
v7 | |
|
IBM Business Automation Workflow 21.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3
|
21.0.3 | |
|
Hitachi Ops Center
Hitachi
|
cpe:/a:hitachi:ops_center:-
|
— | |
|
EMC Avamar
EMC
|
cpe:/a:emc:avamar:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Business Automation Workflow 20.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.2
|
20.0.0.2 | |
|
IBM InfoSphere Information Server 11.7
IBM / InfoSphere Information Server
|
cpe:/a:ibm:infosphere_information_server:11.7
|
11.7 | |
|
LANCOM LCOS SX 5.20 RU3
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_5.20_ru3
|
SX 5.20 RU3 | |
|
LANCOM LCOS LX 5.38 SU1
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.38_su1
|
LX 5.38 SU1 | |
|
LANCOM LCOS LX 6.10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_6.10
|
LX 6.10 | |
|
LANCOM LCOS SX 4.20
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_4.20
|
SX 4.20 | |
|
LANCOM LCOS LX 5.36 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.36_su2
|
LX 5.36 SU2 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
FreeBSD Project FreeBSD OS
FreeBSD Project
|
cpe:/o:freebsd:freebsd:-
|
— | |
|
IBM MQ 9.1 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.1_lts
|
9.1 LTS | |
|
IBM MQ 9.2 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.2_lts
|
9.2 LTS | |
|
IBM Business Automation Workflow 21.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.2
|
21.0.2 | |
|
IBM QRadar SIEM <7.5.0 UP10 IF01
IBM / QRadar SIEM
|
<7.5.0 UP10 IF01 | ||
|
IBM QRadar SIEM <7.5.0 UP12
IBM / QRadar SIEM
|
<7.5.0 UP12 | ||
|
IBM Spectrum Protect <8.1.17.2
IBM / Spectrum Protect
|
<8.1.17.2 | ||
|
Siemens SIMATIC S7 1500
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500
|
1500 | |
|
IBM Spectrum Protect Plus <10.1.17
IBM / Spectrum Protect Plus
|
<10.1.17 | ||
|
Tenable Security Nessus 8.15.9
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:8.15.9
|
8.15.9 | |
|
Tenable Security Nessus 10.4.3
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:10.4.3
|
10.4.3 | |
|
Hitachi Configuration Manager
Hitachi
|
cpe:/a:hitachi:configuration_manager:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
Red Hat OpenShift Container Platform <4.12.22
Red Hat / OpenShift
|
Container Platform <4.12.22 | ||
|
IBM DataPower Gateway <10.5.0.4
IBM / DataPower Gateway
|
<10.5.0.4 | ||
|
F5 BIG-IP
F5
|
cpe:/a:f5:big-ip:-
|
— | |
|
IBM Power Hardware Management Console v10
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10
|
v10 | |
|
IBM Rational ClearCase <9.0.2.8
IBM / Rational ClearCase
|
<9.0.2.8 | ||
|
IBM Spectrum Protect plus 10.1
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:plus_10.1
|
plus 10.1 | |
|
IBM Rational ClearCase <9.1.0.5
IBM / Rational ClearCase
|
<9.1.0.5 | ||
|
IBM Sterling Connect:Direct HP NonStop <3.6.0.6 iFix000
IBM / Sterling Connect:Direct
|
HP NonStop <3.6.0.6 iFix000 | ||
|
Dell NetWorker <19.12.0.2
Dell / NetWorker
|
<19.12.0.2 | ||
|
IBM Power Hardware Management Console DS8000
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:ds8000
|
DS8000 | |
|
Dell NetWorker <19.11.0.6
Dell / NetWorker
|
<19.11.0.6 | ||
|
Open Source CentOS
Open Source
|
cpe:/o:centos:centos:-
|
— | |
|
IBM AIX 7.3
IBM / AIX
|
cpe:/o:ibm:aix:7.3
|
7.3 | |
|
IBM MQ HPE NonStop 8.1.0
IBM / MQ
|
cpe:/a:ibm:mq:hpe_nonstop_8.1.0
|
HPE NonStop 8.1.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Security Verify Access 10.0.0.0-10.0.6.1
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.0.0_-_10.0.6.1
|
10.0.0.0-10.0.6.1 | |
|
IBM Rational ClearQuest <9.0.2.8
IBM / Rational ClearQuest
|
<9.0.2.8 | ||
|
Open Source OpenSSL <1.0.2zg
Open Source / OpenSSL
|
<1.0.2zg | ||
|
Hitachi Command Suite
Hitachi
|
cpe:/a:hitachi:command_suite:-
|
— | |
|
IBM Rational Build Forge <8.0.0.24
IBM / Rational Build Forge
|
<8.0.0.24 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM MQ 9.3 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.3_lts
|
9.3 LTS | |
|
IBM Business Automation Workflow 19.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.1
|
19.0.0.1 | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
IBM Business Automation Workflow 22.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.2
|
22.0.2 | |
|
Siemens SIMATIC S7
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:-
|
— | |
|
Red Hat OpenShift Container Platform <4.11.43
Red Hat / OpenShift
|
Container Platform <4.11.43 | ||
|
IBM Rational ClearQuest <9.1.0.5
IBM / Rational ClearQuest
|
<9.1.0.5 | ||
|
IBM Rational ClearQuest <10.0.3
IBM / Rational ClearQuest
|
<10.0.3 | ||
|
IBM Business Automation Workflow 22.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.1
|
22.0.1 | |
|
IBM Business Automation Workflow 18.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.1
|
18.0.0.1 | |
|
Dell NetWorker <19.11.0.5
Dell / NetWorker
|
<19.11.0.5 | ||
|
IBM QRadar SIEM <7.5.0 UP8
IBM / QRadar SIEM
|
<7.5.0 UP8 | ||
|
Gentoo Linux
Gentoo
|
cpe:/o:gentoo:linux:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.0
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.0
|
18.0.0.0 | |
|
SonicWall SMA <10.2.1.7-49sv
SonicWall / SMA
|
<10.2.1.7-49sv | ||
|
Dell NetWorker <19.10
Dell / NetWorker
|
<19.10 | ||
|
IBM MQ 9.0 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.0_lts
|
9.0 LTS | |
|
IBM MQ 8.0
IBM / MQ
|
cpe:/a:ibm:mq:8.0
|
8 | |
|
IBM QRadar SIEM 7.5
IBM / QRadar SIEM
|
cpe:/a:ibm:qradar_siem:7.5
|
7.5 | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
IBM Power Hardware Management Console v9
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v9
|
v9 | |
|
Aruba ClearPass Policy Manager
Aruba
|
cpe:/a:arubanetworks:clearpass_policy_manager:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Hitachi Energy RTU500
Hitachi Energy
|
cpe:/h:abb:rtu500:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
IBM DataPower Gateway <2018.4.1.26
IBM / DataPower Gateway
|
<2018.4.1.26 | ||
|
IBM DataPower Gateway <10.0.4.0sr3
IBM / DataPower Gateway
|
<10.0.4.0sr3 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM Business Automation Workflow 19.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.2
|
19.0.0.2 | |
|
IBM Business Automation Workflow 19.0.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.3
|
19.0.0.3 | |
|
Tenable Security Nessus <10.5.0
Tenable Security / Nessus
|
<10.5.0 | ||
|
SolarWinds Platform <2025.4
SolarWinds / Platform
|
<2025.4 | ||
|
Dell NetWorker <19.13
Dell / NetWorker
|
<19.13 | ||
|
Dell NetWorker
Dell / NetWorker
|
cpe:/a:dell:networker:-
|
— | |
|
IBM Business Automation Workflow 21.0.3.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3.1
|
21.0.3.1 | |
|
IBM MQ
IBM / MQ
|
cpe:/a:ibm:mq:-
|
— | |
|
Red Hat OpenShift Container Platform <4.13.4
Red Hat / OpenShift
|
Container Platform <4.13.4 | ||
|
HPE OneView <v6.60.05 LTS
HPE / OneView
|
<v6.60.05 LTS | ||
|
Meinberg LANTIME <7.06.013
Meinberg / LANTIME
|
<7.06.013 | ||
|
HPE OneView <v8.5
HPE / OneView
|
<v8.5 | ||
|
IBM Security Verify Access 10.0.X
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.x
|
10.0.X | |
|
ABB Relion SAM600-IO
ABB / Relion
|
cpe:/h:abb:relion:sam600-io
|
SAM600-IO | |
|
ABB Relion 650
ABB / Relion
|
cpe:/h:abb:relion:650
|
650 | |
|
ABB Relion 670
ABB / Relion
|
cpe:/h:abb:relion:670
|
670 | |
|
Hitachi Energy AFS
Hitachi Energy
|
cpe:/h:abb:afs:-
|
— | |
|
Aruba Switch
Aruba
|
cpe:/h:arubanetworks:switch:-
|
— | |
|
QNAP NAS
QNAP
|
cpe:/h:qnap:nas:-
|
— | |
|
HPE NonStop Server
HPE
|
cpe:/h:hp:nonstop_server:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Meinberg LANTIME 7.06.012
Meinberg / LANTIME
|
cpe:/h:meinberg:lantime:7.06.012
|
7.06.012 | |
|
Tenable Security Nessus Agent <8.3.5
Tenable Security / Nessus
|
Agent <8.3.5 | ||
|
Tenable Security Nessus Network Monitor <6.2.1
Tenable Security / Nessus Network Monitor
|
<6.2.1 | ||
|
Tenable Security Nessus Agent <10.3.2
Tenable Security / Nessus
|
Agent <10.3.2 | ||
|
Open Source OpenSSL <1.1.1t
Open Source / OpenSSL
|
<1.1.1t | ||
|
Open Source OpenSSL <3.0.8
Open Source / OpenSSL
|
<3.0.8 | ||
|
Dell Computer
Dell
|
cpe:/o:dell:dell_computer:-
|
— | |
|
Moxa Router TN-5900 <4.0
Moxa / Router
|
TN-5900 <4.0 | ||
|
Aruba ArubaOS
Aruba
|
cpe:/o:arubanetworks:arubaos:-
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
LANCOM LCOS 10.42 SU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.42_su10
|
10.42 SU10 | |
|
LANCOM LCOS 10.50 RU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.50_ru10
|
10.50 RU10 | |
|
LANCOM LCOS FX 10.11
LANCOM / LCOS
|
cpe:/o:lancom:lcos:fx_10.11
|
FX 10.11 | |
|
IBM Integration Bus 10.0.0.0-10.0.0.26
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.0.0.0_-_10.0.0.26
|
10.0.0.0-10.0.0.26 | |
|
Aruba EdgeConnect
Aruba
|
cpe:/a:aruba:edgeconnect:-
|
— | |
|
Oracle VM 3
Oracle / VM
|
cpe:/a:oracle:vm:3
|
3 | |
|
IBM Integration Bus 10.1
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.1
|
10.1 | |
|
LANCOM LCOS 10.72 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.72_su2
|
10.72 SU2 | |
|
IBM Spectrum Protect 10.1.14
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:10.1.14
|
10.1.14 | |
|
Red Hat Enterprise Linux Multicluster Engine
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:multicluster_engine
|
Multicluster Engine | |
|
IBM AIX 7.1
IBM / AIX
|
cpe:/o:ibm:aix:7.1
|
7.1 | |
|
IBM Business Automation Workflow 20.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.1
|
20.0.0.1 | |
|
SolarWinds Platform <2024.2
SolarWinds / Platform
|
<2024.2 | ||
|
IBM AIX 7.2
IBM / AIX
|
cpe:/o:ibm:aix:7.2
|
7.2 | |
|
NetApp Data ONTAP
NetApp
|
cpe:/a:netapp:data_ontap:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.2
|
18.0.0.2 | |
|
Xerox FreeFlow Print Server v7
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v7
|
v7 | |
|
IBM Business Automation Workflow 21.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3
|
21.0.3 | |
|
Hitachi Ops Center
Hitachi
|
cpe:/a:hitachi:ops_center:-
|
— | |
|
EMC Avamar
EMC
|
cpe:/a:emc:avamar:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Business Automation Workflow 20.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.2
|
20.0.0.2 | |
|
IBM InfoSphere Information Server 11.7
IBM / InfoSphere Information Server
|
cpe:/a:ibm:infosphere_information_server:11.7
|
11.7 | |
|
LANCOM LCOS SX 5.20 RU3
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_5.20_ru3
|
SX 5.20 RU3 | |
|
LANCOM LCOS LX 5.38 SU1
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.38_su1
|
LX 5.38 SU1 | |
|
LANCOM LCOS LX 6.10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_6.10
|
LX 6.10 | |
|
LANCOM LCOS SX 4.20
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_4.20
|
SX 4.20 | |
|
LANCOM LCOS LX 5.36 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.36_su2
|
LX 5.36 SU2 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
FreeBSD Project FreeBSD OS
FreeBSD Project
|
cpe:/o:freebsd:freebsd:-
|
— | |
|
IBM MQ 9.1 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.1_lts
|
9.1 LTS | |
|
IBM MQ 9.2 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.2_lts
|
9.2 LTS | |
|
IBM Business Automation Workflow 21.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.2
|
21.0.2 | |
|
IBM QRadar SIEM <7.5.0 UP10 IF01
IBM / QRadar SIEM
|
<7.5.0 UP10 IF01 | ||
|
IBM QRadar SIEM <7.5.0 UP12
IBM / QRadar SIEM
|
<7.5.0 UP12 | ||
|
IBM Spectrum Protect <8.1.17.2
IBM / Spectrum Protect
|
<8.1.17.2 | ||
|
Siemens SIMATIC S7 1500
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500
|
1500 | |
|
IBM Spectrum Protect Plus <10.1.17
IBM / Spectrum Protect Plus
|
<10.1.17 | ||
|
Tenable Security Nessus 8.15.9
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:8.15.9
|
8.15.9 | |
|
Tenable Security Nessus 10.4.3
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:10.4.3
|
10.4.3 | |
|
Hitachi Configuration Manager
Hitachi
|
cpe:/a:hitachi:configuration_manager:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
Red Hat OpenShift Container Platform <4.12.22
Red Hat / OpenShift
|
Container Platform <4.12.22 | ||
|
IBM DataPower Gateway <10.5.0.4
IBM / DataPower Gateway
|
<10.5.0.4 | ||
|
F5 BIG-IP
F5
|
cpe:/a:f5:big-ip:-
|
— | |
|
IBM Power Hardware Management Console v10
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10
|
v10 | |
|
IBM Rational ClearCase <9.0.2.8
IBM / Rational ClearCase
|
<9.0.2.8 | ||
|
IBM Spectrum Protect plus 10.1
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:plus_10.1
|
plus 10.1 | |
|
IBM Rational ClearCase <9.1.0.5
IBM / Rational ClearCase
|
<9.1.0.5 | ||
|
IBM Sterling Connect:Direct HP NonStop <3.6.0.6 iFix000
IBM / Sterling Connect:Direct
|
HP NonStop <3.6.0.6 iFix000 | ||
|
Dell NetWorker <19.12.0.2
Dell / NetWorker
|
<19.12.0.2 | ||
|
IBM Power Hardware Management Console DS8000
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:ds8000
|
DS8000 | |
|
Dell NetWorker <19.11.0.6
Dell / NetWorker
|
<19.11.0.6 | ||
|
Open Source CentOS
Open Source
|
cpe:/o:centos:centos:-
|
— | |
|
IBM AIX 7.3
IBM / AIX
|
cpe:/o:ibm:aix:7.3
|
7.3 | |
|
IBM MQ HPE NonStop 8.1.0
IBM / MQ
|
cpe:/a:ibm:mq:hpe_nonstop_8.1.0
|
HPE NonStop 8.1.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Security Verify Access 10.0.0.0-10.0.6.1
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.0.0_-_10.0.6.1
|
10.0.0.0-10.0.6.1 | |
|
IBM Rational ClearQuest <9.0.2.8
IBM / Rational ClearQuest
|
<9.0.2.8 | ||
|
Open Source OpenSSL <1.0.2zg
Open Source / OpenSSL
|
<1.0.2zg | ||
|
Hitachi Command Suite
Hitachi
|
cpe:/a:hitachi:command_suite:-
|
— | |
|
IBM Rational Build Forge <8.0.0.24
IBM / Rational Build Forge
|
<8.0.0.24 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM MQ 9.3 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.3_lts
|
9.3 LTS | |
|
IBM Business Automation Workflow 19.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.1
|
19.0.0.1 | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
IBM Business Automation Workflow 22.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.2
|
22.0.2 | |
|
Siemens SIMATIC S7
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:-
|
— | |
|
Red Hat OpenShift Container Platform <4.11.43
Red Hat / OpenShift
|
Container Platform <4.11.43 | ||
|
IBM Rational ClearQuest <9.1.0.5
IBM / Rational ClearQuest
|
<9.1.0.5 | ||
|
IBM Rational ClearQuest <10.0.3
IBM / Rational ClearQuest
|
<10.0.3 | ||
|
IBM Business Automation Workflow 22.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.1
|
22.0.1 | |
|
IBM Business Automation Workflow 18.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.1
|
18.0.0.1 | |
|
Dell NetWorker <19.11.0.5
Dell / NetWorker
|
<19.11.0.5 | ||
|
IBM QRadar SIEM <7.5.0 UP8
IBM / QRadar SIEM
|
<7.5.0 UP8 | ||
|
Gentoo Linux
Gentoo
|
cpe:/o:gentoo:linux:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.0
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.0
|
18.0.0.0 | |
|
SonicWall SMA <10.2.1.7-49sv
SonicWall / SMA
|
<10.2.1.7-49sv | ||
|
Dell NetWorker <19.10
Dell / NetWorker
|
<19.10 | ||
|
IBM MQ 9.0 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.0_lts
|
9.0 LTS | |
|
IBM MQ 8.0
IBM / MQ
|
cpe:/a:ibm:mq:8.0
|
8 | |
|
IBM QRadar SIEM 7.5
IBM / QRadar SIEM
|
cpe:/a:ibm:qradar_siem:7.5
|
7.5 | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
IBM Power Hardware Management Console v9
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v9
|
v9 | |
|
Aruba ClearPass Policy Manager
Aruba
|
cpe:/a:arubanetworks:clearpass_policy_manager:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Hitachi Energy RTU500
Hitachi Energy
|
cpe:/h:abb:rtu500:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
IBM DataPower Gateway <2018.4.1.26
IBM / DataPower Gateway
|
<2018.4.1.26 | ||
|
IBM DataPower Gateway <10.0.4.0sr3
IBM / DataPower Gateway
|
<10.0.4.0sr3 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM Business Automation Workflow 19.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.2
|
19.0.0.2 | |
|
IBM Business Automation Workflow 19.0.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.3
|
19.0.0.3 | |
|
Tenable Security Nessus <10.5.0
Tenable Security / Nessus
|
<10.5.0 | ||
|
SolarWinds Platform <2025.4
SolarWinds / Platform
|
<2025.4 | ||
|
Dell NetWorker <19.13
Dell / NetWorker
|
<19.13 | ||
|
Dell NetWorker
Dell / NetWorker
|
cpe:/a:dell:networker:-
|
— | |
|
IBM Business Automation Workflow 21.0.3.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3.1
|
21.0.3.1 | |
|
IBM MQ
IBM / MQ
|
cpe:/a:ibm:mq:-
|
— | |
|
Red Hat OpenShift Container Platform <4.13.4
Red Hat / OpenShift
|
Container Platform <4.13.4 | ||
|
HPE OneView <v6.60.05 LTS
HPE / OneView
|
<v6.60.05 LTS | ||
|
Meinberg LANTIME <7.06.013
Meinberg / LANTIME
|
<7.06.013 | ||
|
HPE OneView <v8.5
HPE / OneView
|
<v8.5 | ||
|
IBM Security Verify Access 10.0.X
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.x
|
10.0.X | |
|
ABB Relion SAM600-IO
ABB / Relion
|
cpe:/h:abb:relion:sam600-io
|
SAM600-IO | |
|
ABB Relion 650
ABB / Relion
|
cpe:/h:abb:relion:650
|
650 | |
|
ABB Relion 670
ABB / Relion
|
cpe:/h:abb:relion:670
|
670 | |
|
Hitachi Energy AFS
Hitachi Energy
|
cpe:/h:abb:afs:-
|
— | |
|
Aruba Switch
Aruba
|
cpe:/h:arubanetworks:switch:-
|
— | |
|
QNAP NAS
QNAP
|
cpe:/h:qnap:nas:-
|
— | |
|
HPE NonStop Server
HPE
|
cpe:/h:hp:nonstop_server:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Meinberg LANTIME 7.06.012
Meinberg / LANTIME
|
cpe:/h:meinberg:lantime:7.06.012
|
7.06.012 | |
|
Tenable Security Nessus Agent <8.3.5
Tenable Security / Nessus
|
Agent <8.3.5 | ||
|
Tenable Security Nessus Network Monitor <6.2.1
Tenable Security / Nessus Network Monitor
|
<6.2.1 | ||
|
Tenable Security Nessus Agent <10.3.2
Tenable Security / Nessus
|
Agent <10.3.2 | ||
|
Open Source OpenSSL <1.1.1t
Open Source / OpenSSL
|
<1.1.1t | ||
|
Open Source OpenSSL <3.0.8
Open Source / OpenSSL
|
<3.0.8 | ||
|
Dell Computer
Dell
|
cpe:/o:dell:dell_computer:-
|
— | |
|
Moxa Router TN-5900 <4.0
Moxa / Router
|
TN-5900 <4.0 | ||
|
Aruba ArubaOS
Aruba
|
cpe:/o:arubanetworks:arubaos:-
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
LANCOM LCOS 10.42 SU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.42_su10
|
10.42 SU10 | |
|
LANCOM LCOS 10.50 RU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.50_ru10
|
10.50 RU10 | |
|
LANCOM LCOS FX 10.11
LANCOM / LCOS
|
cpe:/o:lancom:lcos:fx_10.11
|
FX 10.11 | |
|
IBM Integration Bus 10.0.0.0-10.0.0.26
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.0.0.0_-_10.0.0.26
|
10.0.0.0-10.0.0.26 | |
|
Aruba EdgeConnect
Aruba
|
cpe:/a:aruba:edgeconnect:-
|
— | |
|
Oracle VM 3
Oracle / VM
|
cpe:/a:oracle:vm:3
|
3 | |
|
IBM Integration Bus 10.1
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.1
|
10.1 | |
|
LANCOM LCOS 10.72 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.72_su2
|
10.72 SU2 | |
|
IBM Spectrum Protect 10.1.14
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:10.1.14
|
10.1.14 | |
|
Red Hat Enterprise Linux Multicluster Engine
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:multicluster_engine
|
Multicluster Engine | |
|
IBM AIX 7.1
IBM / AIX
|
cpe:/o:ibm:aix:7.1
|
7.1 | |
|
IBM Business Automation Workflow 20.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.1
|
20.0.0.1 | |
|
SolarWinds Platform <2024.2
SolarWinds / Platform
|
<2024.2 | ||
|
IBM AIX 7.2
IBM / AIX
|
cpe:/o:ibm:aix:7.2
|
7.2 | |
|
NetApp Data ONTAP
NetApp
|
cpe:/a:netapp:data_ontap:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.2
|
18.0.0.2 | |
|
Xerox FreeFlow Print Server v7
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v7
|
v7 | |
|
IBM Business Automation Workflow 21.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3
|
21.0.3 | |
|
Hitachi Ops Center
Hitachi
|
cpe:/a:hitachi:ops_center:-
|
— | |
|
EMC Avamar
EMC
|
cpe:/a:emc:avamar:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Business Automation Workflow 20.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.2
|
20.0.0.2 | |
|
IBM InfoSphere Information Server 11.7
IBM / InfoSphere Information Server
|
cpe:/a:ibm:infosphere_information_server:11.7
|
11.7 | |
|
LANCOM LCOS SX 5.20 RU3
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_5.20_ru3
|
SX 5.20 RU3 | |
|
LANCOM LCOS LX 5.38 SU1
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.38_su1
|
LX 5.38 SU1 | |
|
LANCOM LCOS LX 6.10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_6.10
|
LX 6.10 | |
|
LANCOM LCOS SX 4.20
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_4.20
|
SX 4.20 | |
|
LANCOM LCOS LX 5.36 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.36_su2
|
LX 5.36 SU2 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
FreeBSD Project FreeBSD OS
FreeBSD Project
|
cpe:/o:freebsd:freebsd:-
|
— | |
|
IBM MQ 9.1 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.1_lts
|
9.1 LTS | |
|
IBM MQ 9.2 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.2_lts
|
9.2 LTS | |
|
IBM Business Automation Workflow 21.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.2
|
21.0.2 | |
|
IBM QRadar SIEM <7.5.0 UP10 IF01
IBM / QRadar SIEM
|
<7.5.0 UP10 IF01 | ||
|
IBM QRadar SIEM <7.5.0 UP12
IBM / QRadar SIEM
|
<7.5.0 UP12 | ||
|
IBM Spectrum Protect <8.1.17.2
IBM / Spectrum Protect
|
<8.1.17.2 | ||
|
Siemens SIMATIC S7 1500
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500
|
1500 | |
|
IBM Spectrum Protect Plus <10.1.17
IBM / Spectrum Protect Plus
|
<10.1.17 | ||
|
Tenable Security Nessus 8.15.9
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:8.15.9
|
8.15.9 | |
|
Tenable Security Nessus 10.4.3
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:10.4.3
|
10.4.3 | |
|
Hitachi Configuration Manager
Hitachi
|
cpe:/a:hitachi:configuration_manager:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
Red Hat OpenShift Container Platform <4.12.22
Red Hat / OpenShift
|
Container Platform <4.12.22 | ||
|
IBM DataPower Gateway <10.5.0.4
IBM / DataPower Gateway
|
<10.5.0.4 | ||
|
F5 BIG-IP
F5
|
cpe:/a:f5:big-ip:-
|
— | |
|
IBM Power Hardware Management Console v10
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10
|
v10 | |
|
IBM Rational ClearCase <9.0.2.8
IBM / Rational ClearCase
|
<9.0.2.8 | ||
|
IBM Spectrum Protect plus 10.1
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:plus_10.1
|
plus 10.1 | |
|
IBM Rational ClearCase <9.1.0.5
IBM / Rational ClearCase
|
<9.1.0.5 | ||
|
IBM Sterling Connect:Direct HP NonStop <3.6.0.6 iFix000
IBM / Sterling Connect:Direct
|
HP NonStop <3.6.0.6 iFix000 | ||
|
Dell NetWorker <19.12.0.2
Dell / NetWorker
|
<19.12.0.2 | ||
|
IBM Power Hardware Management Console DS8000
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:ds8000
|
DS8000 | |
|
Dell NetWorker <19.11.0.6
Dell / NetWorker
|
<19.11.0.6 | ||
|
Open Source CentOS
Open Source
|
cpe:/o:centos:centos:-
|
— | |
|
IBM AIX 7.3
IBM / AIX
|
cpe:/o:ibm:aix:7.3
|
7.3 | |
|
IBM MQ HPE NonStop 8.1.0
IBM / MQ
|
cpe:/a:ibm:mq:hpe_nonstop_8.1.0
|
HPE NonStop 8.1.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
IBM Security Verify Access 10.0.0.0-10.0.6.1
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.0.0_-_10.0.6.1
|
10.0.0.0-10.0.6.1 | |
|
IBM Rational ClearQuest <9.0.2.8
IBM / Rational ClearQuest
|
<9.0.2.8 | ||
|
Open Source OpenSSL <1.0.2zg
Open Source / OpenSSL
|
<1.0.2zg | ||
|
Hitachi Command Suite
Hitachi
|
cpe:/a:hitachi:command_suite:-
|
— | |
|
IBM Rational Build Forge <8.0.0.24
IBM / Rational Build Forge
|
<8.0.0.24 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM MQ 9.3 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.3_lts
|
9.3 LTS | |
|
IBM Business Automation Workflow 19.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.1
|
19.0.0.1 | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
IBM Business Automation Workflow 22.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.2
|
22.0.2 | |
|
Siemens SIMATIC S7
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:-
|
— | |
|
Red Hat OpenShift Container Platform <4.11.43
Red Hat / OpenShift
|
Container Platform <4.11.43 | ||
|
IBM Rational ClearQuest <9.1.0.5
IBM / Rational ClearQuest
|
<9.1.0.5 | ||
|
IBM Rational ClearQuest <10.0.3
IBM / Rational ClearQuest
|
<10.0.3 | ||
|
IBM Business Automation Workflow 22.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:22.0.1
|
22.0.1 | |
|
IBM Business Automation Workflow 18.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.1
|
18.0.0.1 | |
|
Dell NetWorker <19.11.0.5
Dell / NetWorker
|
<19.11.0.5 | ||
|
IBM QRadar SIEM <7.5.0 UP8
IBM / QRadar SIEM
|
<7.5.0 UP8 | ||
|
Gentoo Linux
Gentoo
|
cpe:/o:gentoo:linux:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.0
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.0
|
18.0.0.0 | |
|
SonicWall SMA <10.2.1.7-49sv
SonicWall / SMA
|
<10.2.1.7-49sv | ||
|
Dell NetWorker <19.10
Dell / NetWorker
|
<19.10 | ||
|
IBM MQ 9.0 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.0_lts
|
9.0 LTS | |
|
IBM MQ 8.0
IBM / MQ
|
cpe:/a:ibm:mq:8.0
|
8 | |
|
IBM QRadar SIEM 7.5
IBM / QRadar SIEM
|
cpe:/a:ibm:qradar_siem:7.5
|
7.5 | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
IBM Power Hardware Management Console v9
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v9
|
v9 | |
|
Aruba ClearPass Policy Manager
Aruba
|
cpe:/a:arubanetworks:clearpass_policy_manager:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Hitachi Energy RTU500
Hitachi Energy
|
cpe:/h:abb:rtu500:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
IBM DataPower Gateway <2018.4.1.26
IBM / DataPower Gateway
|
<2018.4.1.26 | ||
|
IBM DataPower Gateway <10.0.4.0sr3
IBM / DataPower Gateway
|
<10.0.4.0sr3 | ||
|
Dell PowerEdge
Dell / PowerEdge
|
cpe:/h:dell:poweredge:-
|
— | |
|
IBM Business Automation Workflow 19.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.2
|
19.0.0.2 | |
|
IBM Business Automation Workflow 19.0.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:19.0.0.3
|
19.0.0.3 | |
|
Tenable Security Nessus <10.5.0
Tenable Security / Nessus
|
<10.5.0 | ||
|
SolarWinds Platform <2025.4
SolarWinds / Platform
|
<2025.4 | ||
|
Dell NetWorker <19.13
Dell / NetWorker
|
<19.13 | ||
|
Dell NetWorker
Dell / NetWorker
|
cpe:/a:dell:networker:-
|
— | |
|
IBM Business Automation Workflow 21.0.3.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3.1
|
21.0.3.1 | |
|
IBM MQ
IBM / MQ
|
cpe:/a:ibm:mq:-
|
— | |
|
Red Hat OpenShift Container Platform <4.13.4
Red Hat / OpenShift
|
Container Platform <4.13.4 | ||
|
HPE OneView <v6.60.05 LTS
HPE / OneView
|
<v6.60.05 LTS | ||
|
Meinberg LANTIME <7.06.013
Meinberg / LANTIME
|
<7.06.013 | ||
|
HPE OneView <v8.5
HPE / OneView
|
<v8.5 | ||
|
IBM Security Verify Access 10.0.X
IBM / Security Verify Access
|
cpe:/a:ibm:security_verify_access:10.0.x
|
10.0.X | |
|
ABB Relion SAM600-IO
ABB / Relion
|
cpe:/h:abb:relion:sam600-io
|
SAM600-IO | |
|
ABB Relion 650
ABB / Relion
|
cpe:/h:abb:relion:650
|
650 | |
|
ABB Relion 670
ABB / Relion
|
cpe:/h:abb:relion:670
|
670 | |
|
Hitachi Energy AFS
Hitachi Energy
|
cpe:/h:abb:afs:-
|
— | |
|
Aruba Switch
Aruba
|
cpe:/h:arubanetworks:switch:-
|
— | |
|
QNAP NAS
QNAP
|
cpe:/h:qnap:nas:-
|
— | |
|
HPE NonStop Server
HPE
|
cpe:/h:hp:nonstop_server:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Meinberg LANTIME 7.06.012
Meinberg / LANTIME
|
cpe:/h:meinberg:lantime:7.06.012
|
7.06.012 | |
|
Tenable Security Nessus Agent <8.3.5
Tenable Security / Nessus
|
Agent <8.3.5 | ||
|
Tenable Security Nessus Network Monitor <6.2.1
Tenable Security / Nessus Network Monitor
|
<6.2.1 | ||
|
Tenable Security Nessus Agent <10.3.2
Tenable Security / Nessus
|
Agent <10.3.2 | ||
|
Open Source OpenSSL <1.1.1t
Open Source / OpenSSL
|
<1.1.1t | ||
|
Open Source OpenSSL <3.0.8
Open Source / OpenSSL
|
<3.0.8 | ||
|
Dell Computer
Dell
|
cpe:/o:dell:dell_computer:-
|
— | |
|
Moxa Router TN-5900 <4.0
Moxa / Router
|
TN-5900 <4.0 | ||
|
Aruba ArubaOS
Aruba
|
cpe:/o:arubanetworks:arubaos:-
|
— | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
LANCOM LCOS 10.42 SU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.42_su10
|
10.42 SU10 | |
|
LANCOM LCOS 10.50 RU10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.50_ru10
|
10.50 RU10 | |
|
LANCOM LCOS FX 10.11
LANCOM / LCOS
|
cpe:/o:lancom:lcos:fx_10.11
|
FX 10.11 | |
|
IBM Integration Bus 10.0.0.0-10.0.0.26
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.0.0.0_-_10.0.0.26
|
10.0.0.0-10.0.0.26 | |
|
Aruba EdgeConnect
Aruba
|
cpe:/a:aruba:edgeconnect:-
|
— | |
|
Oracle VM 3
Oracle / VM
|
cpe:/a:oracle:vm:3
|
3 | |
|
IBM Integration Bus 10.1
IBM / Integration Bus
|
cpe:/a:ibm:integration_bus:10.1
|
10.1 | |
|
LANCOM LCOS 10.72 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:10.72_su2
|
10.72 SU2 | |
|
IBM Spectrum Protect 10.1.14
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:10.1.14
|
10.1.14 | |
|
Red Hat Enterprise Linux Multicluster Engine
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:multicluster_engine
|
Multicluster Engine | |
|
IBM AIX 7.1
IBM / AIX
|
cpe:/o:ibm:aix:7.1
|
7.1 | |
|
IBM Business Automation Workflow 20.0.0.1
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.1
|
20.0.0.1 | |
|
SolarWinds Platform <2024.2
SolarWinds / Platform
|
<2024.2 | ||
|
IBM AIX 7.2
IBM / AIX
|
cpe:/o:ibm:aix:7.2
|
7.2 | |
|
NetApp Data ONTAP
NetApp
|
cpe:/a:netapp:data_ontap:-
|
— | |
|
IBM Business Automation Workflow 18.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:18.0.0.2
|
18.0.0.2 | |
|
Xerox FreeFlow Print Server v7
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v7
|
v7 | |
|
IBM Business Automation Workflow 21.0.3
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.3
|
21.0.3 | |
|
Hitachi Ops Center
Hitachi
|
cpe:/a:hitachi:ops_center:-
|
— | |
|
EMC Avamar
EMC
|
cpe:/a:emc:avamar:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
IBM Business Automation Workflow 20.0.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:20.0.0.2
|
20.0.0.2 | |
|
IBM InfoSphere Information Server 11.7
IBM / InfoSphere Information Server
|
cpe:/a:ibm:infosphere_information_server:11.7
|
11.7 | |
|
LANCOM LCOS SX 5.20 RU3
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_5.20_ru3
|
SX 5.20 RU3 | |
|
LANCOM LCOS LX 5.38 SU1
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.38_su1
|
LX 5.38 SU1 | |
|
LANCOM LCOS LX 6.10
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_6.10
|
LX 6.10 | |
|
LANCOM LCOS SX 4.20
LANCOM / LCOS
|
cpe:/o:lancom:lcos:sx_4.20
|
SX 4.20 | |
|
LANCOM LCOS LX 5.36 SU2
LANCOM / LCOS
|
cpe:/o:lancom:lcos:lx_5.36_su2
|
LX 5.36 SU2 | |
|
Red Hat Enterprise Linux
Red Hat / Enterprise Linux
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
FreeBSD Project FreeBSD OS
FreeBSD Project
|
cpe:/o:freebsd:freebsd:-
|
— | |
|
IBM MQ 9.1 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.1_lts
|
9.1 LTS | |
|
IBM MQ 9.2 LTS
IBM / MQ
|
cpe:/a:ibm:mq:9.2_lts
|
9.2 LTS | |
|
IBM Business Automation Workflow 21.0.2
IBM / Business Automation Workflow
|
cpe:/a:ibm:business_automation_workflow:21.0.2
|
21.0.2 | |
|
IBM QRadar SIEM <7.5.0 UP10 IF01
IBM / QRadar SIEM
|
<7.5.0 UP10 IF01 | ||
|
IBM QRadar SIEM <7.5.0 UP12
IBM / QRadar SIEM
|
<7.5.0 UP12 | ||
|
IBM Spectrum Protect <8.1.17.2
IBM / Spectrum Protect
|
<8.1.17.2 | ||
|
Siemens SIMATIC S7 1500
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500
|
1500 | |
|
IBM Spectrum Protect Plus <10.1.17
IBM / Spectrum Protect Plus
|
<10.1.17 | ||
|
Tenable Security Nessus 8.15.9
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:8.15.9
|
8.15.9 | |
|
Tenable Security Nessus 10.4.3
Tenable Security / Nessus
|
cpe:/a:tenable:nessus:10.4.3
|
10.4.3 | |
|
Hitachi Configuration Manager
Hitachi
|
cpe:/a:hitachi:configuration_manager:-
|
— | |
|
IBM DataPower Gateway <10.0.1.12
IBM / DataPower Gateway
|
<10.0.1.12 | ||
|
Red Hat OpenShift Container Platform <4.12.22
Red Hat / OpenShift
|
Container Platform <4.12.22 | ||
|
IBM DataPower Gateway <10.5.0.4
IBM / DataPower Gateway
|
<10.5.0.4 | ||
|
F5 BIG-IP
F5
|
cpe:/a:f5:big-ip:-
|
— | |
|
IBM Power Hardware Management Console v10
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:v10
|
v10 | |
|
IBM Rational ClearCase <9.0.2.8
IBM / Rational ClearCase
|
<9.0.2.8 | ||
|
IBM Spectrum Protect plus 10.1
IBM / Spectrum Protect
|
cpe:/a:ibm:spectrum_protect:plus_10.1
|
plus 10.1 | |
|
IBM Rational ClearCase <9.1.0.5
IBM / Rational ClearCase
|
<9.1.0.5 | ||
|
IBM Sterling Connect:Direct HP NonStop <3.6.0.6 iFix000
IBM / Sterling Connect:Direct
|
HP NonStop <3.6.0.6 iFix000 | ||
|
Dell NetWorker <19.12.0.2
Dell / NetWorker
|
<19.12.0.2 | ||
|
IBM Power Hardware Management Console DS8000
IBM / Power Hardware Management Console
|
cpe:/a:ibm:hardware_management_console:ds8000
|
DS8000 | |
|
Dell NetWorker <19.11.0.6
Dell / NetWorker
|
<19.11.0.6 | ||
|
Open Source CentOS
Open Source
|
cpe:/o:centos:centos:-
|
— | |
|
IBM AIX 7.3
IBM / AIX
|
cpe:/o:ibm:aix:7.3
|
7.3 | |
|
IBM MQ HPE NonStop 8.1.0
IBM / MQ
|
cpe:/a:ibm:mq:hpe_nonstop_8.1.0
|
HPE NonStop 8.1.0 |
{
"document": {
"aggregate_severity": {
"text": "mittel"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "OpenSSL ist eine im Quelltext frei verf\u00fcgbare Bibliothek, die Secure Sockets Layer (SSL) und Transport Layer Security (TLS) implementiert.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein entfernter, authentisierter oder anonymer Angreifer kann mehrere Schwachstellen in OpenSSL ausnutzen, um einen Denial of Service Angriff durchzuf\u00fchren, Informationen offenzulegen oder Chiffretext \u00fcber ein Netzwerk wiederherzustellen.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux\n- Sonstiges\n- UNIX\n- Windows",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2023-0304 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2023/wid-sec-w-2023-0304.json"
},
{
"category": "self",
"summary": "WID-SEC-2023-0304 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2023-0304"
},
{
"category": "external",
"summary": "OpenSSL Security Advisory vom 2023-02-07",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2-2023-1935 vom 2023-02-08",
"url": "https://alas.aws.amazon.com/AL2/ALAS-2023-1935.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS-2023-1683 vom 2023-02-08",
"url": "https://alas.aws.amazon.com/ALAS-2023-1683.html"
},
{
"category": "external",
"summary": "Aruba Product Security Advisory",
"url": "https://www.arubanetworks.com/assets/alert/ARUBA-PSA-2023-001.txt"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2-2023-1934 vom 2023-02-08",
"url": "https://alas.aws.amazon.com/AL2/ALAS-2023-1934.html"
},
{
"category": "external",
"summary": "NetApp Security Advisory NTAP-20230214-0011 vom 2023-02-14",
"url": "https://security.netapp.com/advisory/ntap-20230214-0011/"
},
{
"category": "external",
"summary": "FreeBSD Security Advisory FREEBSD-SA-23:03.OPENSSL vom 2023-02-16",
"url": "https://security.FreeBSD.org/advisories/FreeBSD-SA-23:03.openssl.asc"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-3325 vom 2023-02-20",
"url": "https://lists.debian.org/debian-lts-announce/2023/02/msg00019.html"
},
{
"category": "external",
"summary": "McAfee Security Bulletin SB10395 vom 2023-02-22",
"url": "https://kcm.trellix.com/corporate/index?page=content\u0026id=SB10395\u0026viewlocale=en_US\u0026platinum_status=false\u0026locale=en_US"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:0482-1 vom 2023-02-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-February/013880.html"
},
{
"category": "external",
"summary": "LANCOM Sicherheitshinweise",
"url": "https://www.lancom-systems.de/service-support/soforthilfe/allgemeine-sicherheitshinweise/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:0581-1 vom 2023-02-28",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-February/013933.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:0946 vom 2023-02-28",
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-0946 vom 2023-02-28",
"url": "http://linux.oracle.com/errata/ELSA-2023-0946.html"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6959033 vom 2023-03-01",
"url": "https://www.ibm.com/support/pages/node/6959033"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:0584-1 vom 2023-03-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-March/013952.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-12152 vom 2023-03-01",
"url": "https://linux.oracle.com/errata/ELSA-2023-12152.html"
},
{
"category": "external",
"summary": "SonicWall Product Notifications",
"url": "https://www.sonicwall.com/support/product-notification/sma-100-series-openssl-library-update-in-10-2-1-7/230228123000903/"
},
{
"category": "external",
"summary": "Tenable Security Advisory TNS-2023-09 vom 2023-03-02",
"url": "https://www.tenable.com/security/tns-2023-09"
},
{
"category": "external",
"summary": "Tenable Security Advisory TNS-2023-10 vom 2023-03-07",
"url": "https://www.tenable.com/security/tns-2023-10"
},
{
"category": "external",
"summary": "Tenable Security Advisory TNS-2023-11 vom 2023-03-07",
"url": "https://www.tenable.com/security/tns-2023-11"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6960563 vom 2023-03-07",
"url": "https://www.ibm.com/support/pages/node/6960563"
},
{
"category": "external",
"summary": "### vom 2023-03-07",
"url": "https://www.lancom-systems.de/service-support/allgemeine-sicherheitshinweise"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6960511 vom 2023-03-07",
"url": "https://www.ibm.com/support/pages/node/6960511"
},
{
"category": "external",
"summary": "Tenable Security Advisory TNS-2023-12 vom 2023-03-09",
"url": "https://www.tenable.com/security/tns-2023-12"
},
{
"category": "external",
"summary": "Tenable Security Advisory TNS-2023-13 vom 2023-03-09",
"url": "https://www.tenable.com/security/tns-2023-13"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:0684-1 vom 2023-03-09",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-March/014009.html"
},
{
"category": "external",
"summary": "Siemens Security Bulletin by Siemens ProductCERT",
"url": "https://cert-portal.siemens.com/productcert/html/ssb-439005.html"
},
{
"category": "external",
"summary": "Meinberg Security Advisory MBGSA-2023.02 vom 2023-03-14",
"url": "https://www.meinberg.de/german/news/meinberg-security-advisory-mbgsa-2023-02-meinberg-lantime-firmware-v7-06-012.htm"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:1199 vom 2023-03-14",
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6957718 vom 2023-03-16",
"url": "https://www.ibm.com/support/pages/node/6957718"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6963634 vom 2023-03-16",
"url": "https://www.cybersecurity-help.cz/vdb/SB2023031618"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6963784 vom 2023-03-20",
"url": "https://www.ibm.com/support/pages/node/6963784"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6963786 vom 2023-03-20",
"url": "https://www.cybersecurity-help.cz/vdb/SB2023032014"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:1335 vom 2023-03-20",
"url": "https://access.redhat.com/errata/RHSA-2023:1335"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-1335 vom 2023-03-20",
"url": "http://linux.oracle.com/errata/ELSA-2023-1335.html"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6964854 vom 2023-03-21",
"url": "https://aix.software.ibm.com/aix/efixes/security/openssl_advisory38.asc"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:1405 vom 2023-03-22",
"url": "https://access.redhat.com/errata/RHSA-2023:1405"
},
{
"category": "external",
"summary": "CentOS Security Advisory CESA-2023:1335 vom 2023-03-22",
"url": "https://lists.centos.org/pipermail/centos-announce/2023-March/086392.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-12205 vom 2023-03-22",
"url": "https://linux.oracle.com/errata/ELSA-2023-12205.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-1405 vom 2023-03-23",
"url": "http://linux.oracle.com/errata/ELSA-2023-1405.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-12213 vom 2023-03-28",
"url": "https://linux.oracle.com/errata/ELSA-2023-12213.html"
},
{
"category": "external",
"summary": "QNAP Security Advisory QSA-23-15 vom 2023-03-29",
"url": "https://www.qnap.com/de-de/security-advisory/QSA-23-15"
},
{
"category": "external",
"summary": "F5 K000132941 vom 2023-04-06",
"url": "https://my.f5.com/manage/s/article/K000132941"
},
{
"category": "external",
"summary": "F5 K000132943 vom 2023-04-06",
"url": "https://my.f5.com/manage/s/article/K000132943"
},
{
"category": "external",
"summary": "F5 K000132946 vom 2023-04-06",
"url": "https://my.f5.com/manage/s/article/K000132946"
},
{
"category": "external",
"summary": "Meinberg Security Advisory MBGSA-2023.02 vom 2023-03-23",
"url": "https://www.meinberg.de/german/news/meinberg-security-advisory-mbgsa-2023-02-lantime-firmware-v7-06-013.htm"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6986323 vom 2023-04-26",
"url": "https://www.ibm.com/support/pages/node/6986323"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:2022 vom 2023-04-26",
"url": "https://access.redhat.com/errata/RHSA-2023:2022"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6987461 vom 2023-05-01",
"url": "https://www.ibm.com/support/pages/node/6987461"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:2098 vom 2023-05-03",
"url": "https://access.redhat.com/errata/RHSA-2023:2098"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-12326 vom 2023-05-04",
"url": "https://linux.oracle.com/errata/ELSA-2023-12326.html"
},
{
"category": "external",
"summary": "Tenable Security Advisory TNS-2023-19 vom 2023-05-10",
"url": "https://www.tenable.com/security/tns-2023-19"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:2165 vom 2023-05-09",
"url": "https://access.redhat.com/errata/RHSA-2023:2165"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6985831 vom 2023-05-10",
"url": "https://www.ibm.com/support/pages/node/6985831"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:2932 vom 2023-05-16",
"url": "https://access.redhat.com/errata/RHSA-2023:2932"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6983555 vom 2023-05-17",
"url": "https://www.ibm.com/support/pages/node/6983555"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-2932 vom 2023-05-24",
"url": "https://linux.oracle.com/errata/ELSA-2023-2932.html"
},
{
"category": "external",
"summary": "Hitachi Cybersecurity Advisory vom 2023-04-25",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-23-143-02"
},
{
"category": "external",
"summary": "HP Security Bulletin",
"url": "https://support.hpe.com/hpesc/public/docDisplay?docId=hpesbnw04445en_us"
},
{
"category": "external",
"summary": "IBM Security Bulletin 6998707 vom 2023-05-26",
"url": "https://www.ibm.com/support/pages/node/6998707"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2023-134 vom 2023-05-26",
"url": "https://www.dell.com/support/kbdoc/de-de/000214129/dsa-2023-134-security-update-for-dell-poweredge-server-for-multiple-openssl-vulnerabilities"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:3408 vom 2023-06-01",
"url": "https://access.redhat.com/errata/RHSA-2023:3408"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:3354 vom 2023-06-05",
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:3355 vom 2023-06-05",
"url": "https://access.redhat.com/errata/RHSA-2023:3355"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:3420 vom 2023-06-05",
"url": "https://access.redhat.com/errata/RHSA-2023:3420"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:3421 vom 2023-06-05",
"url": "https://access.redhat.com/errata/RHSA-2023:3421"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:3455 vom 2023-06-06",
"url": "https://access.redhat.com/errata/RHSA-2023:3455"
},
{
"category": "external",
"summary": "XEROX Security Advisory XRX23-008 vom 2023-06-06",
"url": "https://security.business.xerox.com/wp-content/uploads/2023/06/Xerox-Security-Bulletin-XRX23-008-Xerox%C2%AE-FreeFlow%C2%AE-Print-Server-v7.pdf"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:0305-2 vom 2023-06-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-June/015094.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:3542 vom 2023-06-14",
"url": "https://access.redhat.com/errata/RHSA-2023:3542"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7005589 vom 2023-06-21",
"url": "https://www.ibm.com/support/pages/node/7005589"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:3612 vom 2023-06-23",
"url": "https://access.redhat.com/errata/RHSA-2023:3614"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:29171-1 vom 2023-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-June/015287.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:2623-1 vom 2023-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-June/015285.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:2622-1 vom 2023-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-June/015286.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:2624-1 vom 2023-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-June/015284.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:3615 vom 2023-06-22",
"url": "https://access.redhat.com/errata/RHSA-2023:3615"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:2648-1 vom 2023-06-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-June/015323.html"
},
{
"category": "external",
"summary": "Hitachi Energy CYBERSECURITY ADVISORY vom 2023-06-27",
"url": "https://library.e.abb.com/public/4fffbb03a11143c0b70e57acbd1c9f66/8DBD000157-VU-2023-004-OpenSSL_Relion_670_650_Rev1.pdf"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7007815 vom 2023-06-28",
"url": "https://www.ibm.com/support/pages/node/7007815"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7009735 vom 2023-07-05",
"url": "https://www.ibm.com/support/pages/node/7009735"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7010099 vom 2023-07-06",
"url": "https://www.ibm.com/support/pages/node/7010099"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7006449 vom 2023-07-07",
"url": "https://www.ibm.com/support/pages/node/7006449"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:4128 vom 2023-07-18",
"url": "https://access.redhat.com/errata/RHSA-2023:4128"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:4124 vom 2023-07-18",
"url": "https://access.redhat.com/errata/RHSA-2023:4124"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:4091 vom 2023-07-20",
"url": "https://access.redhat.com/errata/RHSA-2023:4091"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:4252 vom 2023-07-25",
"url": "https://access.redhat.com/errata/RHSA-2023:4252"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:3096-1 vom 2023-08-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-August/015724.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:3179-1 vom 2023-08-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-August/015773.html"
},
{
"category": "external",
"summary": "Siemens Security Advisory SSA-264815 vom 2023-08-08",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-264815.html"
},
{
"category": "external",
"summary": "Siemens Security Advisory SSA-264814 vom 2023-08-08",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-264814.html"
},
{
"category": "external",
"summary": "ORACLE OVMSA-2023-0013 vom 2023-08-17",
"url": "https://oss.oracle.com/pipermail/oraclevm-errata/2023-August/001082.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:4982 vom 2023-09-05",
"url": "https://access.redhat.com/errata/RHSA-2023:4982"
},
{
"category": "external",
"summary": "HPE Security Bulletin",
"url": "https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US\u0026docId=hpesbgn04530en_us"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2023:5209 vom 2023-09-19",
"url": "https://access.redhat.com/errata/RHSA-2023:5209"
},
{
"category": "external",
"summary": "Hitachi Vulnerability Information HITACHI-SEC-2023-135 vom 2023-09-26",
"url": "https://www.hitachi.com/products/it/software/security/info/vuls/hitachi-sec-2023-135/index.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALASOPENSSL-SNAPSAFE-2023-002 vom 2023-09-27",
"url": "https://alas.aws.amazon.com/AL2/ALASOPENSSL-SNAPSAFE-2023-002.html"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7035370 vom 2023-10-03",
"url": "https://www.ibm.com/support/pages/node/7035370"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7041682 vom 2023-10-04",
"url": "https://www.ibm.com/support/pages/node/7041682"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7063708 vom 2023-10-31",
"url": "https://www.ibm.com/support/pages/node/7063708"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-13027 vom 2023-12-07",
"url": "https://linux.oracle.com/errata/ELSA-2023-13027.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-13024 vom 2023-12-07",
"url": "https://linux.oracle.com/errata/ELSA-2023-13024.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-32790 vom 2023-12-07",
"url": "https://linux.oracle.com/errata/ELSA-2023-32790.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-13025 vom 2023-12-07",
"url": "https://linux.oracle.com/errata/ELSA-2023-13025.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-13026 vom 2023-12-07",
"url": "https://linux.oracle.com/errata/ELSA-2023-13026.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2023-32791 vom 2023-12-07",
"url": "https://linux.oracle.com/errata/ELSA-2023-32791.html"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2023-113 vom 2023-12-13",
"url": "https://www.dell.com/support/kbdoc/000211759/dsa-2023-="
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-6564-1 vom 2024-01-03",
"url": "https://ubuntu.com/security/notices/USN-6564-1"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7108821 vom 2024-01-17",
"url": "https://www.ibm.com/support/pages/node/7108821"
},
{
"category": "external",
"summary": "Dell Knowledge Base Article",
"url": "https://www.dell.com/support/kbdoc/en-us/000221474/dsa-2024-059-security-update-for-dell-networker-multiple-components-vulnerabilities"
},
{
"category": "external",
"summary": "Gentoo Linux Security Advisory GLSA-202402-08 vom 2024-02-04",
"url": "https://security.gentoo.org/glsa/202402-08"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:2633-1 vom 2024-02-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-February/018032.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:2634-1 vom 2024-02-27",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2024-February/018031.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS-2024-2502 vom 2024-03-19",
"url": "https://alas.aws.amazon.com/AL2/ALAS-2024-2502.html"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7145367 vom 2024-03-27",
"url": "https://www.ibm.com/support/pages/node/7145367"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-20865 vom 2024-04-25",
"url": "https://linux.oracle.com/errata/ELSA-2024-20865.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12343 vom 2024-04-25",
"url": "https://linux.oracle.com/errata/ELSA-2024-12343.html"
},
{
"category": "external",
"summary": "SolarWinds Platform 2024.2 release notes vom 2024-06-04",
"url": "https://documentation.solarwinds.com/en/success_center/orionplatform/content/release_notes/solarwinds_platform_2024-2_release_notes.htm"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12408 vom 2024-06-05",
"url": "https://linux.oracle.com/errata/ELSA-2024-12408.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-23120 vom 2024-06-04",
"url": "https://linux.oracle.com/errata/ELSA-2024-23120.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12409 vom 2024-06-04",
"url": "https://linux.oracle.com/errata/ELSA-2024-12409.html"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2023-207 vom 2024-06-13",
"url": "https://www.dell.com/support/kbdoc/de-de/000216897/dsa-2023-207-security-update-for-dell-poweredge-t40-mini-tower-server-openssl-vulnerabilities"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2024-250 vom 2024-06-27",
"url": "https://www.dell.com/support/kbdoc/de-de/000226426/dsa-2024-250-security-update-for-dell-avamar-dell-integrated-data-protection-appliance-idpa-security-update-for-multiple-vulnerabilities"
},
{
"category": "external",
"summary": "ICS Advisory vom 2024-07-23",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-205-02"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:5136 vom 2024-08-08",
"url": "https://access.redhat.com/errata/RHSA-2024:5136"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2024:6095 vom 2024-09-11",
"url": "https://access.redhat.com/errata/RHSA-2024:6095"
},
{
"category": "external",
"summary": "Hitachi Vulnerability Information HITACHI-SEC-2024-145 vom 2024-09-17",
"url": "https://www.hitachi.com/products/it/software/security/info/vuls/hitachi-sec-2024-145/index.html"
},
{
"category": "external",
"summary": "Moxa Security Advisory MPSA-230405 vom 2024-10-04",
"url": "https://www.moxa.com/en/support/product-support/security-advisory/mpsa-230405-tn-5900-series-affected-by-multiple-openssl-vulnerabilities"
},
{
"category": "external",
"summary": "IBM Security Bulletin",
"url": "https://www.ibm.com/support/pages/node/7174634"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2024-12842 vom 2024-11-25",
"url": "https://linux.oracle.com/errata/ELSA-2024-12842.html"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2025-064 vom 2025-01-30",
"url": "https://www.dell.com/support/kbdoc/de-de/000278811/dsa-2025-064-security-update-for-dell-networker-networker-virtual-edition-and-networker-management-console-multiple-component-vulnerabilities"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7229377 vom 2025-03-28",
"url": "https://www.ibm.com/support/pages/node/7229377"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7230557 vom 2025-04-10",
"url": "https://www.ibm.com/support/pages/node/7230557"
},
{
"category": "external",
"summary": "IBM Security Bulletin 7233394 vom 2025-05-14",
"url": "https://www.ibm.com/support/pages/node/7233394"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:7733 vom 2025-05-15",
"url": "https://access.redhat.com/errata/RHSA-2025:7733"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:7895 vom 2025-05-19",
"url": "https://access.redhat.com/errata/RHSA-2025:7895"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2025:7937 vom 2025-05-19",
"url": "https://access.redhat.com/errata/RHSA-2025:7937"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-7895 vom 2025-05-19",
"url": "https://linux.oracle.com/errata/ELSA-2025-7895.html"
},
{
"category": "external",
"summary": "HPE Security Advisory vom 2025-05-22",
"url": "https://support.hpe.com/hpesc/public/docDisplay?docId=hpesbns04859en_us\u0026docLocale=en_US"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2025-7937 vom 2025-05-22",
"url": "https://linux.oracle.com/errata/ELSA-2025-7937.html"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2025-234 vom 2025-07-01",
"url": "https://www.dell.com/support/kbdoc/000337969"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2025-269 vom 2025-07-01",
"url": "https://www.dell.com/support/kbdoc/de-de/000338743/dsa-2025-269-security-update-for-dell-networker-multiple-third-party-component-vulnerabilities"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2025-263 vom 2025-08-01",
"url": "https://www.dell.com/support/kbdoc/000337898"
},
{
"category": "external",
"summary": "SolarWinds Platform 2025.4 release notes vom 2025-10-21",
"url": "https://documentation.solarwinds.com/en/success_center/orionplatform/content/release_notes/solarwinds_platform_2025-4_release_notes.htm"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2025:15713-1 vom 2025-11-08",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/V7NUQ3GPXSJ6QCFNNBJQ5D3UZXUYCUBE/"
}
],
"source_lang": "en-US",
"title": "OpenSSL: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2025-11-09T23:00:00.000+00:00",
"generator": {
"date": "2025-11-10T10:38:17.846+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.4.0"
}
},
"id": "WID-SEC-W-2023-0304",
"initial_release_date": "2023-02-07T23:00:00.000+00:00",
"revision_history": [
{
"date": "2023-02-07T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2023-02-08T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Amazon und Aruba aufgenommen"
},
{
"date": "2023-02-09T23:00:00.000+00:00",
"number": "3",
"summary": "Referenz(en) aufgenommen: FEDORA-2023-A5564C0A3F, FEDORA-2023-57F33242BC"
},
{
"date": "2023-02-14T23:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von NetApp aufgenommen"
},
{
"date": "2023-02-16T23:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von FreeBSD aufgenommen"
},
{
"date": "2023-02-19T23:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2023-02-22T23:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von McAfee aufgenommen"
},
{
"date": "2023-02-23T23:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2023-02-27T23:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates aufgenommen"
},
{
"date": "2023-02-28T23:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von SUSE, Red Hat und Oracle Linux aufgenommen"
},
{
"date": "2023-03-01T23:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2023-03-02T23:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von Tenable aufgenommen"
},
{
"date": "2023-03-07T23:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates von Tenable, IBM und IBM-APAR aufgenommen"
},
{
"date": "2023-03-09T23:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von Tenable und SUSE aufgenommen"
},
{
"date": "2023-03-13T23:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von Siemens aufgenommen"
},
{
"date": "2023-03-14T23:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-03-15T23:00:00.000+00:00",
"number": "17",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-03-19T23:00:00.000+00:00",
"number": "18",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-03-20T23:00:00.000+00:00",
"number": "19",
"summary": "Neue Updates von Red Hat und Oracle Linux aufgenommen"
},
{
"date": "2023-03-21T23:00:00.000+00:00",
"number": "20",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-03-22T23:00:00.000+00:00",
"number": "21",
"summary": "Neue Updates von Red Hat, CentOS und Oracle Linux aufgenommen"
},
{
"date": "2023-03-28T22:00:00.000+00:00",
"number": "22",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2023-03-29T22:00:00.000+00:00",
"number": "23",
"summary": "Neue Updates von QNAP aufgenommen"
},
{
"date": "2023-04-10T22:00:00.000+00:00",
"number": "24",
"summary": "Neue Informationen von F5 aufgenommen"
},
{
"date": "2023-04-24T22:00:00.000+00:00",
"number": "25",
"summary": "Neue Updates aufgenommen"
},
{
"date": "2023-04-26T22:00:00.000+00:00",
"number": "26",
"summary": "Neue Updates von IBM und Red Hat aufgenommen"
},
{
"date": "2023-05-01T22:00:00.000+00:00",
"number": "27",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-05-03T22:00:00.000+00:00",
"number": "28",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-05-04T22:00:00.000+00:00",
"number": "29",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2023-05-09T22:00:00.000+00:00",
"number": "30",
"summary": "Neue Updates von Tenable und Red Hat aufgenommen"
},
{
"date": "2023-05-10T22:00:00.000+00:00",
"number": "31",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-05-16T22:00:00.000+00:00",
"number": "32",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-05-23T22:00:00.000+00:00",
"number": "33",
"summary": "Neue Updates von Oracle Linux und HP aufgenommen"
},
{
"date": "2023-05-25T22:00:00.000+00:00",
"number": "34",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-05-29T22:00:00.000+00:00",
"number": "35",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2023-05-31T22:00:00.000+00:00",
"number": "36",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-06-05T22:00:00.000+00:00",
"number": "37",
"summary": "Neue Updates von Red Hat und XEROX aufgenommen"
},
{
"date": "2023-06-06T22:00:00.000+00:00",
"number": "38",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2023-06-14T22:00:00.000+00:00",
"number": "39",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-06-20T22:00:00.000+00:00",
"number": "40",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-06-22T22:00:00.000+00:00",
"number": "41",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-06-25T22:00:00.000+00:00",
"number": "42",
"summary": "Neue Updates von SUSE und Red Hat aufgenommen"
},
{
"date": "2023-06-26T22:00:00.000+00:00",
"number": "43",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2023-06-27T22:00:00.000+00:00",
"number": "44",
"summary": "Neue Updates von HITACHI aufgenommen"
},
{
"date": "2023-06-28T22:00:00.000+00:00",
"number": "45",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-07-05T22:00:00.000+00:00",
"number": "46",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-07-06T22:00:00.000+00:00",
"number": "47",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-07-17T22:00:00.000+00:00",
"number": "48",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-07-20T22:00:00.000+00:00",
"number": "49",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-07-24T22:00:00.000+00:00",
"number": "50",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-08-01T22:00:00.000+00:00",
"number": "51",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2023-08-03T22:00:00.000+00:00",
"number": "52",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2023-08-07T22:00:00.000+00:00",
"number": "53",
"summary": "Neue Updates von Siemens aufgenommen"
},
{
"date": "2023-08-17T22:00:00.000+00:00",
"number": "54",
"summary": "Neue Updates von ORACLE aufgenommen"
},
{
"date": "2023-09-05T22:00:00.000+00:00",
"number": "55",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-09-17T22:00:00.000+00:00",
"number": "56",
"summary": "Neue Updates von HP aufgenommen"
},
{
"date": "2023-09-18T22:00:00.000+00:00",
"number": "57",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2023-09-25T22:00:00.000+00:00",
"number": "58",
"summary": "Neue Updates von HITACHI aufgenommen"
},
{
"date": "2023-09-27T22:00:00.000+00:00",
"number": "59",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2023-10-03T22:00:00.000+00:00",
"number": "60",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-10-31T23:00:00.000+00:00",
"number": "61",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2023-12-07T23:00:00.000+00:00",
"number": "62",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2023-12-12T23:00:00.000+00:00",
"number": "63",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2024-01-02T23:00:00.000+00:00",
"number": "64",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2024-01-17T23:00:00.000+00:00",
"number": "65",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2024-01-25T23:00:00.000+00:00",
"number": "66",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2024-02-04T23:00:00.000+00:00",
"number": "67",
"summary": "Neue Updates von Gentoo aufgenommen"
},
{
"date": "2024-02-27T23:00:00.000+00:00",
"number": "68",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2024-03-18T23:00:00.000+00:00",
"number": "69",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2024-03-27T23:00:00.000+00:00",
"number": "70",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2024-04-24T22:00:00.000+00:00",
"number": "71",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2024-06-03T22:00:00.000+00:00",
"number": "72",
"summary": "Neue Updates aufgenommen"
},
{
"date": "2024-06-04T22:00:00.000+00:00",
"number": "73",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2024-06-13T22:00:00.000+00:00",
"number": "74",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2024-06-26T22:00:00.000+00:00",
"number": "75",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2024-07-23T22:00:00.000+00:00",
"number": "76",
"summary": "Neue Updates aufgenommen"
},
{
"date": "2024-08-08T22:00:00.000+00:00",
"number": "77",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2024-09-11T22:00:00.000+00:00",
"number": "78",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2024-09-16T22:00:00.000+00:00",
"number": "79",
"summary": "Neue Updates von HITACHI aufgenommen"
},
{
"date": "2024-10-06T22:00:00.000+00:00",
"number": "80",
"summary": "Neue Updates von moxa aufgenommen"
},
{
"date": "2024-10-31T23:00:00.000+00:00",
"number": "81",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2024-11-25T23:00:00.000+00:00",
"number": "82",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-01-29T23:00:00.000+00:00",
"number": "83",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2025-03-27T23:00:00.000+00:00",
"number": "84",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2025-04-09T22:00:00.000+00:00",
"number": "85",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2025-05-14T22:00:00.000+00:00",
"number": "86",
"summary": "Neue Updates von IBM aufgenommen"
},
{
"date": "2025-05-15T22:00:00.000+00:00",
"number": "87",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-05-18T22:00:00.000+00:00",
"number": "88",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2025-05-19T22:00:00.000+00:00",
"number": "89",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2025-05-22T22:00:00.000+00:00",
"number": "90",
"summary": "Neue Updates von HP und Oracle Linux aufgenommen"
},
{
"date": "2025-06-30T22:00:00.000+00:00",
"number": "91",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2025-07-31T22:00:00.000+00:00",
"number": "92",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2025-10-20T22:00:00.000+00:00",
"number": "93",
"summary": "Neue Updates aufgenommen"
},
{
"date": "2025-11-09T23:00:00.000+00:00",
"number": "94",
"summary": "Neue Updates von openSUSE aufgenommen"
}
],
"status": "final",
"version": "94"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "670",
"product": {
"name": "ABB Relion 670",
"product_id": "T016943",
"product_identification_helper": {
"cpe": "cpe:/h:abb:relion:670"
}
}
},
{
"category": "product_version",
"name": "650",
"product": {
"name": "ABB Relion 650",
"product_id": "T016944",
"product_identification_helper": {
"cpe": "cpe:/h:abb:relion:650"
}
}
},
{
"category": "product_version",
"name": "SAM600-IO",
"product": {
"name": "ABB Relion SAM600-IO",
"product_id": "T016945",
"product_identification_helper": {
"cpe": "cpe:/h:abb:relion:sam600-io"
}
}
}
],
"category": "product_name",
"name": "Relion"
}
],
"category": "vendor",
"name": "ABB"
},
{
"branches": [
{
"category": "product_name",
"name": "Amazon Linux 2",
"product": {
"name": "Amazon Linux 2",
"product_id": "398363",
"product_identification_helper": {
"cpe": "cpe:/o:amazon:linux_2:-"
}
}
}
],
"category": "vendor",
"name": "Amazon"
},
{
"branches": [
{
"category": "product_name",
"name": "Aruba ArubaOS",
"product": {
"name": "Aruba ArubaOS",
"product_id": "T021926",
"product_identification_helper": {
"cpe": "cpe:/o:arubanetworks:arubaos:-"
}
}
},
{
"category": "product_name",
"name": "Aruba ClearPass Policy Manager",
"product": {
"name": "Aruba ClearPass Policy Manager",
"product_id": "T023403",
"product_identification_helper": {
"cpe": "cpe:/a:arubanetworks:clearpass_policy_manager:-"
}
}
},
{
"category": "product_name",
"name": "Aruba EdgeConnect",
"product": {
"name": "Aruba EdgeConnect",
"product_id": "T027755",
"product_identification_helper": {
"cpe": "cpe:/a:aruba:edgeconnect:-"
}
}
},
{
"category": "product_name",
"name": "Aruba Switch",
"product": {
"name": "Aruba Switch",
"product_id": "T016786",
"product_identification_helper": {
"cpe": "cpe:/h:arubanetworks:switch:-"
}
}
}
],
"category": "vendor",
"name": "Aruba"
},
{
"branches": [
{
"category": "product_name",
"name": "Debian Linux",
"product": {
"name": "Debian Linux",
"product_id": "2951",
"product_identification_helper": {
"cpe": "cpe:/o:debian:debian_linux:-"
}
}
}
],
"category": "vendor",
"name": "Debian"
},
{
"branches": [
{
"category": "product_name",
"name": "Dell Computer",
"product": {
"name": "Dell Computer",
"product_id": "T006498",
"product_identification_helper": {
"cpe": "cpe:/o:dell:dell_computer:-"
}
}
},
{
"branches": [
{
"category": "product_name",
"name": "Dell NetWorker",
"product": {
"name": "Dell NetWorker",
"product_id": "T024663",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:-"
}
}
},
{
"category": "product_version_range",
"name": "\u003c19.10",
"product": {
"name": "Dell NetWorker \u003c19.10",
"product_id": "T032354"
}
},
{
"category": "product_version",
"name": "19.1",
"product": {
"name": "Dell NetWorker 19.10",
"product_id": "T032354-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:19.10"
}
}
},
{
"category": "product_version_range",
"name": "\u003c19.13",
"product": {
"name": "Dell NetWorker \u003c19.13",
"product_id": "T044954"
}
},
{
"category": "product_version",
"name": "19.13",
"product": {
"name": "Dell NetWorker 19.13",
"product_id": "T044954-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:19.13"
}
}
},
{
"category": "product_version_range",
"name": "\u003c19.11.0.5",
"product": {
"name": "Dell NetWorker \u003c19.11.0.5",
"product_id": "T044959"
}
},
{
"category": "product_version",
"name": "19.11.0.5",
"product": {
"name": "Dell NetWorker 19.11.0.5",
"product_id": "T044959-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:19.11.0.5"
}
}
},
{
"category": "product_version_range",
"name": "\u003c19.12.0.2",
"product": {
"name": "Dell NetWorker \u003c19.12.0.2",
"product_id": "T045790"
}
},
{
"category": "product_version",
"name": "19.12.0.2",
"product": {
"name": "Dell NetWorker 19.12.0.2",
"product_id": "T045790-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:19.12.0.2"
}
}
},
{
"category": "product_version_range",
"name": "\u003c19.11.0.6",
"product": {
"name": "Dell NetWorker \u003c19.11.0.6",
"product_id": "T045791"
}
},
{
"category": "product_version",
"name": "19.11.0.6",
"product": {
"name": "Dell NetWorker 19.11.0.6",
"product_id": "T045791-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:19.11.0.6"
}
}
}
],
"category": "product_name",
"name": "NetWorker"
},
{
"branches": [
{
"category": "product_name",
"name": "Dell PowerEdge",
"product": {
"name": "Dell PowerEdge",
"product_id": "T019535",
"product_identification_helper": {
"cpe": "cpe:/h:dell:poweredge:-"
}
}
},
{
"category": "product_name",
"name": "Dell PowerEdge",
"product": {
"name": "Dell PowerEdge",
"product_id": "T033533",
"product_identification_helper": {
"cpe": "cpe:/h:dell:poweredge:-"
}
}
}
],
"category": "product_name",
"name": "PowerEdge"
}
],
"category": "vendor",
"name": "Dell"
},
{
"branches": [
{
"category": "product_name",
"name": "EMC Avamar",
"product": {
"name": "EMC Avamar",
"product_id": "T014381",
"product_identification_helper": {
"cpe": "cpe:/a:emc:avamar:-"
}
}
}
],
"category": "vendor",
"name": "EMC"
},
{
"branches": [
{
"category": "product_name",
"name": "F5 BIG-IP",
"product": {
"name": "F5 BIG-IP",
"product_id": "T001663",
"product_identification_helper": {
"cpe": "cpe:/a:f5:big-ip:-"
}
}
}
],
"category": "vendor",
"name": "F5"
},
{
"branches": [
{
"category": "product_name",
"name": "FreeBSD Project FreeBSD OS",
"product": {
"name": "FreeBSD Project FreeBSD OS",
"product_id": "4035",
"product_identification_helper": {
"cpe": "cpe:/o:freebsd:freebsd:-"
}
}
}
],
"category": "vendor",
"name": "FreeBSD Project"
},
{
"branches": [
{
"category": "product_name",
"name": "Gentoo Linux",
"product": {
"name": "Gentoo Linux",
"product_id": "T012167",
"product_identification_helper": {
"cpe": "cpe:/o:gentoo:linux:-"
}
}
}
],
"category": "vendor",
"name": "Gentoo"
},
{
"branches": [
{
"category": "product_name",
"name": "HPE NonStop Server",
"product": {
"name": "HPE NonStop Server",
"product_id": "4918",
"product_identification_helper": {
"cpe": "cpe:/h:hp:nonstop_server:-"
}
}
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cv8.5",
"product": {
"name": "HPE OneView \u003cv8.5",
"product_id": "T029950"
}
},
{
"category": "product_version",
"name": "v8.5",
"product": {
"name": "HPE OneView v8.5",
"product_id": "T029950-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:hp:oneview:v8.5"
}
}
},
{
"category": "product_version_range",
"name": "\u003cv6.60.05 LTS",
"product": {
"name": "HPE OneView \u003cv6.60.05 LTS",
"product_id": "T029951"
}
},
{
"category": "product_version",
"name": "v6.60.05 LTS",
"product": {
"name": "HPE OneView v6.60.05 LTS",
"product_id": "T029951-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:hp:oneview:v6.60.05_lts"
}
}
}
],
"category": "product_name",
"name": "OneView"
}
],
"category": "vendor",
"name": "HPE"
},
{
"branches": [
{
"category": "product_name",
"name": "Hitachi Command Suite",
"product": {
"name": "Hitachi Command Suite",
"product_id": "T010951",
"product_identification_helper": {
"cpe": "cpe:/a:hitachi:command_suite:-"
}
}
},
{
"category": "product_name",
"name": "Hitachi Configuration Manager",
"product": {
"name": "Hitachi Configuration Manager",
"product_id": "T020304",
"product_identification_helper": {
"cpe": "cpe:/a:hitachi:configuration_manager:-"
}
}
},
{
"category": "product_name",
"name": "Hitachi Ops Center",
"product": {
"name": "Hitachi Ops Center",
"product_id": "T017562",
"product_identification_helper": {
"cpe": "cpe:/a:hitachi:ops_center:-"
}
}
}
],
"category": "vendor",
"name": "Hitachi"
},
{
"branches": [
{
"category": "product_name",
"name": "Hitachi Energy AFS",
"product": {
"name": "Hitachi Energy AFS",
"product_id": "T016942",
"product_identification_helper": {
"cpe": "cpe:/h:abb:afs:-"
}
}
},
{
"category": "product_name",
"name": "Hitachi Energy RTU500",
"product": {
"name": "Hitachi Energy RTU500",
"product_id": "T027844",
"product_identification_helper": {
"cpe": "cpe:/h:abb:rtu500:-"
}
}
}
],
"category": "vendor",
"name": "Hitachi Energy"
},
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "7.1",
"product": {
"name": "IBM AIX 7.1",
"product_id": "153340",
"product_identification_helper": {
"cpe": "cpe:/o:ibm:aix:7.1"
}
}
},
{
"category": "product_version",
"name": "7.2",
"product": {
"name": "IBM AIX 7.2",
"product_id": "434967",
"product_identification_helper": {
"cpe": "cpe:/o:ibm:aix:7.2"
}
}
},
{
"category": "product_version",
"name": "7.3",
"product": {
"name": "IBM AIX 7.3",
"product_id": "T021486",
"product_identification_helper": {
"cpe": "cpe:/o:ibm:aix:7.3"
}
}
}
],
"category": "product_name",
"name": "AIX"
},
{
"branches": [
{
"category": "product_version",
"name": "21.0.2",
"product": {
"name": "IBM Business Automation Workflow 21.0.2",
"product_id": "1055431",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:21.0.2"
}
}
},
{
"category": "product_version",
"name": "21.0.3",
"product": {
"name": "IBM Business Automation Workflow 21.0.3",
"product_id": "1150328",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:21.0.3"
}
}
},
{
"category": "product_version",
"name": "22.0.1",
"product": {
"name": "IBM Business Automation Workflow 22.0.1",
"product_id": "1268578",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:22.0.1"
}
}
},
{
"category": "product_version",
"name": "18.0.0.0",
"product": {
"name": "IBM Business Automation Workflow 18.0.0.0",
"product_id": "389078",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:18.0.0.0"
}
}
},
{
"category": "product_version",
"name": "18.0.0.1",
"product": {
"name": "IBM Business Automation Workflow 18.0.0.1",
"product_id": "389079",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:18.0.0.1"
}
}
},
{
"category": "product_version",
"name": "18.0.0.2",
"product": {
"name": "IBM Business Automation Workflow 18.0.0.2",
"product_id": "428468",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:18.0.0.2"
}
}
},
{
"category": "product_version",
"name": "19.0.0.1",
"product": {
"name": "IBM Business Automation Workflow 19.0.0.1",
"product_id": "433292",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:19.0.0.1"
}
}
},
{
"category": "product_version",
"name": "19.0.0.2",
"product": {
"name": "IBM Business Automation Workflow 19.0.0.2",
"product_id": "672243",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:19.0.0.2"
}
}
},
{
"category": "product_version",
"name": "19.0.0.3",
"product": {
"name": "IBM Business Automation Workflow 19.0.0.3",
"product_id": "672244",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:19.0.0.3"
}
}
},
{
"category": "product_version",
"name": "20.0.0.1",
"product": {
"name": "IBM Business Automation Workflow 20.0.0.1",
"product_id": "867559",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:20.0.0.1"
}
}
},
{
"category": "product_version",
"name": "20.0.0.2",
"product": {
"name": "IBM Business Automation Workflow 20.0.0.2",
"product_id": "867560",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:20.0.0.2"
}
}
},
{
"category": "product_version",
"name": "21.0.3.1",
"product": {
"name": "IBM Business Automation Workflow 21.0.3.1",
"product_id": "T025512",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:21.0.3.1"
}
}
},
{
"category": "product_version",
"name": "22.0.2",
"product": {
"name": "IBM Business Automation Workflow 22.0.2",
"product_id": "T025770",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:business_automation_workflow:22.0.2"
}
}
}
],
"category": "product_name",
"name": "Business Automation Workflow"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c10.0.1.12",
"product": {
"name": "IBM DataPower Gateway \u003c10.0.1.12",
"product_id": "T026646"
}
},
{
"category": "product_version",
"name": "10.0.1.12",
"product": {
"name": "IBM DataPower Gateway 10.0.1.12",
"product_id": "T026646-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:datapower_gateway:10.0.1.12"
}
}
},
{
"category": "product_version_range",
"name": "\u003c10.5.0.4",
"product": {
"name": "IBM DataPower Gateway \u003c10.5.0.4",
"product_id": "T026647"
}
},
{
"category": "product_version",
"name": "10.5.0.4",
"product": {
"name": "IBM DataPower Gateway 10.5.0.4",
"product_id": "T026647-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:datapower_gateway:10.5.0.4"
}
}
},
{
"category": "product_version_range",
"name": "\u003c2018.4.1.26",
"product": {
"name": "IBM DataPower Gateway \u003c2018.4.1.26",
"product_id": "T027562"
}
},
{
"category": "product_version",
"name": "2018.4.1.26",
"product": {
"name": "IBM DataPower Gateway 2018.4.1.26",
"product_id": "T027562-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:datapower_gateway:2018.4.1.26"
}
}
},
{
"category": "product_version_range",
"name": "\u003c10.0.4.0sr3",
"product": {
"name": "IBM DataPower Gateway \u003c10.0.4.0sr3",
"product_id": "T027563"
}
},
{
"category": "product_version",
"name": "10.0.4.0sr3",
"product": {
"name": "IBM DataPower Gateway 10.0.4.0sr3",
"product_id": "T027563-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:datapower_gateway:10.0.4.0sr3"
}
}
},
{
"category": "product_version_range",
"name": "\u003c10.0.1.12",
"product": {
"name": "IBM DataPower Gateway \u003c10.0.1.12",
"product_id": "T027564"
}
},
{
"category": "product_version",
"name": "10.0.1.12",
"product": {
"name": "IBM DataPower Gateway 10.0.1.12",
"product_id": "T027564-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:datapower_gateway:10.0.1.12"
}
}
}
],
"category": "product_name",
"name": "DataPower Gateway"
},
{
"branches": [
{
"category": "product_version",
"name": "11.7",
"product": {
"name": "IBM InfoSphere Information Server 11.7",
"product_id": "444803",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:infosphere_information_server:11.7"
}
}
}
],
"category": "product_name",
"name": "InfoSphere Information Server"
},
{
"branches": [
{
"category": "product_version",
"name": "10.0.0.0-10.0.0.26",
"product": {
"name": "IBM Integration Bus 10.0.0.0-10.0.0.26",
"product_id": "T023793",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:integration_bus:10.0.0.0_-_10.0.0.26"
}
}
},
{
"category": "product_version",
"name": "10.1",
"product": {
"name": "IBM Integration Bus 10.1",
"product_id": "T026788",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:integration_bus:10.1"
}
}
}
],
"category": "product_name",
"name": "Integration Bus"
},
{
"branches": [
{
"category": "product_version",
"name": "9.1 LTS",
"product": {
"name": "IBM MQ 9.1 LTS",
"product_id": "T015789",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:mq:9.1_lts"
}
}
},
{
"category": "product_version",
"name": "8",
"product": {
"name": "IBM MQ 8.0",
"product_id": "T015791",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:mq:8.0"
}
}
},
{
"category": "product_version",
"name": "9.0 LTS",
"product": {
"name": "IBM MQ 9.0 LTS",
"product_id": "T015792",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:mq:9.0_lts"
}
}
},
{
"category": "product_version",
"name": "9.2 LTS",
"product": {
"name": "IBM MQ 9.2 LTS",
"product_id": "T018186",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:mq:9.2_lts"
}
}
},
{
"category": "product_name",
"name": "IBM MQ",
"product": {
"name": "IBM MQ",
"product_id": "T021398",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:mq:-"
}
}
},
{
"category": "product_version",
"name": "9.3 LTS",
"product": {
"name": "IBM MQ 9.3 LTS",
"product_id": "T024689",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:mq:9.3_lts"
}
}
},
{
"category": "product_version",
"name": "HPE NonStop 8.1.0",
"product": {
"name": "IBM MQ HPE NonStop 8.1.0",
"product_id": "T026652",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:mq:hpe_nonstop_8.1.0"
}
}
}
],
"category": "product_name",
"name": "MQ"
},
{
"branches": [
{
"category": "product_version",
"name": "v9",
"product": {
"name": "IBM Power Hardware Management Console v9",
"product_id": "T021107",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:hardware_management_console:v9"
}
}
},
{
"category": "product_version",
"name": "v10",
"product": {
"name": "IBM Power Hardware Management Console v10",
"product_id": "T023373",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:hardware_management_console:v10"
}
}
},
{
"category": "product_version",
"name": "DS8000",
"product": {
"name": "IBM Power Hardware Management Console DS8000",
"product_id": "T028436",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:hardware_management_console:ds8000"
}
}
}
],
"category": "product_name",
"name": "Power Hardware Management Console"
},
{
"branches": [
{
"category": "product_version",
"name": "7.5",
"product": {
"name": "IBM QRadar SIEM 7.5",
"product_id": "T022954",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:qradar_siem:7.5"
}
}
},
{
"category": "product_version_range",
"name": "\u003c7.5.0 UP8",
"product": {
"name": "IBM QRadar SIEM \u003c7.5.0 UP8",
"product_id": "T033681"
}
},
{
"category": "product_version",
"name": "7.5.0 UP8",
"product": {
"name": "IBM QRadar SIEM 7.5.0 UP8",
"product_id": "T033681-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:qradar_siem:7.5.0_up8"
}
}
},
{
"category": "product_version_range",
"name": "\u003c7.5.0 UP10 IF01",
"product": {
"name": "IBM QRadar SIEM \u003c7.5.0 UP10 IF01",
"product_id": "T038741"
}
},
{
"category": "product_version",
"name": "7.5.0 UP10 IF01",
"product": {
"name": "IBM QRadar SIEM 7.5.0 UP10 IF01",
"product_id": "T038741-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:qradar_siem:7.5.0_up10_if01"
}
}
},
{
"category": "product_version_range",
"name": "\u003c7.5.0 UP12",
"product": {
"name": "IBM QRadar SIEM \u003c7.5.0 UP12",
"product_id": "T043784"
}
},
{
"category": "product_version",
"name": "7.5.0 UP12",
"product": {
"name": "IBM QRadar SIEM 7.5.0 UP12",
"product_id": "T043784-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:qradar_siem:7.5.0_up12"
}
}
}
],
"category": "product_name",
"name": "QRadar SIEM"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c8.0.0.24",
"product": {
"name": "IBM Rational Build Forge \u003c8.0.0.24",
"product_id": "T030689"
}
},
{
"category": "product_version",
"name": "8.0.0.24",
"product": {
"name": "IBM Rational Build Forge 8.0.0.24",
"product_id": "T030689-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:rational_build_forge:8.0.0.24"
}
}
}
],
"category": "product_name",
"name": "Rational Build Forge"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c9.1.0.5",
"product": {
"name": "IBM Rational ClearCase \u003c9.1.0.5",
"product_id": "T030198"
}
},
{
"category": "product_version",
"name": "9.1.0.5",
"product": {
"name": "IBM Rational ClearCase 9.1.0.5",
"product_id": "T030198-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:rational_clearcase:9.1.0.5"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.0.2.8",
"product": {
"name": "IBM Rational ClearCase \u003c9.0.2.8",
"product_id": "T030199"
}
},
{
"category": "product_version",
"name": "9.0.2.8",
"product": {
"name": "IBM Rational ClearCase 9.0.2.8",
"product_id": "T030199-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:rational_clearcase:9.0.2.8"
}
}
}
],
"category": "product_name",
"name": "Rational ClearCase"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c10.0.3",
"product": {
"name": "IBM Rational ClearQuest \u003c10.0.3",
"product_id": "T030177"
}
},
{
"category": "product_version",
"name": "10.0.3",
"product": {
"name": "IBM Rational ClearQuest 10.0.3",
"product_id": "T030177-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:rational_clearquest:10.0.3"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.0.2.8",
"product": {
"name": "IBM Rational ClearQuest \u003c9.0.2.8",
"product_id": "T030204"
}
},
{
"category": "product_version",
"name": "9.0.2.8",
"product": {
"name": "IBM Rational ClearQuest 9.0.2.8",
"product_id": "T030204-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:rational_clearquest:9.0.2.8"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.1.0.5",
"product": {
"name": "IBM Rational ClearQuest \u003c9.1.0.5",
"product_id": "T030211"
}
},
{
"category": "product_version",
"name": "9.1.0.5",
"product": {
"name": "IBM Rational ClearQuest 9.1.0.5",
"product_id": "T030211-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:rational_clearquest:9.1.0.5"
}
}
}
],
"category": "product_name",
"name": "Rational ClearQuest"
},
{
"branches": [
{
"category": "product_version",
"name": "10.0.X",
"product": {
"name": "IBM Security Verify Access 10.0.X",
"product_id": "T026175",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:security_verify_access:10.0.x"
}
}
},
{
"category": "product_version",
"name": "10.0.0.0-10.0.6.1",
"product": {
"name": "IBM Security Verify Access 10.0.0.0-10.0.6.1",
"product_id": "T031895",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:security_verify_access:10.0.0.0_-_10.0.6.1"
}
}
}
],
"category": "product_name",
"name": "Security Verify Access"
},
{
"branches": [
{
"category": "product_version",
"name": "plus 10.1",
"product": {
"name": "IBM Spectrum Protect plus 10.1",
"product_id": "T015895",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:spectrum_protect:plus_10.1"
}
}
},
{
"category": "product_version",
"name": "10.1.14",
"product": {
"name": "IBM Spectrum Protect 10.1.14",
"product_id": "T026783",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:spectrum_protect:10.1.14"
}
}
},
{
"category": "product_version_range",
"name": "\u003c8.1.17.2",
"product": {
"name": "IBM Spectrum Protect \u003c8.1.17.2",
"product_id": "T026807"
}
},
{
"category": "product_version",
"name": "8.1.17.2",
"product": {
"name": "IBM Spectrum Protect 8.1.17.2",
"product_id": "T026807-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:spectrum_protect:8.1.17.2"
}
}
}
],
"category": "product_name",
"name": "Spectrum Protect"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c10.1.17",
"product": {
"name": "IBM Spectrum Protect Plus \u003c10.1.17",
"product_id": "T042730"
}
},
{
"category": "product_version",
"name": "10.1.17",
"product": {
"name": "IBM Spectrum Protect Plus 10.1.17",
"product_id": "T042730-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:spectrum_protect_plus:10.1.17"
}
}
}
],
"category": "product_name",
"name": "Spectrum Protect Plus"
},
{
"branches": [
{
"category": "product_version_range",
"name": "HP NonStop \u003c3.6.0.6 iFix000",
"product": {
"name": "IBM Sterling Connect:Direct HP NonStop \u003c3.6.0.6 iFix000",
"product_id": "T042203"
}
},
{
"category": "product_version",
"name": "HP NonStop 3.6.0.6 iFix000",
"product": {
"name": "IBM Sterling Connect:Direct HP NonStop 3.6.0.6 iFix000",
"product_id": "T042203-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:ibm:sterling_connect%3adirect:hp_nonstop__3.6.0.6_ifix000"
}
}
}
],
"category": "product_name",
"name": "Sterling Connect:Direct"
}
],
"category": "vendor",
"name": "IBM"
},
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "10.72 SU2",
"product": {
"name": "LANCOM LCOS 10.72 SU2",
"product_id": "T026546",
"product_identification_helper": {
"cpe": "cpe:/o:lancom:lcos:10.72_su2"
}
}
},
{
"category": "product_version",
"name": "10.50 RU10",
"product": {
"name": "LANCOM LCOS 10.50 RU10",
"product_id": "T026547",
"product_identification_helper": {
"cpe": "cpe:/o:lancom:lcos:10.50_ru10"
}
}
},
{
"category": "product_version",
"name": "10.42 SU10",
"product": {
"name": "LANCOM LCOS 10.42 SU10",
"product_id": "T026548",
"product_identification_helper": {
"cpe": "cpe:/o:lancom:lcos:10.42_su10"
}
}
},
{
"category": "product_version",
"name": "FX 10.11",
"product": {
"name": "LANCOM LCOS FX 10.11",
"product_id": "T026549",
"product_identification_helper": {
"cpe": "cpe:/o:lancom:lcos:fx_10.11"
}
}
},
{
"category": "product_version",
"name": "LX 6.10",
"product": {
"name": "LANCOM LCOS LX 6.10",
"product_id": "T026550",
"product_identification_helper": {
"cpe": "cpe:/o:lancom:lcos:lx_6.10"
}
}
},
{
"category": "product_version",
"name": "LX 5.38 SU1",
"product": {
"name": "LANCOM LCOS LX 5.38 SU1",
"product_id": "T026551",
"product_identification_helper": {
"cpe": "cpe:/o:lancom:lcos:lx_5.38_su1"
}
}
},
{
"category": "product_version",
"name": "LX 5.36 SU2",
"product": {
"name": "LANCOM LCOS LX 5.36 SU2",
"product_id": "T026552",
"product_identification_helper": {
"cpe": "cpe:/o:lancom:lcos:lx_5.36_su2"
}
}
},
{
"category": "product_version",
"name": "SX 4.20",
"product": {
"name": "LANCOM LCOS SX 4.20",
"product_id": "T026553",
"product_identification_helper": {
"cpe": "cpe:/o:lancom:lcos:sx_4.20"
}
}
},
{
"category": "product_version",
"name": "SX 5.20 RU3",
"product": {
"name": "LANCOM LCOS SX 5.20 RU3",
"product_id": "T026554",
"product_identification_helper": {
"cpe": "cpe:/o:lancom:lcos:sx_5.20_ru3"
}
}
}
],
"category": "product_name",
"name": "LCOS"
}
],
"category": "vendor",
"name": "LANCOM"
},
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "7.06.012",
"product": {
"name": "Meinberg LANTIME 7.06.012",
"product_id": "T026735",
"product_identification_helper": {
"cpe": "cpe:/h:meinberg:lantime:7.06.012"
}
}
},
{
"category": "product_version_range",
"name": "\u003c7.06.013",
"product": {
"name": "Meinberg LANTIME \u003c7.06.013",
"product_id": "T027496"
}
},
{
"category": "product_version",
"name": "7.06.013",
"product": {
"name": "Meinberg LANTIME 7.06.013",
"product_id": "T027496-fixed",
"product_identification_helper": {
"cpe": "cpe:/h:meinberg:lantime:7.06.013"
}
}
}
],
"category": "product_name",
"name": "LANTIME"
}
],
"category": "vendor",
"name": "Meinberg"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "TN-5900 \u003c4.0",
"product": {
"name": "Moxa Router TN-5900 \u003c4.0",
"product_id": "T038009"
}
},
{
"category": "product_version",
"name": "TN-5900 4.0",
"product": {
"name": "Moxa Router TN-5900 4.0",
"product_id": "T038009-fixed",
"product_identification_helper": {
"cpe": "cpe:/h:moxa:router:tn-5900__4.0"
}
}
}
],
"category": "product_name",
"name": "Router"
}
],
"category": "vendor",
"name": "Moxa"
},
{
"branches": [
{
"category": "product_name",
"name": "NetApp Data ONTAP",
"product": {
"name": "NetApp Data ONTAP",
"product_id": "7654",
"product_identification_helper": {
"cpe": "cpe:/a:netapp:data_ontap:-"
}
}
}
],
"category": "vendor",
"name": "NetApp"
},
{
"branches": [
{
"category": "product_name",
"name": "Open Source CentOS",
"product": {
"name": "Open Source CentOS",
"product_id": "1727",
"product_identification_helper": {
"cpe": "cpe:/o:centos:centos:-"
}
}
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c3.0.8",
"product": {
"name": "Open Source OpenSSL \u003c3.0.8",
"product_id": "T026178"
}
},
{
"category": "product_version",
"name": "3.0.8",
"product": {
"name": "Open Source OpenSSL 3.0.8",
"product_id": "T026178-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:3.0.8"
}
}
},
{
"category": "product_version_range",
"name": "\u003c1.1.1t",
"product": {
"name": "Open Source OpenSSL \u003c1.1.1t",
"product_id": "T026179"
}
},
{
"category": "product_version",
"name": "1.1.1t",
"product": {
"name": "Open Source OpenSSL 1.1.1t",
"product_id": "T026179-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:1.1.1t"
}
}
},
{
"category": "product_version_range",
"name": "\u003c1.0.2zg",
"product": {
"name": "Open Source OpenSSL \u003c1.0.2zg",
"product_id": "T026180"
}
},
{
"category": "product_version",
"name": "1.0.2zg",
"product": {
"name": "Open Source OpenSSL 1.0.2zg",
"product_id": "T026180-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:openssl:openssl:1.0.2zg"
}
}
}
],
"category": "product_name",
"name": "OpenSSL"
}
],
"category": "vendor",
"name": "Open Source"
},
{
"branches": [
{
"category": "product_name",
"name": "Oracle Linux",
"product": {
"name": "Oracle Linux",
"product_id": "T004914",
"product_identification_helper": {
"cpe": "cpe:/o:oracle:linux:-"
}
}
},
{
"branches": [
{
"category": "product_version",
"name": "3",
"product": {
"name": "Oracle VM 3",
"product_id": "T019617",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:vm:3"
}
}
}
],
"category": "product_name",
"name": "VM"
}
],
"category": "vendor",
"name": "Oracle"
},
{
"branches": [
{
"category": "product_name",
"name": "QNAP NAS",
"product": {
"name": "QNAP NAS",
"product_id": "T017100",
"product_identification_helper": {
"cpe": "cpe:/h:qnap:nas:-"
}
}
}
],
"category": "vendor",
"name": "QNAP"
},
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
},
{
"category": "product_version",
"name": "Multicluster Engine",
"product": {
"name": "Red Hat Enterprise Linux Multicluster Engine",
"product_id": "T027598",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:multicluster_engine"
}
}
}
],
"category": "product_name",
"name": "Enterprise Linux"
},
{
"branches": [
{
"category": "product_version_range",
"name": "Container Platform \u003c4.11.43",
"product": {
"name": "Red Hat OpenShift Container Platform \u003c4.11.43",
"product_id": "T028132"
}
},
{
"category": "product_version",
"name": "Container Platform 4.11.43",
"product": {
"name": "Red Hat OpenShift Container Platform 4.11.43",
"product_id": "T028132-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform__4.11.43"
}
}
},
{
"category": "product_version_range",
"name": "Container Platform \u003c4.13.4",
"product": {
"name": "Red Hat OpenShift Container Platform \u003c4.13.4",
"product_id": "T028225"
}
},
{
"category": "product_version",
"name": "Container Platform 4.13.4",
"product": {
"name": "Red Hat OpenShift Container Platform 4.13.4",
"product_id": "T028225-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform__4.13.4"
}
}
},
{
"category": "product_version_range",
"name": "Container Platform \u003c4.12.22",
"product": {
"name": "Red Hat OpenShift Container Platform \u003c4.12.22",
"product_id": "T028307"
}
},
{
"category": "product_version",
"name": "Container Platform 4.12.22",
"product": {
"name": "Red Hat OpenShift Container Platform 4.12.22",
"product_id": "T028307-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform__4.12.22"
}
}
}
],
"category": "product_name",
"name": "OpenShift"
}
],
"category": "vendor",
"name": "Red Hat"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux",
"product": {
"name": "SUSE Linux",
"product_id": "T002207",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse_linux:-"
}
}
},
{
"category": "product_name",
"name": "SUSE openSUSE",
"product": {
"name": "SUSE openSUSE",
"product_id": "T027843",
"product_identification_helper": {
"cpe": "cpe:/o:suse:opensuse:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
},
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "1500",
"product": {
"name": "Siemens SIMATIC S7 1500",
"product_id": "T019436",
"product_identification_helper": {
"cpe": "cpe:/h:siemens:simatic_s7:1500"
}
}
},
{
"category": "product_name",
"name": "Siemens SIMATIC S7",
"product": {
"name": "Siemens SIMATIC S7",
"product_id": "T020086",
"product_identification_helper": {
"cpe": "cpe:/h:siemens:simatic_s7:-"
}
}
}
],
"category": "product_name",
"name": "SIMATIC S7"
}
],
"category": "vendor",
"name": "Siemens"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c2024.2",
"product": {
"name": "SolarWinds Platform \u003c2024.2",
"product_id": "T035149"
}
},
{
"category": "product_version",
"name": "2024.2",
"product": {
"name": "SolarWinds Platform 2024.2",
"product_id": "T035149-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:solarwinds:orion_platform:2024.2"
}
}
},
{
"category": "product_version_range",
"name": "\u003c2025.4",
"product": {
"name": "SolarWinds Platform \u003c2025.4",
"product_id": "T047827"
}
},
{
"category": "product_version",
"name": "2025.4",
"product": {
"name": "SolarWinds Platform 2025.4",
"product_id": "T047827-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:solarwinds:orion_platform:2025.4"
}
}
}
],
"category": "product_name",
"name": "Platform"
}
],
"category": "vendor",
"name": "SolarWinds"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c10.2.1.7-49sv",
"product": {
"name": "SonicWall SMA \u003c10.2.1.7-49sv",
"product_id": "897623"
}
},
{
"category": "product_version",
"name": "10.2.1.7-49sv",
"product": {
"name": "SonicWall SMA 10.2.1.7-49sv",
"product_id": "897623-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:sonicwall:secure_mobile_access:-"
}
}
}
],
"category": "product_name",
"name": "SMA"
}
],
"category": "vendor",
"name": "SonicWall"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c10.5.0",
"product": {
"name": "Tenable Security Nessus \u003c10.5.0",
"product_id": "T026604"
}
},
{
"category": "product_version",
"name": "10.5.0",
"product": {
"name": "Tenable Security Nessus 10.5.0",
"product_id": "T026604-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:tenable:nessus:10.5.0"
}
}
},
{
"category": "product_version",
"name": "8.15.9",
"product": {
"name": "Tenable Security Nessus 8.15.9",
"product_id": "T026648",
"product_identification_helper": {
"cpe": "cpe:/a:tenable:nessus:8.15.9"
}
}
},
{
"category": "product_version",
"name": "10.4.3",
"product": {
"name": "Tenable Security Nessus 10.4.3",
"product_id": "T026649",
"product_identification_helper": {
"cpe": "cpe:/a:tenable:nessus:10.4.3"
}
}
},
{
"category": "product_version_range",
"name": "Agent \u003c10.3.2",
"product": {
"name": "Tenable Security Nessus Agent \u003c10.3.2",
"product_id": "T026696"
}
},
{
"category": "product_version",
"name": "Agent 10.3.2",
"product": {
"name": "Tenable Security Nessus Agent 10.3.2",
"product_id": "T026696-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:tenable:nessus:agent__10.3.2"
}
}
},
{
"category": "product_version_range",
"name": "Agent \u003c8.3.5",
"product": {
"name": "Tenable Security Nessus Agent \u003c8.3.5",
"product_id": "T026697"
}
},
{
"category": "product_version",
"name": "Agent 8.3.5",
"product": {
"name": "Tenable Security Nessus Agent 8.3.5",
"product_id": "T026697-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:tenable:nessus:agent__8.3.5"
}
}
}
],
"category": "product_name",
"name": "Nessus"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c6.2.1",
"product": {
"name": "Tenable Security Nessus Network Monitor \u003c6.2.1",
"product_id": "T027665"
}
},
{
"category": "product_version",
"name": "6.2.1",
"product": {
"name": "Tenable Security Nessus Network Monitor 6.2.1",
"product_id": "T027665-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:tenable:nessus_network_monitor:6.2.1"
}
}
}
],
"category": "product_name",
"name": "Nessus Network Monitor"
}
],
"category": "vendor",
"name": "Tenable Security"
},
{
"branches": [
{
"category": "product_name",
"name": "Ubuntu Linux",
"product": {
"name": "Ubuntu Linux",
"product_id": "T000126",
"product_identification_helper": {
"cpe": "cpe:/o:canonical:ubuntu_linux:-"
}
}
}
],
"category": "vendor",
"name": "Ubuntu"
},
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "v7",
"product": {
"name": "Xerox FreeFlow Print Server v7",
"product_id": "T015631",
"product_identification_helper": {
"cpe": "cpe:/a:xerox:freeflow_print_server:v7"
}
}
}
],
"category": "product_name",
"name": "FreeFlow Print Server"
}
],
"category": "vendor",
"name": "Xerox"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4203",
"product_status": {
"known_affected": [
"T031895",
"T030204",
"T026180",
"T010951",
"T030689",
"T019535",
"T024689",
"433292",
"398363",
"T025770",
"T020086",
"T028132",
"T030211",
"T030177",
"1268578",
"389079",
"T044959",
"T033681",
"T012167",
"389078",
"897623",
"T032354",
"T015792",
"T015791",
"T022954",
"2951",
"T021107",
"T023403",
"T027843",
"T027844",
"T027564",
"T027562",
"T027563",
"T033533",
"672243",
"672244",
"T026604",
"T047827",
"T044954",
"T024663",
"T025512",
"T021398",
"T028225",
"T029951",
"T027496",
"T029950",
"T026175",
"T016945",
"T016944",
"T016943",
"T016942",
"T016786",
"T017100",
"4918",
"T000126",
"T026735",
"T026697",
"T027665",
"T026696",
"T026179",
"T026178",
"T006498",
"T038009",
"T021926",
"T004914",
"T026548",
"T026547",
"T026549",
"T023793",
"T027755",
"T019617",
"T026788",
"T026546",
"T026783",
"T027598",
"153340",
"867559",
"T035149",
"434967",
"7654",
"428468",
"T015631",
"1150328",
"T017562",
"T014381",
"T002207",
"867560",
"444803",
"T026554",
"T026551",
"T026550",
"T026553",
"T026552",
"67646",
"4035",
"T015789",
"T018186",
"1055431",
"T038741",
"T043784",
"T026807",
"T019436",
"T042730",
"T026648",
"T026649",
"T020304",
"T026646",
"T028307",
"T026647",
"T001663",
"T023373",
"T030199",
"T015895",
"T030198",
"T042203",
"T045790",
"T028436",
"T045791",
"1727",
"T021486",
"T026652"
]
},
"release_date": "2023-02-07T23:00:00.000+00:00",
"title": "CVE-2022-4203"
},
{
"cve": "CVE-2022-4304",
"product_status": {
"known_affected": [
"T031895",
"T030204",
"T026180",
"T010951",
"T030689",
"T019535",
"T024689",
"433292",
"398363",
"T025770",
"T020086",
"T028132",
"T030211",
"T030177",
"1268578",
"389079",
"T044959",
"T033681",
"T012167",
"389078",
"897623",
"T032354",
"T015792",
"T015791",
"T022954",
"2951",
"T021107",
"T023403",
"T027843",
"T027844",
"T027564",
"T027562",
"T027563",
"T033533",
"672243",
"672244",
"T026604",
"T047827",
"T044954",
"T024663",
"T025512",
"T021398",
"T028225",
"T029951",
"T027496",
"T029950",
"T026175",
"T016945",
"T016944",
"T016943",
"T016942",
"T016786",
"T017100",
"4918",
"T000126",
"T026735",
"T026697",
"T027665",
"T026696",
"T026179",
"T026178",
"T006498",
"T038009",
"T021926",
"T004914",
"T026548",
"T026547",
"T026549",
"T023793",
"T027755",
"T019617",
"T026788",
"T026546",
"T026783",
"T027598",
"153340",
"867559",
"T035149",
"434967",
"7654",
"428468",
"T015631",
"1150328",
"T017562",
"T014381",
"T002207",
"867560",
"444803",
"T026554",
"T026551",
"T026550",
"T026553",
"T026552",
"67646",
"4035",
"T015789",
"T018186",
"1055431",
"T038741",
"T043784",
"T026807",
"T019436",
"T042730",
"T026648",
"T026649",
"T020304",
"T026646",
"T028307",
"T026647",
"T001663",
"T023373",
"T030199",
"T015895",
"T030198",
"T042203",
"T045790",
"T028436",
"T045791",
"1727",
"T021486",
"T026652"
]
},
"release_date": "2023-02-07T23:00:00.000+00:00",
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"product_status": {
"known_affected": [
"T031895",
"T030204",
"T026180",
"T010951",
"T030689",
"T019535",
"T024689",
"433292",
"398363",
"T025770",
"T020086",
"T028132",
"T030211",
"T030177",
"1268578",
"389079",
"T044959",
"T033681",
"T012167",
"389078",
"897623",
"T032354",
"T015792",
"T015791",
"T022954",
"2951",
"T021107",
"T023403",
"T027843",
"T027844",
"T027564",
"T027562",
"T027563",
"T033533",
"672243",
"672244",
"T026604",
"T047827",
"T044954",
"T024663",
"T025512",
"T021398",
"T028225",
"T029951",
"T027496",
"T029950",
"T026175",
"T016945",
"T016944",
"T016943",
"T016942",
"T016786",
"T017100",
"4918",
"T000126",
"T026735",
"T026697",
"T027665",
"T026696",
"T026179",
"T026178",
"T006498",
"T038009",
"T021926",
"T004914",
"T026548",
"T026547",
"T026549",
"T023793",
"T027755",
"T019617",
"T026788",
"T026546",
"T026783",
"T027598",
"153340",
"867559",
"T035149",
"434967",
"7654",
"428468",
"T015631",
"1150328",
"T017562",
"T014381",
"T002207",
"867560",
"444803",
"T026554",
"T026551",
"T026550",
"T026553",
"T026552",
"67646",
"4035",
"T015789",
"T018186",
"1055431",
"T038741",
"T043784",
"T026807",
"T019436",
"T042730",
"T026648",
"T026649",
"T020304",
"T026646",
"T028307",
"T026647",
"T001663",
"T023373",
"T030199",
"T015895",
"T030198",
"T042203",
"T045790",
"T028436",
"T045791",
"1727",
"T021486",
"T026652"
]
},
"release_date": "2023-02-07T23:00:00.000+00:00",
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2023-0215",
"product_status": {
"known_affected": [
"T031895",
"T030204",
"T026180",
"T010951",
"T030689",
"T019535",
"T024689",
"433292",
"398363",
"T025770",
"T020086",
"T028132",
"T030211",
"T030177",
"1268578",
"389079",
"T044959",
"T033681",
"T012167",
"389078",
"897623",
"T032354",
"T015792",
"T015791",
"T022954",
"2951",
"T021107",
"T023403",
"T027843",
"T027844",
"T027564",
"T027562",
"T027563",
"T033533",
"672243",
"672244",
"T026604",
"T047827",
"T044954",
"T024663",
"T025512",
"T021398",
"T028225",
"T029951",
"T027496",
"T029950",
"T026175",
"T016945",
"T016944",
"T016943",
"T016942",
"T016786",
"T017100",
"4918",
"T000126",
"T026735",
"T026697",
"T027665",
"T026696",
"T026179",
"T026178",
"T006498",
"T038009",
"T021926",
"T004914",
"T026548",
"T026547",
"T026549",
"T023793",
"T027755",
"T019617",
"T026788",
"T026546",
"T026783",
"T027598",
"153340",
"867559",
"T035149",
"434967",
"7654",
"428468",
"T015631",
"1150328",
"T017562",
"T014381",
"T002207",
"867560",
"444803",
"T026554",
"T026551",
"T026550",
"T026553",
"T026552",
"67646",
"4035",
"T015789",
"T018186",
"1055431",
"T038741",
"T043784",
"T026807",
"T019436",
"T042730",
"T026648",
"T026649",
"T020304",
"T026646",
"T028307",
"T026647",
"T001663",
"T023373",
"T030199",
"T015895",
"T030198",
"T042203",
"T045790",
"T028436",
"T045791",
"1727",
"T021486",
"T026652"
]
},
"release_date": "2023-02-07T23:00:00.000+00:00",
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0216",
"product_status": {
"known_affected": [
"T031895",
"T030204",
"T026180",
"T010951",
"T030689",
"T019535",
"T024689",
"433292",
"398363",
"T025770",
"T020086",
"T028132",
"T030211",
"T030177",
"1268578",
"389079",
"T044959",
"T033681",
"T012167",
"389078",
"897623",
"T032354",
"T015792",
"T015791",
"T022954",
"2951",
"T021107",
"T023403",
"T027843",
"T027844",
"T027564",
"T027562",
"T027563",
"T033533",
"672243",
"672244",
"T026604",
"T047827",
"T044954",
"T024663",
"T025512",
"T021398",
"T028225",
"T029951",
"T027496",
"T029950",
"T026175",
"T016945",
"T016944",
"T016943",
"T016942",
"T016786",
"T017100",
"4918",
"T000126",
"T026735",
"T026697",
"T027665",
"T026696",
"T026179",
"T026178",
"T006498",
"T038009",
"T021926",
"T004914",
"T026548",
"T026547",
"T026549",
"T023793",
"T027755",
"T019617",
"T026788",
"T026546",
"T026783",
"T027598",
"153340",
"867559",
"T035149",
"434967",
"7654",
"428468",
"T015631",
"1150328",
"T017562",
"T014381",
"T002207",
"867560",
"444803",
"T026554",
"T026551",
"T026550",
"T026553",
"T026552",
"67646",
"4035",
"T015789",
"T018186",
"1055431",
"T038741",
"T043784",
"T026807",
"T019436",
"T042730",
"T026648",
"T026649",
"T020304",
"T026646",
"T028307",
"T026647",
"T001663",
"T023373",
"T030199",
"T015895",
"T030198",
"T042203",
"T045790",
"T028436",
"T045791",
"1727",
"T021486",
"T026652"
]
},
"release_date": "2023-02-07T23:00:00.000+00:00",
"title": "CVE-2023-0216"
},
{
"cve": "CVE-2023-0217",
"product_status": {
"known_affected": [
"T031895",
"T030204",
"T026180",
"T010951",
"T030689",
"T019535",
"T024689",
"433292",
"398363",
"T025770",
"T020086",
"T028132",
"T030211",
"T030177",
"1268578",
"389079",
"T044959",
"T033681",
"T012167",
"389078",
"897623",
"T032354",
"T015792",
"T015791",
"T022954",
"2951",
"T021107",
"T023403",
"T027843",
"T027844",
"T027564",
"T027562",
"T027563",
"T033533",
"672243",
"672244",
"T026604",
"T047827",
"T044954",
"T024663",
"T025512",
"T021398",
"T028225",
"T029951",
"T027496",
"T029950",
"T026175",
"T016945",
"T016944",
"T016943",
"T016942",
"T016786",
"T017100",
"4918",
"T000126",
"T026735",
"T026697",
"T027665",
"T026696",
"T026179",
"T026178",
"T006498",
"T038009",
"T021926",
"T004914",
"T026548",
"T026547",
"T026549",
"T023793",
"T027755",
"T019617",
"T026788",
"T026546",
"T026783",
"T027598",
"153340",
"867559",
"T035149",
"434967",
"7654",
"428468",
"T015631",
"1150328",
"T017562",
"T014381",
"T002207",
"867560",
"444803",
"T026554",
"T026551",
"T026550",
"T026553",
"T026552",
"67646",
"4035",
"T015789",
"T018186",
"1055431",
"T038741",
"T043784",
"T026807",
"T019436",
"T042730",
"T026648",
"T026649",
"T020304",
"T026646",
"T028307",
"T026647",
"T001663",
"T023373",
"T030199",
"T015895",
"T030198",
"T042203",
"T045790",
"T028436",
"T045791",
"1727",
"T021486",
"T026652"
]
},
"release_date": "2023-02-07T23:00:00.000+00:00",
"title": "CVE-2023-0217"
},
{
"cve": "CVE-2023-0286",
"product_status": {
"known_affected": [
"T031895",
"T030204",
"T026180",
"T010951",
"T030689",
"T019535",
"T024689",
"433292",
"398363",
"T025770",
"T020086",
"T028132",
"T030211",
"T030177",
"1268578",
"389079",
"T044959",
"T033681",
"T012167",
"389078",
"897623",
"T032354",
"T015792",
"T015791",
"T022954",
"2951",
"T021107",
"T023403",
"T027843",
"T027844",
"T027564",
"T027562",
"T027563",
"T033533",
"672243",
"672244",
"T026604",
"T047827",
"T044954",
"T024663",
"T025512",
"T021398",
"T028225",
"T029951",
"T027496",
"T029950",
"T026175",
"T016945",
"T016944",
"T016943",
"T016942",
"T016786",
"T017100",
"4918",
"T000126",
"T026735",
"T026697",
"T027665",
"T026696",
"T026179",
"T026178",
"T006498",
"T038009",
"T021926",
"T004914",
"T026548",
"T026547",
"T026549",
"T023793",
"T027755",
"T019617",
"T026788",
"T026546",
"T026783",
"T027598",
"153340",
"867559",
"T035149",
"434967",
"7654",
"428468",
"T015631",
"1150328",
"T017562",
"T014381",
"T002207",
"867560",
"444803",
"T026554",
"T026551",
"T026550",
"T026553",
"T026552",
"67646",
"4035",
"T015789",
"T018186",
"1055431",
"T038741",
"T043784",
"T026807",
"T019436",
"T042730",
"T026648",
"T026649",
"T020304",
"T026646",
"T028307",
"T026647",
"T001663",
"T023373",
"T030199",
"T015895",
"T030198",
"T042203",
"T045790",
"T028436",
"T045791",
"1727",
"T021486",
"T026652"
]
},
"release_date": "2023-02-07T23:00:00.000+00:00",
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0401",
"product_status": {
"known_affected": [
"T031895",
"T030204",
"T026180",
"T010951",
"T030689",
"T019535",
"T024689",
"433292",
"398363",
"T025770",
"T020086",
"T028132",
"T030211",
"T030177",
"1268578",
"389079",
"T044959",
"T033681",
"T012167",
"389078",
"897623",
"T032354",
"T015792",
"T015791",
"T022954",
"2951",
"T021107",
"T023403",
"T027843",
"T027844",
"T027564",
"T027562",
"T027563",
"T033533",
"672243",
"672244",
"T026604",
"T047827",
"T044954",
"T024663",
"T025512",
"T021398",
"T028225",
"T029951",
"T027496",
"T029950",
"T026175",
"T016945",
"T016944",
"T016943",
"T016942",
"T016786",
"T017100",
"4918",
"T000126",
"T026735",
"T026697",
"T027665",
"T026696",
"T026179",
"T026178",
"T006498",
"T038009",
"T021926",
"T004914",
"T026548",
"T026547",
"T026549",
"T023793",
"T027755",
"T019617",
"T026788",
"T026546",
"T026783",
"T027598",
"153340",
"867559",
"T035149",
"434967",
"7654",
"428468",
"T015631",
"1150328",
"T017562",
"T014381",
"T002207",
"867560",
"444803",
"T026554",
"T026551",
"T026550",
"T026553",
"T026552",
"67646",
"4035",
"T015789",
"T018186",
"1055431",
"T038741",
"T043784",
"T026807",
"T019436",
"T042730",
"T026648",
"T026649",
"T020304",
"T026646",
"T028307",
"T026647",
"T001663",
"T023373",
"T030199",
"T015895",
"T030198",
"T042203",
"T045790",
"T028436",
"T045791",
"1727",
"T021486",
"T026652"
]
},
"release_date": "2023-02-07T23:00:00.000+00:00",
"title": "CVE-2023-0401"
}
]
}
WID-SEC-W-2023-1424
Vulnerability from csaf_certbund - Published: 2023-06-12 22:00 - Updated: 2025-10-06 22:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Xerox FreeFlow Print Server v9 for Solaris
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:v9_for_solaris
|
v9 for Solaris | |
|
Xerox FreeFlow Print Server 9
Xerox / FreeFlow Print Server
|
cpe:/a:xerox:freeflow_print_server:9
|
9 |
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "FreeFlow-Druckserver ist eine Druckserveranwendung f\u00fcr Xerox-Produktionsdrucker, die Flexibilit\u00e4t, umfangreiche Workflow-Optionen und eine Farbverwaltung bietet.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein Angreifer kann mehrere Schwachstellen in Xerox FreeFlow Print Server ausnutzen, um die Vertraulichkeit, Verf\u00fcgbarkeit und Integrit\u00e4t des Systems zu gef\u00e4hrden.",
"title": "Angriff"
},
{
"category": "general",
"text": "- UNIX",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2023-1424 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2023/wid-sec-w-2023-1424.json"
},
{
"category": "self",
"summary": "WID-SEC-2023-1424 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2023-1424"
},
{
"category": "external",
"summary": "Xerox Security Bulletin vom 2023-06-12",
"url": "https://securitydocs.business.xerox.com/wp-content/uploads/2023/06/Xerox-Security-Bulletin-XRX23-009-Xerox%C2%AE-FreeFlow%C2%AE-Print-Server-v9.pdf"
},
{
"category": "external",
"summary": "XEROX Security Advisory XRX25-017 vom 2025-10-07",
"url": "https://security.business.xerox.com/wp-content/uploads/2025/10/Xerox-Security-Bulletin-XRX25-017-for-Xerox-FreeFlow-Print-Server-v9.pdf"
}
],
"source_lang": "en-US",
"title": "Xerox FreeFlow Print Server f\u00fcr Solaris: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2025-10-06T22:00:00.000+00:00",
"generator": {
"date": "2025-10-07T08:04:36.463+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.4.0"
}
},
"id": "WID-SEC-W-2023-1424",
"initial_release_date": "2023-06-12T22:00:00.000+00:00",
"revision_history": [
{
"date": "2023-06-12T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2025-10-06T22:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von XEROX aufgenommen"
}
],
"status": "final",
"version": "2"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "9",
"product": {
"name": "Xerox FreeFlow Print Server 9",
"product_id": "T002977",
"product_identification_helper": {
"cpe": "cpe:/a:xerox:freeflow_print_server:9"
}
}
},
{
"category": "product_version",
"name": "v9 for Solaris",
"product": {
"name": "Xerox FreeFlow Print Server v9 for Solaris",
"product_id": "T028053",
"product_identification_helper": {
"cpe": "cpe:/a:xerox:freeflow_print_server:v9_for_solaris"
}
}
}
],
"category": "product_name",
"name": "FreeFlow Print Server"
}
],
"category": "vendor",
"name": "Xerox"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2006-20001",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2006-20001"
},
{
"cve": "CVE-2017-12613",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2017-12613"
},
{
"cve": "CVE-2018-25032",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2018-25032"
},
{
"cve": "CVE-2021-29338",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-29338"
},
{
"cve": "CVE-2021-30860",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-30860"
},
{
"cve": "CVE-2021-35940",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-35940"
},
{
"cve": "CVE-2021-37519",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-37519"
},
{
"cve": "CVE-2021-37750",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-37750"
},
{
"cve": "CVE-2022-0718",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-0718"
},
{
"cve": "CVE-2022-1122",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1122"
},
{
"cve": "CVE-2022-1292",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1292"
},
{
"cve": "CVE-2022-1705",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1705"
},
{
"cve": "CVE-2022-1962",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1962"
},
{
"cve": "CVE-2022-21291",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-21291"
},
{
"cve": "CVE-2022-21349",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-21349"
},
{
"cve": "CVE-2022-21515",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-21515"
},
{
"cve": "CVE-2022-2309",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2309"
},
{
"cve": "CVE-2022-23521",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-23521"
},
{
"cve": "CVE-2022-24675",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-24675"
},
{
"cve": "CVE-2022-24963",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-24963"
},
{
"cve": "CVE-2022-25147",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-25147"
},
{
"cve": "CVE-2022-25255",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-25255"
},
{
"cve": "CVE-2022-27337",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-27337"
},
{
"cve": "CVE-2022-27536",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-27536"
},
{
"cve": "CVE-2022-27664",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-27664"
},
{
"cve": "CVE-2022-27778",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-27778"
},
{
"cve": "CVE-2022-28131",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-28131"
},
{
"cve": "CVE-2022-2816",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2816"
},
{
"cve": "CVE-2022-2817",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2817"
},
{
"cve": "CVE-2022-2819",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2819"
},
{
"cve": "CVE-2022-28327",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-28327"
},
{
"cve": "CVE-2022-28331",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-28331"
},
{
"cve": "CVE-2022-2845",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2845"
},
{
"cve": "CVE-2022-2849",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2849"
},
{
"cve": "CVE-2022-2862",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2862"
},
{
"cve": "CVE-2022-2874",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2874"
},
{
"cve": "CVE-2022-2879",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2879"
},
{
"cve": "CVE-2022-2880",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2880"
},
{
"cve": "CVE-2022-2889",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2889"
},
{
"cve": "CVE-2022-2923",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2923"
},
{
"cve": "CVE-2022-2928",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2928"
},
{
"cve": "CVE-2022-2929",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2929"
},
{
"cve": "CVE-2022-2946",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2946"
},
{
"cve": "CVE-2022-29526",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-29526"
},
{
"cve": "CVE-2022-2980",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2980"
},
{
"cve": "CVE-2022-29804",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-29804"
},
{
"cve": "CVE-2022-3016",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3016"
},
{
"cve": "CVE-2022-3037",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3037"
},
{
"cve": "CVE-2022-30580",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-30580"
},
{
"cve": "CVE-2022-30629",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-30629"
},
{
"cve": "CVE-2022-30630",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-30630"
},
{
"cve": "CVE-2022-30631",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-30631"
},
{
"cve": "CVE-2022-30632",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-30632"
},
{
"cve": "CVE-2022-30633",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-30633"
},
{
"cve": "CVE-2022-30634",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-30634"
},
{
"cve": "CVE-2022-30635",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-30635"
},
{
"cve": "CVE-2022-3094",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3094"
},
{
"cve": "CVE-2022-3099",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3099"
},
{
"cve": "CVE-2022-3134",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3134"
},
{
"cve": "CVE-2022-3153",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3153"
},
{
"cve": "CVE-2022-32148",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32148"
},
{
"cve": "CVE-2022-32189",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32189"
},
{
"cve": "CVE-2022-32190",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32190"
},
{
"cve": "CVE-2022-32205",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32205"
},
{
"cve": "CVE-2022-32206",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32206"
},
{
"cve": "CVE-2022-32207",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32207"
},
{
"cve": "CVE-2022-32208",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32208"
},
{
"cve": "CVE-2022-32221",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32221"
},
{
"cve": "CVE-2022-3234",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3234"
},
{
"cve": "CVE-2022-3235",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3235"
},
{
"cve": "CVE-2022-3256",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3256"
},
{
"cve": "CVE-2022-3278",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3278"
},
{
"cve": "CVE-2022-3296",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3296"
},
{
"cve": "CVE-2022-3297",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3297"
},
{
"cve": "CVE-2022-3324",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3324"
},
{
"cve": "CVE-2022-3352",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3352"
},
{
"cve": "CVE-2022-3515",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3515"
},
{
"cve": "CVE-2022-35252",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-35252"
},
{
"cve": "CVE-2022-35260",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-35260"
},
{
"cve": "CVE-2022-36113",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-36113"
},
{
"cve": "CVE-2022-36114",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-36114"
},
{
"cve": "CVE-2022-36227",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-36227"
},
{
"cve": "CVE-2022-36760",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-36760"
},
{
"cve": "CVE-2022-3705",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3705"
},
{
"cve": "CVE-2022-3736",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3736"
},
{
"cve": "CVE-2022-37436",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-37436"
},
{
"cve": "CVE-2022-38171",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-38171"
},
{
"cve": "CVE-2022-38784",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-38784"
},
{
"cve": "CVE-2022-3924",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3924"
},
{
"cve": "CVE-2022-39253",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-39253"
},
{
"cve": "CVE-2022-40303",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-40303"
},
{
"cve": "CVE-2022-40304",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-40304"
},
{
"cve": "CVE-2022-40898",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-40898"
},
{
"cve": "CVE-2022-41715",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-41715"
},
{
"cve": "CVE-2022-41716",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-41716"
},
{
"cve": "CVE-2022-41903",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-41903"
},
{
"cve": "CVE-2022-42010",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42010"
},
{
"cve": "CVE-2022-42011",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42011"
},
{
"cve": "CVE-2022-42012",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42012"
},
{
"cve": "CVE-2022-4203",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4203"
},
{
"cve": "CVE-2022-4283",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4283"
},
{
"cve": "CVE-2022-42898",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42898"
},
{
"cve": "CVE-2022-42915",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42915"
},
{
"cve": "CVE-2022-42916",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42916"
},
{
"cve": "CVE-2022-42919",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42919"
},
{
"cve": "CVE-2022-4304",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4345",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4345"
},
{
"cve": "CVE-2022-4450",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-45143",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-45143"
},
{
"cve": "CVE-2022-45199",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-45199"
},
{
"cve": "CVE-2022-45939",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-45939"
},
{
"cve": "CVE-2022-46340",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-46340"
},
{
"cve": "CVE-2022-46341",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-46341"
},
{
"cve": "CVE-2022-46342",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-46342"
},
{
"cve": "CVE-2022-46343",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-46343"
},
{
"cve": "CVE-2022-46344",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-46344"
},
{
"cve": "CVE-2022-46871",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-46871"
},
{
"cve": "CVE-2022-46874",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-46874"
},
{
"cve": "CVE-2022-46877",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-46877"
},
{
"cve": "CVE-2022-48281",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-48281"
},
{
"cve": "CVE-2023-0215",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0216",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0216"
},
{
"cve": "CVE-2023-0217",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0217"
},
{
"cve": "CVE-2023-0286",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0401",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0401"
},
{
"cve": "CVE-2023-0411",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0411"
},
{
"cve": "CVE-2023-0412",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0412"
},
{
"cve": "CVE-2023-0413",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0413"
},
{
"cve": "CVE-2023-0414",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0414"
},
{
"cve": "CVE-2023-0415",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0415"
},
{
"cve": "CVE-2023-0416",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0416"
},
{
"cve": "CVE-2023-0417",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0417"
},
{
"cve": "CVE-2023-0430",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0430"
},
{
"cve": "CVE-2023-0567",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0567"
},
{
"cve": "CVE-2023-0568",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0568"
},
{
"cve": "CVE-2023-0616",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0616"
},
{
"cve": "CVE-2023-0662",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0662"
},
{
"cve": "CVE-2023-0767",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0767"
},
{
"cve": "CVE-2023-0795",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0795"
},
{
"cve": "CVE-2023-0796",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0796"
},
{
"cve": "CVE-2023-0797",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0797"
},
{
"cve": "CVE-2023-0798",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0798"
},
{
"cve": "CVE-2023-0799",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0799"
},
{
"cve": "CVE-2023-0800",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0800"
},
{
"cve": "CVE-2023-0801",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0801"
},
{
"cve": "CVE-2023-0802",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0802"
},
{
"cve": "CVE-2023-0803",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0803"
},
{
"cve": "CVE-2023-0804",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0804"
},
{
"cve": "CVE-2023-21830",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-21830"
},
{
"cve": "CVE-2023-21840",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-21840"
},
{
"cve": "CVE-2023-21843",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-21843"
},
{
"cve": "CVE-2023-21896",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-21896"
},
{
"cve": "CVE-2023-21928",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-21928"
},
{
"cve": "CVE-2023-21984",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-21984"
},
{
"cve": "CVE-2023-21985",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-21985"
},
{
"cve": "CVE-2023-22003",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-22003"
},
{
"cve": "CVE-2023-22490",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-22490"
},
{
"cve": "CVE-2023-22809",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-22809"
},
{
"cve": "CVE-2023-23598",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23598"
},
{
"cve": "CVE-2023-23599",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23599"
},
{
"cve": "CVE-2023-23601",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23601"
},
{
"cve": "CVE-2023-23602",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23602"
},
{
"cve": "CVE-2023-23603",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23603"
},
{
"cve": "CVE-2023-23605",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23605"
},
{
"cve": "CVE-2023-23918",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23918"
},
{
"cve": "CVE-2023-23919",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23919"
},
{
"cve": "CVE-2023-23920",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23920"
},
{
"cve": "CVE-2023-23936",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23936"
},
{
"cve": "CVE-2023-23946",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23946"
},
{
"cve": "CVE-2023-23969",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23969"
},
{
"cve": "CVE-2023-24580",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-24580"
},
{
"cve": "CVE-2023-24807",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-24807"
},
{
"cve": "CVE-2023-24998",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-24998"
},
{
"cve": "CVE-2023-25690",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25690"
},
{
"cve": "CVE-2023-25728",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25728"
},
{
"cve": "CVE-2023-25729",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25729"
},
{
"cve": "CVE-2023-25730",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25730"
},
{
"cve": "CVE-2023-25732",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25732"
},
{
"cve": "CVE-2023-25734",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25734"
},
{
"cve": "CVE-2023-25735",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25735"
},
{
"cve": "CVE-2023-25737",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25737"
},
{
"cve": "CVE-2023-25738",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25738"
},
{
"cve": "CVE-2023-25739",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25739"
},
{
"cve": "CVE-2023-25742",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25742"
},
{
"cve": "CVE-2023-25743",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25743"
},
{
"cve": "CVE-2023-25744",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25744"
},
{
"cve": "CVE-2023-25746",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25746"
},
{
"cve": "CVE-2023-25751",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25751"
},
{
"cve": "CVE-2023-25752",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-25752"
},
{
"cve": "CVE-2023-27522",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-27522"
},
{
"cve": "CVE-2023-28162",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-28162"
},
{
"cve": "CVE-2023-28163",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-28163"
},
{
"cve": "CVE-2023-28164",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-28164"
},
{
"cve": "CVE-2023-28176",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-28176"
},
{
"cve": "CVE-2023-28708",
"product_status": {
"known_affected": [
"T028053",
"T002977"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-28708"
}
]
}
WID-SEC-W-2023-1432
Vulnerability from csaf_certbund - Published: 2023-06-12 22:00 - Updated: 2023-06-22 22:00In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzulässigen Einschränkungen, Pufferüberläufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuführen, Sicherheitsmaßnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuführen, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erhöhte Privilegien.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
Siemens SIMATIC S7 1500 TM MFP
Siemens
|
cpe:/h:siemens:simatic_s7:1500_tm_mfp
|
— |
{
"document": {
"aggregate_severity": {
"text": "kritisch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Die SIMATIC S7 ist eine Serie von SPS (Speicherprogrammierbare Steuerungen) f\u00fcr Automatisierungsanwendungen.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein Angreifer aus dem angrenzenden Netzwerk oder ein entfernter, anonymer, authentisierter, physischer oder lokaler Angreifer kann mehrere Schwachstellen in Siemens SIMATIC S7 ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- BIOS/Firmware",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2023-1432 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2023/wid-sec-w-2023-1432.json"
},
{
"category": "self",
"summary": "WID-SEC-2023-1432 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2023-1432"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-6187-1 vom 2023-06-22",
"url": "https://ubuntu.com/security/notices/USN-6187-1"
},
{
"category": "external",
"summary": "Siemens Security Advisory vom 2023-06-12",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-831302.html"
},
{
"category": "external",
"summary": "Siemens Security Advisory vom 2023-06-12",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-794697.html"
}
],
"source_lang": "en-US",
"title": "Siemens SIMATIC S7: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2023-06-22T22:00:00.000+00:00",
"generator": {
"date": "2024-08-15T17:52:18.956+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.3.5"
}
},
"id": "WID-SEC-W-2023-1432",
"initial_release_date": "2023-06-12T22:00:00.000+00:00",
"revision_history": [
{
"date": "2023-06-12T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2023-06-22T22:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Ubuntu aufgenommen"
}
],
"status": "final",
"version": "2"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Siemens SIMATIC S7 1500 TM MFP",
"product": {
"name": "Siemens SIMATIC S7 1500 TM MFP",
"product_id": "T028071",
"product_identification_helper": {
"cpe": "cpe:/h:siemens:simatic_s7:1500_tm_mfp"
}
}
}
],
"category": "vendor",
"name": "Siemens"
},
{
"branches": [
{
"category": "product_name",
"name": "Ubuntu Linux",
"product": {
"name": "Ubuntu Linux",
"product_id": "T000126",
"product_identification_helper": {
"cpe": "cpe:/o:canonical:ubuntu_linux:-"
}
}
}
],
"category": "vendor",
"name": "Ubuntu"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-26607",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-26607"
},
{
"cve": "CVE-2023-23559",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23559"
},
{
"cve": "CVE-2023-23455",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23455"
},
{
"cve": "CVE-2023-23454",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-23454"
},
{
"cve": "CVE-2023-1095",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-1095"
},
{
"cve": "CVE-2023-1077",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-1077"
},
{
"cve": "CVE-2023-1073",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-1073"
},
{
"cve": "CVE-2023-0590",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0590"
},
{
"cve": "CVE-2023-0466",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0466"
},
{
"cve": "CVE-2023-0465",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0465"
},
{
"cve": "CVE-2023-0464",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0464"
},
{
"cve": "CVE-2023-0394",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0394"
},
{
"cve": "CVE-2023-0286",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0215",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0179",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2023-0179"
},
{
"cve": "CVE-2022-47946",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-47946"
},
{
"cve": "CVE-2022-47929",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-47929"
},
{
"cve": "CVE-2022-47520",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-47520"
},
{
"cve": "CVE-2022-47518",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-47518"
},
{
"cve": "CVE-2022-4662",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4662"
},
{
"cve": "CVE-2022-4450",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-4378",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4378"
},
{
"cve": "CVE-2022-43750",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-43750"
},
{
"cve": "CVE-2022-4304",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-42896",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42896"
},
{
"cve": "CVE-2022-42895",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42895"
},
{
"cve": "CVE-2022-42722",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42722"
},
{
"cve": "CVE-2022-42721",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42721"
},
{
"cve": "CVE-2022-42720",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42720"
},
{
"cve": "CVE-2022-42719",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42719"
},
{
"cve": "CVE-2022-42703",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42703"
},
{
"cve": "CVE-2022-42432",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42432"
},
{
"cve": "CVE-2022-42329",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42329"
},
{
"cve": "CVE-2022-42328",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-42328"
},
{
"cve": "CVE-2022-41850",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-41850"
},
{
"cve": "CVE-2022-41849",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-41849"
},
{
"cve": "CVE-2022-41674",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-41674"
},
{
"cve": "CVE-2022-4139",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4139"
},
{
"cve": "CVE-2022-4129",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4129"
},
{
"cve": "CVE-2022-41222",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-41222"
},
{
"cve": "CVE-2022-41218",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-41218"
},
{
"cve": "CVE-2022-4095",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-4095"
},
{
"cve": "CVE-2022-40768",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-40768"
},
{
"cve": "CVE-2022-40307",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-40307"
},
{
"cve": "CVE-2022-39190",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-39190"
},
{
"cve": "CVE-2022-39188",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-39188"
},
{
"cve": "CVE-2022-36946",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-36946"
},
{
"cve": "CVE-2022-36879",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-36879"
},
{
"cve": "CVE-2022-3649",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3649"
},
{
"cve": "CVE-2022-3646",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3646"
},
{
"cve": "CVE-2022-3635",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3635"
},
{
"cve": "CVE-2022-3633",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3633"
},
{
"cve": "CVE-2022-3629",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3629"
},
{
"cve": "CVE-2022-36280",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-36280"
},
{
"cve": "CVE-2022-3628",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3628"
},
{
"cve": "CVE-2022-3625",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3625"
},
{
"cve": "CVE-2022-3621",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3621"
},
{
"cve": "CVE-2022-36123",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-36123"
},
{
"cve": "CVE-2022-3606",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3606"
},
{
"cve": "CVE-2022-3594",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3594"
},
{
"cve": "CVE-2022-3586",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3586"
},
{
"cve": "CVE-2022-3565",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3565"
},
{
"cve": "CVE-2022-3564",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3564"
},
{
"cve": "CVE-2022-3545",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3545"
},
{
"cve": "CVE-2022-3534",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3534"
},
{
"cve": "CVE-2022-3524",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3524"
},
{
"cve": "CVE-2022-3521",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3521"
},
{
"cve": "CVE-2022-34918",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-34918"
},
{
"cve": "CVE-2022-3435",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3435"
},
{
"cve": "CVE-2022-3303",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3303"
},
{
"cve": "CVE-2022-32296",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32296"
},
{
"cve": "CVE-2022-32250",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-32250"
},
{
"cve": "CVE-2022-3169",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3169"
},
{
"cve": "CVE-2022-3115",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3115"
},
{
"cve": "CVE-2022-3104",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3104"
},
{
"cve": "CVE-2022-3028",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-3028"
},
{
"cve": "CVE-2022-30065",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-30065"
},
{
"cve": "CVE-2022-2978",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2978"
},
{
"cve": "CVE-2022-2959",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2959"
},
{
"cve": "CVE-2022-2905",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2905"
},
{
"cve": "CVE-2022-28391",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-28391"
},
{
"cve": "CVE-2022-2663",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2663"
},
{
"cve": "CVE-2022-26373",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-26373"
},
{
"cve": "CVE-2022-2602",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2602"
},
{
"cve": "CVE-2022-2588",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2588"
},
{
"cve": "CVE-2022-2586",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2586"
},
{
"cve": "CVE-2022-2585",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2585"
},
{
"cve": "CVE-2022-2503",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2503"
},
{
"cve": "CVE-2022-2327",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2327"
},
{
"cve": "CVE-2022-23219",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-23219"
},
{
"cve": "CVE-2022-23218",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-23218"
},
{
"cve": "CVE-2022-2274",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2274"
},
{
"cve": "CVE-2022-2153",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2153"
},
{
"cve": "CVE-2022-21505",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-21505"
},
{
"cve": "CVE-2022-21233",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-21233"
},
{
"cve": "CVE-2022-21166",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-21166"
},
{
"cve": "CVE-2022-21125",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-21125"
},
{
"cve": "CVE-2022-21123",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-21123"
},
{
"cve": "CVE-2022-2097",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2097"
},
{
"cve": "CVE-2022-2078",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2078"
},
{
"cve": "CVE-2022-2068",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-2068"
},
{
"cve": "CVE-2022-20572",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-20572"
},
{
"cve": "CVE-2022-20566",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-20566"
},
{
"cve": "CVE-2022-20422",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-20422"
},
{
"cve": "CVE-2022-20421",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-20421"
},
{
"cve": "CVE-2022-1882",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1882"
},
{
"cve": "CVE-2022-1852",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1852"
},
{
"cve": "CVE-2022-1679",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1679"
},
{
"cve": "CVE-2022-1473",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1473"
},
{
"cve": "CVE-2022-1462",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1462"
},
{
"cve": "CVE-2022-1434",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1434"
},
{
"cve": "CVE-2022-1343",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1343"
},
{
"cve": "CVE-2022-1292",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1292"
},
{
"cve": "CVE-2022-1184",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1184"
},
{
"cve": "CVE-2022-1012",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-1012"
},
{
"cve": "CVE-2022-0171",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2022-0171"
},
{
"cve": "CVE-2021-42386",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42386"
},
{
"cve": "CVE-2021-42385",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42385"
},
{
"cve": "CVE-2021-42384",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42384"
},
{
"cve": "CVE-2021-42383",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42383"
},
{
"cve": "CVE-2021-42382",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42382"
},
{
"cve": "CVE-2021-42381",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42381"
},
{
"cve": "CVE-2021-42380",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42380"
},
{
"cve": "CVE-2021-42379",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42379"
},
{
"cve": "CVE-2021-42378",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42378"
},
{
"cve": "CVE-2021-42377",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42377"
},
{
"cve": "CVE-2021-42376",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42376"
},
{
"cve": "CVE-2021-42375",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42375"
},
{
"cve": "CVE-2021-42374",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42374"
},
{
"cve": "CVE-2021-42373",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-42373"
},
{
"cve": "CVE-2021-4037",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-4037"
},
{
"cve": "CVE-2021-3999",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-3999"
},
{
"cve": "CVE-2021-3998",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-3998"
},
{
"cve": "CVE-2021-38604",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-38604"
},
{
"cve": "CVE-2021-3759",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-3759"
},
{
"cve": "CVE-2021-35942",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-35942"
},
{
"cve": "CVE-2021-33655",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-33655"
},
{
"cve": "CVE-2021-33574",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-33574"
},
{
"cve": "CVE-2021-3326",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-3326"
},
{
"cve": "CVE-2021-28831",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-28831"
},
{
"cve": "CVE-2021-27645",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-27645"
},
{
"cve": "CVE-2021-20269",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2021-20269"
},
{
"cve": "CVE-2020-29562",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2020-29562"
},
{
"cve": "CVE-2020-27618",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2020-27618"
},
{
"cve": "CVE-2020-1752",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2020-1752"
},
{
"cve": "CVE-2020-10029",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2020-10029"
},
{
"cve": "CVE-2019-25013",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2019-25013"
},
{
"cve": "CVE-2018-13405",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2018-13405"
},
{
"cve": "CVE-2016-10228",
"notes": [
{
"category": "description",
"text": "In Siemens SIMATIC S7 existieren mehrere Schwachstellen. Die Fehler bestehen unter anderem aufgrund von unzul\u00e4ssigen Einschr\u00e4nkungen, Puffer\u00fcberl\u00e4ufen, fehlenden Freigaben und use-after-free-Problemen. Ein Angreifer kann diese Schwachstellen ausnutzen, um beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, vertrauliche Informationen offenzulegen, einen Denial-of-Service-Zustand herbeizuf\u00fchren, seine Privilegien zu erweitern und Daten zu manipulieren. Die erfolgreiche Ausnutzung einiger dieser Schwachstellen erfordert eine Benutzerinteraktion oder erh\u00f6hte Privilegien."
}
],
"product_status": {
"known_affected": [
"T000126",
"T028071"
]
},
"release_date": "2023-06-12T22:00:00.000+00:00",
"title": "CVE-2016-10228"
}
]
}
WID-SEC-W-2023-1812
Vulnerability from csaf_certbund - Published: 2023-07-18 22:00 - Updated: 2023-07-20 22:00In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Communications 23.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.2.0
|
— | |
|
Oracle Communications 6.2.0
Oracle / Communications
|
cpe:/a:oracle:communications:6.2.0
|
— | |
|
Oracle Communications 22.4.3
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.3
|
— | |
|
Oracle Communications 23.1.2
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.2
|
— | |
|
Oracle Communications 22.4.1
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.1
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Oracle Communications 22.3.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.3.2
|
— | |
|
Oracle Communications 5.0
Oracle / Communications
|
cpe:/a:oracle:communications:5.0
|
— | |
|
Oracle Communications 23.1.1
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.1
|
— | |
|
Oracle Communications 23.1.0
Oracle / Communications
|
cpe:/a:oracle:communications:23.1.0
|
— | |
|
Oracle Communications 8.6.0.0
Oracle / Communications
|
cpe:/a:oracle:communications:8.6.0.0
|
— | |
|
Oracle Communications 22.4.0
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.0
|
— | |
|
Oracle Communications 22.4.2
Oracle / Communications
|
cpe:/a:oracle:communications:22.4.2
|
— | |
|
Oracle Communications 5.1
Oracle / Communications
|
cpe:/a:oracle:communications:5.1
|
— | |
|
Oracle Communications 9.1.1.5.0
Oracle / Communications
|
cpe:/a:oracle:communications:9.1.1.5.0
|
— |
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Oracle Communications umfasst branchenspezifische L\u00f6sungen f\u00fcr die Telekommunikationsbranche.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein entfernter, anonymer oder authentisierter Angreifer kann mehrere Schwachstellen in Oracle Communications ausnutzen, um die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit zu gef\u00e4hrden.",
"title": "Angriff"
},
{
"category": "general",
"text": "- UNIX\n- Linux\n- Windows",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2023-1812 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2023/wid-sec-w-2023-1812.json"
},
{
"category": "self",
"summary": "WID-SEC-2023-1812 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2023-1812"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2023:2263-2 vom 2023-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2023-July/015545.html"
},
{
"category": "external",
"summary": "Oracle Critical Patch Update Advisory - July 2023 - Appendix Oracle Communications vom 2023-07-18",
"url": "https://www.oracle.com/security-alerts/cpujul2023.html#AppendixCGBU"
}
],
"source_lang": "en-US",
"title": "Oracle Communications: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2023-07-20T22:00:00.000+00:00",
"generator": {
"date": "2024-08-15T17:55:52.927+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.3.5"
}
},
"id": "WID-SEC-W-2023-1812",
"initial_release_date": "2023-07-18T22:00:00.000+00:00",
"revision_history": [
{
"date": "2023-07-18T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2023-07-20T22:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von SUSE aufgenommen"
}
],
"status": "final",
"version": "2"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Oracle Communications 5.0",
"product": {
"name": "Oracle Communications 5.0",
"product_id": "T021645",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:5.0"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 8.6.0.0",
"product": {
"name": "Oracle Communications 8.6.0.0",
"product_id": "T024970",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:8.6.0.0"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 22.4.0",
"product": {
"name": "Oracle Communications 22.4.0",
"product_id": "T024981",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:22.4.0"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 22.3.2",
"product": {
"name": "Oracle Communications 22.3.2",
"product_id": "T025865",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:22.3.2"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 22.4.1",
"product": {
"name": "Oracle Communications 22.4.1",
"product_id": "T025869",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:22.4.1"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 23.1.0",
"product": {
"name": "Oracle Communications 23.1.0",
"product_id": "T027326",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:23.1.0"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 22.4.2",
"product": {
"name": "Oracle Communications 22.4.2",
"product_id": "T027327",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:22.4.2"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 23.1.1",
"product": {
"name": "Oracle Communications 23.1.1",
"product_id": "T027329",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:23.1.1"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 22.4.3",
"product": {
"name": "Oracle Communications 22.4.3",
"product_id": "T028680",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:22.4.3"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 23.1.2",
"product": {
"name": "Oracle Communications 23.1.2",
"product_id": "T028681",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:23.1.2"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 23.2.0",
"product": {
"name": "Oracle Communications 23.2.0",
"product_id": "T028682",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:23.2.0"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 6.2.0",
"product": {
"name": "Oracle Communications 6.2.0",
"product_id": "T028683",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:6.2.0"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 5.1",
"product": {
"name": "Oracle Communications 5.1",
"product_id": "T028684",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:5.1"
}
}
},
{
"category": "product_name",
"name": "Oracle Communications 9.1.1.5.0",
"product": {
"name": "Oracle Communications 9.1.1.5.0",
"product_id": "T028685",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:communications:9.1.1.5.0"
}
}
}
],
"category": "product_name",
"name": "Communications"
}
],
"category": "vendor",
"name": "Oracle"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux",
"product": {
"name": "SUSE Linux",
"product_id": "T002207",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse_linux:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-30861",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-30861"
},
{
"cve": "CVE-2023-29007",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-29007"
},
{
"cve": "CVE-2023-28856",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-28856"
},
{
"cve": "CVE-2023-28708",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-28708"
},
{
"cve": "CVE-2023-28484",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-28484"
},
{
"cve": "CVE-2023-27901",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-27901"
},
{
"cve": "CVE-2023-26049",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-26049"
},
{
"cve": "CVE-2023-25194",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-25194"
},
{
"cve": "CVE-2023-24998",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-24998"
},
{
"cve": "CVE-2023-23931",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-23931"
},
{
"cve": "CVE-2023-22809",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-22809"
},
{
"cve": "CVE-2023-21971",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-21971"
},
{
"cve": "CVE-2023-20873",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-20873"
},
{
"cve": "CVE-2023-20863",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-20863"
},
{
"cve": "CVE-2023-20862",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-20862"
},
{
"cve": "CVE-2023-20861",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-20861"
},
{
"cve": "CVE-2023-1999",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-1999"
},
{
"cve": "CVE-2023-1436",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-1436"
},
{
"cve": "CVE-2023-1370",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-1370"
},
{
"cve": "CVE-2023-0767",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-0767"
},
{
"cve": "CVE-2023-0361",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-0361"
},
{
"cve": "CVE-2023-0286",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0215",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2022-45787",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-45787"
},
{
"cve": "CVE-2022-45688",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-45688"
},
{
"cve": "CVE-2022-45061",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-45061"
},
{
"cve": "CVE-2022-4450",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-42898",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-42898"
},
{
"cve": "CVE-2022-41881",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-41881"
},
{
"cve": "CVE-2022-37434",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-37434"
},
{
"cve": "CVE-2022-36944",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-36944"
},
{
"cve": "CVE-2022-2963",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-2963"
},
{
"cve": "CVE-2022-25147",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-25147"
},
{
"cve": "CVE-2022-1471",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2022-1471"
},
{
"cve": "CVE-2021-40528",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2021-40528"
},
{
"cve": "CVE-2021-25220",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2021-25220"
},
{
"cve": "CVE-2020-10735",
"notes": [
{
"category": "description",
"text": "In Oracle Communications existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T028682",
"T028683",
"T028680",
"T028681",
"T025869",
"T002207",
"T025865",
"T021645",
"T027329",
"T027326",
"T024970",
"T024981",
"T027327",
"T028684",
"T028685"
]
},
"release_date": "2023-07-18T22:00:00.000+00:00",
"title": "CVE-2020-10735"
}
]
}
WID-SEC-W-2024-0114
Vulnerability from csaf_certbund - Published: 2024-01-16 23:00 - Updated: 2024-01-16 23:00In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Systems 11
Oracle / Systems
|
cpe:/a:oracle:systems:11
|
— | |
|
Oracle Systems 4
Oracle / Systems
|
cpe:/a:oracle:systems:4
|
— | |
|
Oracle Systems 3
Oracle / Systems
|
cpe:/a:oracle:systems:3
|
— | |
|
Oracle Systems 8.8
Oracle / Systems
|
cpe:/a:oracle:systems:8.8
|
— | |
|
Oracle Systems 5
Oracle / Systems
|
cpe:/a:oracle:systems:5
|
— |
In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Systems 11
Oracle / Systems
|
cpe:/a:oracle:systems:11
|
— | |
|
Oracle Systems 4
Oracle / Systems
|
cpe:/a:oracle:systems:4
|
— | |
|
Oracle Systems 3
Oracle / Systems
|
cpe:/a:oracle:systems:3
|
— | |
|
Oracle Systems 8.8
Oracle / Systems
|
cpe:/a:oracle:systems:8.8
|
— | |
|
Oracle Systems 5
Oracle / Systems
|
cpe:/a:oracle:systems:5
|
— |
In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Systems 11
Oracle / Systems
|
cpe:/a:oracle:systems:11
|
— | |
|
Oracle Systems 4
Oracle / Systems
|
cpe:/a:oracle:systems:4
|
— | |
|
Oracle Systems 3
Oracle / Systems
|
cpe:/a:oracle:systems:3
|
— | |
|
Oracle Systems 8.8
Oracle / Systems
|
cpe:/a:oracle:systems:8.8
|
— | |
|
Oracle Systems 5
Oracle / Systems
|
cpe:/a:oracle:systems:5
|
— |
In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Systems 11
Oracle / Systems
|
cpe:/a:oracle:systems:11
|
— | |
|
Oracle Systems 4
Oracle / Systems
|
cpe:/a:oracle:systems:4
|
— | |
|
Oracle Systems 3
Oracle / Systems
|
cpe:/a:oracle:systems:3
|
— | |
|
Oracle Systems 8.8
Oracle / Systems
|
cpe:/a:oracle:systems:8.8
|
— | |
|
Oracle Systems 5
Oracle / Systems
|
cpe:/a:oracle:systems:5
|
— |
In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Systems 11
Oracle / Systems
|
cpe:/a:oracle:systems:11
|
— | |
|
Oracle Systems 4
Oracle / Systems
|
cpe:/a:oracle:systems:4
|
— | |
|
Oracle Systems 3
Oracle / Systems
|
cpe:/a:oracle:systems:3
|
— | |
|
Oracle Systems 8.8
Oracle / Systems
|
cpe:/a:oracle:systems:8.8
|
— | |
|
Oracle Systems 5
Oracle / Systems
|
cpe:/a:oracle:systems:5
|
— |
In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Systems 11
Oracle / Systems
|
cpe:/a:oracle:systems:11
|
— | |
|
Oracle Systems 4
Oracle / Systems
|
cpe:/a:oracle:systems:4
|
— | |
|
Oracle Systems 3
Oracle / Systems
|
cpe:/a:oracle:systems:3
|
— | |
|
Oracle Systems 8.8
Oracle / Systems
|
cpe:/a:oracle:systems:8.8
|
— | |
|
Oracle Systems 5
Oracle / Systems
|
cpe:/a:oracle:systems:5
|
— |
In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Systems 11
Oracle / Systems
|
cpe:/a:oracle:systems:11
|
— | |
|
Oracle Systems 4
Oracle / Systems
|
cpe:/a:oracle:systems:4
|
— | |
|
Oracle Systems 3
Oracle / Systems
|
cpe:/a:oracle:systems:3
|
— | |
|
Oracle Systems 8.8
Oracle / Systems
|
cpe:/a:oracle:systems:8.8
|
— | |
|
Oracle Systems 5
Oracle / Systems
|
cpe:/a:oracle:systems:5
|
— |
In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Systems 11
Oracle / Systems
|
cpe:/a:oracle:systems:11
|
— | |
|
Oracle Systems 4
Oracle / Systems
|
cpe:/a:oracle:systems:4
|
— | |
|
Oracle Systems 3
Oracle / Systems
|
cpe:/a:oracle:systems:3
|
— | |
|
Oracle Systems 8.8
Oracle / Systems
|
cpe:/a:oracle:systems:8.8
|
— | |
|
Oracle Systems 5
Oracle / Systems
|
cpe:/a:oracle:systems:5
|
— |
In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrität und Verfügbarkeit gefährden. Für die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle veröffentlicht keine weiteren Details zu diesen Schwachstellen (außer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadenshöhe ausschließlich auf Basis der CVSS Impact Matrix. Der Maximalwert für diese Produkte ist "HIGH" für "Confidentiality", "Integrity" und "Availability" über alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert "HOCH" für die Schadenshöhe.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Systems 11
Oracle / Systems
|
cpe:/a:oracle:systems:11
|
— | |
|
Oracle Systems 4
Oracle / Systems
|
cpe:/a:oracle:systems:4
|
— | |
|
Oracle Systems 3
Oracle / Systems
|
cpe:/a:oracle:systems:3
|
— | |
|
Oracle Systems 8.8
Oracle / Systems
|
cpe:/a:oracle:systems:8.8
|
— | |
|
Oracle Systems 5
Oracle / Systems
|
cpe:/a:oracle:systems:5
|
— |
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Oracle Systems umfasst eine Sammlung von Hardware, Betriebssystemen, Servern und Anwendungen.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein entfernter, anonymer oder authentisierter Angreifer kann mehrere Schwachstellen in Oracle Systems ausnutzen, um die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit zu gef\u00e4hrden.",
"title": "Angriff"
},
{
"category": "general",
"text": "- UNIX\n- BIOS/Firmware",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2024-0114 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-0114.json"
},
{
"category": "self",
"summary": "WID-SEC-2024-0114 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-0114"
},
{
"category": "external",
"summary": "Oracle Critical Patch Update Advisory - January 2024 - Appendix Oracle Systems vom 2024-01-16",
"url": "https://www.oracle.com/security-alerts/cpujan2024.html#AppendixSUNS"
}
],
"source_lang": "en-US",
"title": "Oracle Systems: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2024-01-16T23:00:00.000+00:00",
"generator": {
"date": "2024-08-15T18:03:46.147+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.3.5"
}
},
"id": "WID-SEC-W-2024-0114",
"initial_release_date": "2024-01-16T23:00:00.000+00:00",
"revision_history": [
{
"date": "2024-01-16T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Oracle Systems 8.8",
"product": {
"name": "Oracle Systems 8.8",
"product_id": "T019057",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:8.8"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems 11",
"product": {
"name": "Oracle Systems 11",
"product_id": "T019059",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:11"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems 4",
"product": {
"name": "Oracle Systems 4",
"product_id": "T022889",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:4"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems 3",
"product": {
"name": "Oracle Systems 3",
"product_id": "T032131",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:3"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems 5",
"product": {
"name": "Oracle Systems 5",
"product_id": "T032132",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:5"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems \u003c XCP2420",
"product": {
"name": "Oracle Systems \u003c XCP2420",
"product_id": "T032170",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:xcp2420"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems \u003c XCP3120",
"product": {
"name": "Oracle Systems \u003c XCP3120",
"product_id": "T032171",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:xcp3120"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems \u003c XCP4030",
"product": {
"name": "Oracle Systems \u003c XCP4030",
"product_id": "T032172",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:xcp4030"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems \u003c XCP2430",
"product": {
"name": "Oracle Systems \u003c XCP2430",
"product_id": "T032173",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:xcp2430"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems \u003c XCP3130",
"product": {
"name": "Oracle Systems \u003c XCP3130",
"product_id": "T032174",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:xcp3130"
}
}
},
{
"category": "product_name",
"name": "Oracle Systems \u003c XCP4040",
"product": {
"name": "Oracle Systems \u003c XCP4040",
"product_id": "T032175",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:systems:xcp4040"
}
}
}
],
"category": "product_name",
"name": "Systems"
}
],
"category": "vendor",
"name": "Oracle"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-20959",
"notes": [
{
"category": "description",
"text": "In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T019059",
"T022889",
"T032131",
"T019057",
"T032132"
]
},
"release_date": "2024-01-16T23:00:00.000+00:00",
"title": "CVE-2024-20959"
},
{
"cve": "CVE-2024-20946",
"notes": [
{
"category": "description",
"text": "In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T019059",
"T022889",
"T032131",
"T019057",
"T032132"
]
},
"release_date": "2024-01-16T23:00:00.000+00:00",
"title": "CVE-2024-20946"
},
{
"cve": "CVE-2024-20920",
"notes": [
{
"category": "description",
"text": "In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T019059",
"T022889",
"T032131",
"T019057",
"T032132"
]
},
"release_date": "2024-01-16T23:00:00.000+00:00",
"title": "CVE-2024-20920"
},
{
"cve": "CVE-2024-20914",
"notes": [
{
"category": "description",
"text": "In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T019059",
"T022889",
"T032131",
"T019057",
"T032132"
]
},
"release_date": "2024-01-16T23:00:00.000+00:00",
"title": "CVE-2024-20914"
},
{
"cve": "CVE-2024-20906",
"notes": [
{
"category": "description",
"text": "In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T019059",
"T022889",
"T032131",
"T019057",
"T032132"
]
},
"release_date": "2024-01-16T23:00:00.000+00:00",
"title": "CVE-2024-20906"
},
{
"cve": "CVE-2023-21833",
"notes": [
{
"category": "description",
"text": "In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T019059",
"T022889",
"T032131",
"T019057",
"T032132"
]
},
"release_date": "2024-01-16T23:00:00.000+00:00",
"title": "CVE-2023-21833"
},
{
"cve": "CVE-2022-4450",
"notes": [
{
"category": "description",
"text": "In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T019059",
"T022889",
"T032131",
"T019057",
"T032132"
]
},
"release_date": "2024-01-16T23:00:00.000+00:00",
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-29155",
"notes": [
{
"category": "description",
"text": "In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T019059",
"T022889",
"T032131",
"T019057",
"T032132"
]
},
"release_date": "2024-01-16T23:00:00.000+00:00",
"title": "CVE-2022-29155"
},
{
"cve": "CVE-2021-43527",
"notes": [
{
"category": "description",
"text": "In Oracle Systems existieren mehrere Schwachstellen. Durch Ausnutzung dieser Schwachstellen kann ein entfernter, anonymer oder authentisierter Angreifer die Vertraulichkeit, Integrit\u00e4t und Verf\u00fcgbarkeit gef\u00e4hrden. F\u00fcr die Ausnutzung einiger dieser Schwachstellen ist keine Benutzerinteraktion notwendig. Oracle ver\u00f6ffentlicht keine weiteren Details zu diesen Schwachstellen (au\u00dfer der Information in der Risiko Matrix im Oracle Advisory zum Critical Patch Update, siehe Link unten in diesem Advisory). Aufgrund der knappen Informationslage erfolgt die Bewertung der Schadensh\u00f6he ausschlie\u00dflich auf Basis der CVSS Impact Matrix. Der Maximalwert f\u00fcr diese Produkte ist \"HIGH\" f\u00fcr \"Confidentiality\", \"Integrity\" und \"Availability\" \u00fcber alle Schwachstellen aggregiert und bewirkt damit eine Bewertung mit dem Wert \"HOCH\" f\u00fcr die Schadensh\u00f6he."
}
],
"product_status": {
"known_affected": [
"T019059",
"T022889",
"T032131",
"T019057",
"T032132"
]
},
"release_date": "2024-01-16T23:00:00.000+00:00",
"title": "CVE-2021-43527"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.